/* ═══════════════════════════════════════
   26 STUDIO — Premium CSS (Pentagram Style)
   ═══════════════════════════════════════ */

:root {
  --black:   #111111;
  --black2:  #0a0a0a;
  --white:   #F8F5F0;
  --pure-white: #ffffff;
  --grey1:   #1a1a1a;
  --grey2:   #2a2a2a;
  --grey4:   #555;
  --grey6:   #888;
  --accent:  #be2526; /* User Hex Red */
  --accent2: rgba(190, 37, 38, 0.12);
  --font-h:  'Inter', sans-serif;
  --font-b:  'Inter', sans-serif;
  --font-s:  'Times New Roman', Times, serif; /* Global Serif Pairing */
  --ease:    cubic-bezier(0.16,1,0.3,1);
  --ease-ag: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r:       12px;
}

/* ── Global Font Rules ── */
em { 
  font-family: var(--font-s); 
  font-style: italic; 
  font-weight: 400; 
}
h1, h2, h3, h4, .sec-title {
  font-family: var(--font-h);
}
.sec-label, .cs-label, .orb-label {
  font-family: var(--font-h); /* Keeping labels clean */
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background:var(--black); color:var(--white); }
img { display:block; max-width:100%; }

/* ══ CURSOR ══ */
.cursor {
  width:10px; height:10px; background:var(--black);
  border-radius:50%; position:fixed; top:0; left:0;
  pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .18s var(--ease), height .18s var(--ease), background .2s;
}
.cursor-follower {
  width:36px; height:36px;
  border:1.5px solid rgba(10,10,10,0.35); border-radius:50%;
  position:fixed; top:0; left:0; pointer-events:none; z-index:9998;
  transform:translate(-50%,-50%); transition:all 0.1s;
}
body:has(a:hover,button:hover,.work-item:hover,.svc:hover,.team-card:hover) .cursor {
  width:14px; height:14px; background:var(--accent);
}
body:has(a:hover,button:hover,.work-item:hover,.svc:hover,.team-card:hover) .cursor-follower {
  width:48px; height:48px; border-color:var(--accent);
}

/* ══ LOADER ══ */
.loader {
  position:fixed; inset:0; background:var(--black2); z-index:10000;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .7s var(--ease), visibility .7s;
}
.loader.hidden { opacity:0; visibility:hidden; }
.loader-inner { text-align:center; }
.loader-logo {
  display:flex; align-items:center; gap:14px;
  margin-bottom:28px; justify-content:center;
}
.loader-26 { border-radius:8px; overflow:hidden; }
.loader-word {
  font-family:var(--font-h); font-size:2.2rem; font-weight:300;
  color:rgba(245,242,237,0.4); letter-spacing:-0.02em;
}
.loader-bar {
  width:220px; height:1px; background:rgba(255,255,255,0.08);
  margin:0 auto; border-radius:1px; overflow:hidden;
}
.loader-fill { height:100%; width:0; background:var(--accent); transition:width .05s linear; border-radius:1px; }

/* ══ NAV ══ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:22px 64px;
  transition:background .4s var(--ease), padding .4s var(--ease), border-bottom .4s;
}
.nav.scrolled {
  background:rgba(245,242,237,0.94); backdrop-filter:blur(20px);
  padding:14px 64px; border-bottom:1px solid rgba(10,10,10,0.07);
}
.nav-inner {
  max-width:1440px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:32px;
}
.nav-logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--black);
}
.nav-logo svg { border-radius:5px; overflow:hidden; }
.nav-studio {
  font-family:var(--font-h); font-size:1.05rem; font-weight:700;
  letter-spacing:-0.02em; color:var(--black);
}
.nav-links { display:flex; gap:32px; }
.nav-link {
  text-decoration:none; color:var(--black);
  font-size:0.88rem; font-weight:500; letter-spacing:0.01em;
  position:relative; padding-bottom:2px;
}
.nav-link::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--accent);
  transition:width .3s var(--ease);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width:100%; }
.nav-cta {
  display:flex; align-items:center; gap:8px;
  padding:10px 22px; background:var(--black); color:var(--white);
  text-decoration:none; border-radius:50px;
  font-size:0.85rem; font-weight:700; letter-spacing:0.02em;
  transition:background .3s, transform .3s var(--easeb), box-shadow .3s, color .3s;
}
.nav-cta:hover { background:var(--accent); color:var(--white); transform:translateY(-2px); box-shadow:0 10px 28px var(--accent2); }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:none; padding:4px; }
.nav-toggle span { display:block; width:24px; height:1.5px; background:var(--accent); transition:all .3s var(--ease); border-radius:2px; }
.nav-toggle.open span:nth-child(1) { transform:rotate(45deg) translate(4.5px,4.5px); }
.nav-toggle.open span:nth-child(2) { transform:rotate(-45deg) translate(4.5px,-4.5px); }

/* ══ MOBILE MENU ══ */
.mobile-menu {
  position:fixed; inset:0; z-index:999; background:var(--black);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .4s var(--ease), visibility .4s;
}
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu-inner { display:flex; flex-direction:column; align-items:center; gap:20px; }
.mobile-link {
  font-family:var(--font-h); font-size:clamp(2.2rem,8vw,3.5rem);
  font-weight:800; color:var(--white); text-decoration:none; letter-spacing:-0.04em;
  transition:color .2s, transform .2s;
}
.mobile-link:hover { color:var(--accent); transform:translateX(8px); }
.mobile-cta { color:var(--accent); font-size:1.2rem; margin-top:12px; }

/* ══ REVEAL (GSAP prep) ══ */
.reveal-up { opacity:0; visibility:hidden; }
.reveal-scale { opacity:0; visibility:hidden; transform:scale(0.94); }

/* ══ SHARED ══ */
.sec-label {
  font-size:0.72rem; font-weight:700; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--grey4);
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
}
.sec-label::before { content:''; width:24px; height:1px; background:var(--grey4); }
.sec-title {
  font-family:var(--font-h); font-size:clamp(2.8rem,5.5vw,4.8rem);
  font-weight:800; letter-spacing:-0.04em; line-height:1.05; margin-bottom:56px;
}
.sec-title em { font-style:italic; font-weight:300; color:var(--grey4); }
.btn-line {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--white); text-decoration:none; font-weight:700; font-size:0.92rem;
  border-bottom:1px solid rgba(245,242,237,0.25); padding-bottom:2px;
  transition:color .2s, border-color .2s, gap .3s; margin-top:12px;
}
.btn-line:hover { color:var(--accent); border-color:var(--accent); gap:16px; }

/* ══ HERO — REFINED EDITORIAL LUXURY ══ */
.pg-hero {
  min-height: 100vh;
  background: #080808;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 180px 8vw 120px; /* Enhanced negative space */
}

/* Base Layers */
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: 0.35;
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px; opacity: 0.7;
}
.pg-hero-spotlight {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(900px circle at 50% 50%, rgba(227,6,19,0.06), transparent 60%);
}

/* Subtle Grid Overlay for Luxury Structure */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  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: 100px 100px; /* Wider sophisticated grid */
  mask-image: radial-gradient(circle at center, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 80%);
}

/* Giant Subtle Monogram */
.hero-monogram {
  position: absolute;
  right: -5vw; bottom: -15vh;
  font-family: var(--font-h);
  font-size: clamp(20rem, 45vw, 55rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.012);
  line-height: 0.8;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

/* Content Container */
.pg-hero-inner {
  position: relative; z-index: 5;
  width: 100%; max-width: 1440px; margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Central Focus Group */
.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center; /* Perfectly float in the exact visual center */
  flex: 1;
  gap: 32px;
}

@property --spark {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* Apple-style Frosted Pill with Spark Border */
.hero-status-pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1;
}

.hero-status-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px; /* border thickness */
  background: conic-gradient(from var(--spark), transparent 60%, rgba(52, 199, 89, 0.4) 80%, #34C759 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spark-spin 2s linear infinite;
  z-index: -1;
  pointer-events: none;
}

/* Fallback base structure */
.hero-status-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -2;
  pointer-events: none;
}

@keyframes spark-spin {
  0% { --spark: 0deg; }
  100% { --spark: 360deg; }
}

.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34C759; /* Premium Green */
  box-shadow: 0 0 12px rgba(52, 199, 89, 0.8);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Spacer for Massive Negative Space */
.hero-breathing-room {
  min-height: 4vh; /* Reduced since flex now centers perfectly */
}

/* Absolute Bottom Stat Bar */
.hero-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

/* Apple-style Premium Typography */
.pg-h1 {
  font-family: var(--font-h);
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #F5F5F7; 
  margin: 0;
  text-align: center;
}

.h1-bold { font-weight: 800; display: block; }

.h1-light { 
  font-family: "Times New Roman", Times, serif; /* Mixed Typography Magic */
  font-style: italic;
  font-weight: 400; 
  color: rgba(245,245,247,0.7); 
  display: block;
  letter-spacing: -0.02em;
  margin-top: 0.05em;
  margin-bottom: 0.05em;
} 

.pg-accent {
  font-style: normal;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #71717a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
}

/* Description & Actions */
.pg-desc {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: rgba(245,245,247,0.5);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  margin-top: 16px;
}

/* Bottom Stats */
.pg-stats-compact {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.h-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-stat strong {
  font-family: var(--font-s); /* Times New Roman */
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #F5F5F7;
  display: block; line-height: 1;
}
.h-stat span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.6);
}

/* Scroll Hint with Red Spark Effect */
.hero-scroll-ind {
  display: flex; align-items: center; gap: 14px;
}
.s-line {
  width: 80px; height: 2px;
  background: rgba(255,255,255,0.4); /* Track at 40% opacity as requested */
  position: relative; overflow: hidden;
  border-radius: 2px;
}
.s-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 70%; height: 100%;
  /* Red Spark Comet: Transparent tail, solid red body, bright tip */
  background: linear-gradient(90deg, transparent 0%, var(--accent) 80%, #ff4d4d 100%);
  animation: scroll-slide 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scroll-slide {
  0% { left: -100%; }
  100% { left: 150%; }
}
.hero-scroll-ind span {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,245,247,0.7); /* Brightened text to match the track */
}

/* Monochromatic Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: #F5F5F7; color: #080808;
  text-decoration: none; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s, background .4s, color .4s;
}
.btn-primary:hover { 
  transform: scale(1.03); 
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 32px var(--accent2); 
}
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  position: relative;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 34px;
  color: rgba(245,245,247,0.6);
  text-decoration: none; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  transition: color .3s, transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: conic-gradient(from var(--spark), transparent 60%, rgba(52, 199, 89, 0.4) 80%, #34C759 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spark-spin 2.5s linear infinite;
  z-index: -1;
  pointer-events: none;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -2;
  pointer-events: none;
  transition: border-color .3s;
}
.btn-ghost:hover { color: var(--accent); transform: scale(1.03); }
.btn-ghost:hover::after { border-color: var(--accent); }

/* Hero Responsive */
@media (max-width: 900px) {
  .pg-hero { padding: 120px 24px 60px; justify-content: flex-start; }
  .pg-h1 { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-bottom-bar { flex-direction: column; align-items: center; gap: 40px; padding-top: 32px; }
  .pg-stats-compact { gap: 24px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .h-stat { align-items: center; }
  .hero-scroll-ind { margin-top: 10px; }
  .hero-monogram { font-size: clamp(12rem, 40vw, 20rem); right: -10vw; bottom: 0; }
  .hero-status-pill { margin-bottom: 20px; }
}







/* ═══════════════════════════════════════
   MASSIVE PREMIUM MARQUEE (WITH RED SPARKS)
   ═══════════════════════════════════════ */
.premium-marquee {
  position: relative;
  background: #080808; 
  padding: 32px 0; 
  overflow: hidden;
  /* Borders removed to let spark run in empty space */
}

/* Red Spark on Top Border */
.premium-marquee::before {
  content: '';
  position: absolute; top: -1px; left: -50vw;
  width: 30vw; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 80%, #ff4d4d 100%);
  animation: marquee-spark 4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  z-index: 10;
}

/* Red Spark on Bottom Border (Reversed) */
.premium-marquee::after {
  content: '';
  position: absolute; bottom: -1px; right: -50vw;
  width: 30vw; height: 2px;
  background: linear-gradient(-90deg, transparent 0%, var(--accent) 80%, #ff4d4d 100%);
  animation: marquee-spark-rev 4s cubic-bezier(0.65, 0, 0.35, 1) infinite 2s;
  z-index: 10;
}

@keyframes marquee-spark {
  0% { left: -50vw; }
  100% { left: 150vw; }
}

@keyframes marquee-spark-rev {
  0% { right: -50vw; }
  100% { right: 150vw; }
}
.pm-inner {
  display: flex; align-items: center; gap: 4vw;
  white-space: nowrap; animation: marquee-slide 40s linear infinite; flex-shrink: 0;
}
.pm-inner span {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; 
  color: rgba(245,245,247,0.15); /* Sleek ghosted text */
}
.pm-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(245,245,247,0.15);
}
@keyframes marquee-slide { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════
   STUDIO MANIFESTO 
   ═══════════════════════════════════════ */
.manifesto-section {
  background: #080808;
  padding: 160px 8vw 120px;
}
.approach-section {
  background: #080808;
  padding: 120px 8vw 160px;
}

.manifesto-grid {
  display: flex;
  justify-content: space-between;
  gap: 8vw;
  width: 100%;
}
.manifesto-left {
  width: 20%;
  flex-shrink: 0;
}
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.4);
}
.manifesto-right {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Panel 01 - Massive Text Track */
.manifesto-section {
  background: #080808;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden; /* very important */
}
/* Background Massive Scrolling Typography */
.massive-scroll-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.massive-scroll-text {
  font-family: var(--font-h);
  font-size: clamp(8rem, 20vw, 25rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.02); /* Extremely faint background text */
  white-space: nowrap;
  text-transform: uppercase;
  padding-left: 20px;
}

/* Foreground Readable Manifesto */
.manifesto-headline {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #F5F5F7;
  max-width: 1200px;
}
.text-reveal-trigger span {
  display: inline-block;
  opacity: 0.15; /* Will be animated by GSAP */
  transition: opacity 0.1s;
}
.serif-italic {
  font-family: var(--font-s);
  font-style: italic;
  font-weight: 400;
  color: #F5F5F7;
}
.text-glow {
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #71717a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.manifesto-sub-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.manifesto-sub {
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  color: rgba(245, 245, 247, 0.5);
  line-height: 1.6;
  max-width: 600px;
  letter-spacing: -0.01em;
}

/* Capabilities Section Horizontal */
.cap-h-wrapper {
  background: #080808;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cap-h-label {
  position: absolute;
  top: 80px; 
  left: 8vw;
  z-index: 10;
}
.cap-h-track {
  display: flex;
  height: 100%;
  align-items: center;
  width: max-content;
  padding-left: 8vw; /* Match container padding */
  gap: 4vw; /* Robust spacing */
}
.cap-h-card {
  width: 48vw;
  height: 65vh;
  min-width: 450px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}

.cap-h-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 80%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.cap-h-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px) scale(1.01);
}

.cap-h-card:hover::after {
  opacity: 1;
}

.cap-num {
  position: absolute;
  top: 40px;
  left: 50px;
  font-family: var(--font-m);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.25);
  letter-spacing: 0.2em;
  z-index: 10;
}

/* State Management for NO OVERLAP */
.cap-front, .cap-details {
  position: absolute;
  inset: 0;
  padding: 100px 60px 60px; /* More top padding for safety */
  display: flex;
  flex-direction: column;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.cap-front {
  justify-content: center;
  align-items: center;
  z-index: 2;
  background: transparent;
}

.cap-details {
  justify-content: flex-end;
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
  visibility: hidden;
}

/* Typography & Elements */
.cap-h-title-main {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: #F5F5F7;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
  text-align: center;
}

.cap-interaction-hint {
  font-family: var(--font-m);
  font-size: 0.75rem;
  color: rgba(245,245,247,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 24px;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.cap-h-card:hover .cap-interaction-hint {
  background: #F5F5F7;
  color: #080808;
  border-color: #F5F5F7;
}

.cap-h-title-sub {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: #F5F5F7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.cap-h-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,245,247,0.45);
  margin-bottom: 35px;
  max-width: 480px;
}

.cap-h-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.cap-h-list li {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(245, 245, 247, 0.7);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.cap-h-list li:hover {
  background: #F5F5F7;
  color: #080808;
  border-color: #F5F5F7;
}

/* Active State Interaction */
.cap-h-card.is-open {
  background: rgba(15, 15, 15, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.8);
}

.cap-h-card.is-open .cap-front {
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
  visibility: hidden;
}

.cap-h-card.is-open .cap-details {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.cap-h-end-spacer {
  width: 15vw;
  flex-shrink: 0;
}
/* Opened State Actions */
.cap-h-card.is-open .cap-front {
  opacity: 0;
  transform: translateY(-40px);
  pointer-events: none;
}
.cap-h-card.is-open .cap-details {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cap-h-end-spacer {
  width: 15vw;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   WORK STACK (HYPER-PREMIUM BOOK)
   ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   WORK STACK (LUXURY IMMERSIVE)
   ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   WORK STACK (LITERAL FLIP BOOK)
   ═══════════════════════════════════════ */
.work-stack-section {
  background: #000;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 0 160px; /* More bottom padding to avoid cut */
}

.work-stack-container {
  position: relative;
  width: 100vw;
  height: 60vh; /* Reduced height as requested */
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2500px; /* High perspective for literal flip */
}

.work-card {
  position: absolute;
  width: 320px; /* Smaller width */
  height: 440px; /* Smaller height */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  transform-style: preserve-3d;
  transform-origin: left center; /* SPINY PIVOT */
  cursor: pointer;
  z-index: 1;
}

.work-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
}

.work-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
}

.work-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  pointer-events: none;
}

.work-title-giant {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.work-label-lux {
  font-family: var(--font-m);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ──── Case Study Overlay ──── */
.cs-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cs-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  z-index: 10001;
}

.cs-close-reveal {
  position: absolute;
  top: 40px;
  left: 40px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-m);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cs-close-reveal::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  transition: width 0.4s ease;
}

.cs-close-reveal:hover::before {
  width: 80px;
}

.cs-content-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0;
}

.cs-header-content {
  padding: 160px 8vw 100px;
  max-width: 1600px;
}

.cs-label {
  font-family: var(--font-m);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  display: block;
}

.cs-title-main {
  font-family: var(--font-h);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.cs-grid-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cs-block h6 {
  font-family: var(--font-m);
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.cs-block p {
  font-size: 1.1rem;
  color: #fff;
}

.cs-hero-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  border-radius: 40px;
  margin: 100px 0;
}

.cs-body-desc {
  max-width: 900px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 150px;
}

.cs-next-section {
  padding-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cs-next-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 40px;
  display: block;
}

.cs-next-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.next-card {
  height: 300px;
  background: #111;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.4s;
}

.next-card:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-10px);
}



/* Responsive */
@media (max-width: 900px) {
  /* Disable horizontal scroll on mobile, stack natively */
  .studio-wrapper, .h-panel { height: auto; width: 100%; }
  .studio-track { display: block; width: 100%; }
  .h-panel { padding: 60px 24px; }
  .manifesto-grid { flex-direction: column; gap: 32px; }
  .manifesto-left { width: 100%; }
  .manifesto-right { width: 100%; gap: 32px; }
  .caps-flex, .approach-flex { flex-direction: column; gap: 40px; }
  .approach-step { border-right: none; margin-right: 0; padding-right: 0; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .approach-step:last-child { border-bottom: none; }
}

/* ══ WORK ══ */
.work { padding: 0; background:var(--black); color:var(--white); }
.work-pinned { width: 100vw; height:100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.work-h-wrap { width: 100vw; }
.work-track { display: flex; gap: 8vw; padding: 0 16vw 0 64px; width: max-content; align-items:center; }
.work-track-intro { width: 40vw; min-width: 400px; flex-shrink: 0; padding-right: 4vw; }
.work-track-intro .sec-title { font-size: clamp(3rem, 6vw, 5rem); font-family:var(--font-h); font-weight:800; line-height:1.05; letter-spacing:-0.03em; margin: 24px 0 28px; color:var(--white); }
.work-track-intro .intro-desc { font-size: 1.15rem; color: rgba(245,242,237,0.6); line-height: 1.6; max-width: 420px; }
.work-track-intro em { font-style: italic; font-weight: 300; color: var(--accent); }
.work-item { width: 45vw; min-width: 400px; max-width: 700px; cursor: none; flex-shrink:0; }

.wi-img-wrap {
  position:relative; overflow:hidden; border-radius:var(--r);
  aspect-ratio:16/10;
}
.wi-img { width:100%; height:100%; transition:transform .7s var(--ease); }
.work-item:hover .wi-img { transform:scale(1.04); }
.wi-preview {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
}

/* Project preview elements */
.prev-brand { display:flex; flex-direction:column; align-items:center; gap:18px; }
.prev-mark { font-family:var(--font-h); font-size:5rem; font-weight:900; color:rgba(245,242,237,0.12); letter-spacing:-0.06em; }
.prev-lines { display:flex; flex-direction:column; gap:7px; }
.prev-lines span { height:2px; width:100px; background:rgba(245,242,237,0.15); border-radius:2px; }
.prev-lines span.s { width:56px; }
.prev-phone { background:rgba(245,242,237,0.06); border:1px solid rgba(245,242,237,0.1); border-radius:16px; padding:14px; width:110px; display:flex; flex-direction:column; gap:7px; }
.prev-phone-bar { height:5px; background:rgba(245,242,237,0.18); border-radius:2px; }
.prev-phone-bar.s { width:60%; }
.prev-phone-bar.micro { height:4px; width:40%; }
.prev-phone-card { height:36px; background:rgba(200,169,110,0.25); border-radius:7px; margin:2px 0; }
.prev-product { display:flex; flex-direction:column; align-items:center; gap:12px; }
.prev-logo-box { width:64px; height:64px; background:rgba(245,242,237,0.08); border:1px solid rgba(245,242,237,0.12); border-radius:14px; display:flex; align-items:center; justify-content:center; font-family:var(--font-h); font-size:2.2rem; font-weight:900; color:rgba(245,242,237,0.2); }
.prev-web { width:86%; }
.prev-browser-bar { display:flex; align-items:center; gap:6px; padding:8px 12px; background:rgba(245,242,237,0.04); border-bottom:1px solid rgba(245,242,237,0.06); border-radius:8px 8px 0 0; }
.bd { width:7px; height:7px; border-radius:50%; }
.bd.r { background:rgba(255,100,100,0.35); } .bd.y { background:rgba(255,200,50,0.35); } .bd.g { background:rgba(50,200,100,0.35); }
.prev-url { flex:1; height:5px; background:rgba(245,242,237,0.06); border-radius:3px; }
.prev-browser-body { padding:16px; display:flex; flex-direction:column; gap:8px; background:rgba(245,242,237,0.03); border-radius:0 0 8px 8px; }
.prev-browser-hero { height:52px; background:rgba(200,169,110,0.12); border-radius:5px; }
.prev-browser-row { display:flex; gap:8px; }
.prev-browser-row div { height:16px; flex:1; background:rgba(245,242,237,0.06); border-radius:3px; }

.wi-hover {
  position:absolute; inset:0; border-radius:var(--r);
  background:rgba(10,10,10,0.6); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center; gap:10px;
  color:var(--white); font-weight:700; font-size:0.9rem;
  opacity:0; transition:opacity .4s var(--ease);
}
.work-item:hover .wi-hover { opacity:1; }
.wi-meta {
  display:flex; align-items:flex-start; justify-content:space-between;
  padding:18px 2px 0; gap:14px;
}
.wi-left { display:flex; align-items:flex-start; gap:14px; }
.wi-num { font-size:0.7rem; font-weight:700; color:var(--grey4); letter-spacing:0.08em; padding-top:3px; }
.wi-title { font-family:var(--font-h); font-size:1.05rem; font-weight:700; letter-spacing:-0.02em; margin-bottom:3px; }
.wi-tags { font-size:0.75rem; color:var(--grey4); }
.wi-year { font-size:0.75rem; font-weight:600; color:var(--grey4); padding-top:3px; }

/* Case modal */
.case-modal { position:fixed; inset:0; z-index:2000; opacity:0; visibility:hidden; transition:opacity .4s var(--ease), visibility .4s; }
.case-modal.open { opacity:1; visibility:visible; }
.case-overlay { position:absolute; inset:0; background:rgba(10,10,10,0.8); backdrop-filter:blur(6px); }
.case-panel {
  position:absolute; top:0; right:0; bottom:0; width:min(680px,100%);
  background:var(--white); overflow-y:auto; padding:60px 48px;
  transform:translateX(100%); transition:transform .5s var(--ease);
}
.case-modal.open .case-panel { transform:translateX(0); }
.case-close {
  position:absolute; top:20px; right:20px;
  width:40px; height:40px; border-radius:50%; background:none;
  border:1px solid rgba(10,10,10,0.12); cursor:none;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, transform .3s var(--easeb);
}
.case-close:hover { background:var(--black); color:var(--white); transform:rotate(90deg); }
.case-lbl { font-size:0.68rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--grey4); margin-bottom:10px; }
.case-title { font-family:var(--font-h); font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; letter-spacing:-0.04em; margin-bottom:28px; }
.case-tags { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:40px; }
.case-tag { padding:5px 13px; background:rgba(10,10,10,0.05); border-radius:50px; font-size:0.78rem; font-weight:600; }
.case-sec { margin-bottom:36px; }
.case-sec-lbl { font-size:0.65rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
.case-text { font-size:0.97rem; line-height:1.72; color:#333; }
.case-img { width:100%; aspect-ratio:16/9; border-radius:var(--r); overflow:hidden; margin:28px 0; background:var(--grey1); display:flex; align-items:center; justify-content:center; }

/* ══ ABOUT — NEW ══ */
.about-new {
  background: var(--black);
  color: var(--white);
}

/* — Fullscreen Screen — */
.an-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid rgba(245,242,237,0.06);
  position: relative;
  overflow: hidden;
}

/* Ghost "26" watermark in background */
.an-screen::before {
  content: '26';
  position: absolute;
  right: -2vw;
  bottom: -6vh;
  font-family: var(--font-h);
  font-size: clamp(14rem, 30vw, 28rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(245,242,237,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.an-screen-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Label */
.an-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.35);
  margin-bottom: 60px;
}
.an-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

/* Giant Headline — alternating left/right lines */
.an-h2 {
  font-family: var(--font-h);
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.an-line {
  display: block;
  transform: translateX(-120px);
  opacity: 0;
  transition: none; /* controlled by GSAP */
}
.an-line[data-dir="right"] { transform: translateX(120px); text-align: right; }
.an-line-em em {
  font-style: italic;
  font-weight: 300;
  color: rgba(245,242,237,0.5);
}
.an-line-gold { color: var(--accent); font-style: italic; font-weight: 300; }

/* Bottom bar */
.an-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(245,242,237,0.07);
  padding-top: 40px;
}
.an-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245,242,237,0.5);
  max-width: 520px;
}
.an-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 16px 28px;
  border: 1px solid rgba(245,242,237,0.2);
  border-radius: 50px;
  transition: background 0.3s, border-color 0.3s, color 0.3s, gap 0.3s;
}
.an-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--black); gap: 18px; }

/* — People Row — */
.an-people {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-top: 1px solid rgba(245,242,237,0.06);
}
.an-person {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 80px;
  border-right: 1px solid rgba(245,242,237,0.06);
}
.an-person-flip {
  flex-direction: row-reverse;
  border-right: none;
  border-left: 1px solid rgba(245,242,237,0.06);
  justify-content: flex-end;
}
.an-person-img-wrap {
  width: 110px;
  height: 140px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(245,242,237,0.08);
}
.an-person-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(25%) contrast(1.08);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
  transform: scale(1.06);
}
.an-person:hover .an-person-img { filter: grayscale(0%) contrast(1.1); transform: scale(1); }
.an-person-name {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.an-person-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.35);
}

/* Center stats block */
.an-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 60px;
}
.an-stat { text-align: center; padding: 32px 0; }
.an-stat-n {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--white);
}
.an-stat-n em { font-style: normal; color: var(--accent); font-size: 0.5em; font-weight: 700; }
.an-stat-l {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.3);
  margin-top: 8px;
}
.an-stats-div {
  width: 1px; height: 40px;
  background: rgba(245,242,237,0.08);
  margin: 0 auto;
}

/* ══ SERVICES — STICKY SCROLL ══ */
.svc-sticky { background: var(--black); position: relative; }

/* Top progress bar */
.svc-progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(245,242,237,0.06);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-sticky.active ~ * .svc-progress-bar,
.svc-progress-bar.visible { opacity: 1; }
.svc-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

.svc-inner {
  max-width: 100%;
  display: flex;
  align-items: flex-start;
}

/* ─ LEFT: Sticky Panel ─ */
.svc-left {
  position: sticky;
  top: 0;
  width: 45%;
  height: 100vh;
  padding: 80px 80px 80px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(245,242,237,0.06);
}
.svc-h-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.3);
  margin-bottom: 40px;
}
.svc-h-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 44px;
}
.svc-h-title em { font-style: italic; font-weight: 300; color: var(--accent); }
.svc-h-sub {
  font-size: 1.05rem;
  color: rgba(245,242,237,0.4);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 52px;
}

/* Card counter */
.svc-counter {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(245,242,237,0.2);
  border-top: 1px solid rgba(245,242,237,0.06);
  padding-top: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
#svcCurrent {
  color: var(--accent);
  font-size: 1.1rem;
  transition: all 0.3s;
}

/* ─ RIGHT: Scrolling Cards ─ */
.svc-right {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.svc-card {
  padding: 100px 5vw 100px 80px;
  border-bottom: 1px solid rgba(245,242,237,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.5s var(--ease);
  /* Fallback minimum height so they occupy space */
  min-height: 100vh;
  justify-content: center;
}
.svc-card:last-child { border-bottom: none; }

/* Ghost number watermark */
.svc-card::before {
  content: "0" counter(card);
  counter-increment: card;
  position: absolute;
  top: 40px; right: 40px;
  font-family: var(--font-h);
  font-size: clamp(8rem, 12vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(245,242,237,0.02);
  line-height: 1;
  pointer-events: none;
  transition: color 0.6s var(--ease), transform 0.6s var(--ease);
}
.svc-right { counter-reset: card; }
.svc-card:hover::before {
  color: rgba(200,169,110,0.04);
  transform: translateY(8px);
}
.svc-card:hover { background: rgba(245,242,237,0.025); }

/* Cursor glow micro interaction */
.shc-cursor-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.svc-card:hover .shc-cursor-glow { opacity: 1; }

/* Card inner layout */
.shc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative; z-index: 1;
  margin-bottom: 60px;
}
.shc-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.shc-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid rgba(245,242,237,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.svc-card:hover .shc-icon-wrap {
  border-color: var(--accent);
  background: rgba(200,169,110,0.08);
}
.shc-icon { color: rgba(245,242,237,0.4); transition: color 0.3s; }
.svc-card:hover .shc-icon { color: var(--accent); }

/* Body */
.shc-body { position: relative; z-index: 1; margin-bottom: 60px; }
.shc-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--white);
  margin: 0 0 24px;
  transform: translateY(70px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1), opacity 1s cubic-bezier(0.16,1,0.3,1);
}
.svc-card.in-view .shc-title { transform: translateY(0); opacity: 1; }

.shc-desc {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(245,242,237,0.45);
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s 0.08s cubic-bezier(0.16,1,0.3,1), opacity 1s 0.08s cubic-bezier(0.16,1,0.3,1);
}
.svc-card.in-view .shc-desc { transform: translateY(0); opacity: 1; }

/* Bottom section */
.shc-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative; z-index: 1;
}

/* Process flow */
.shc-process {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(245,242,237,0.06);
  padding-top: 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s 0.15s cubic-bezier(0.16,1,0.3,1), opacity 0.8s 0.15s;
}
.svc-card.in-view .shc-process { transform: translateY(0); opacity: 1; }
.shc-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.25);
  transition: color 0.3s;
  position: relative;
}
.svc-card:hover .shc-process-step { color: rgba(245,242,237,0.4); }
.shp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245,242,237,0.12);
  transition: background 0.3s;
}
.svc-card:hover .shp-dot { background: var(--accent); }

/* Tags */
.shc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s 0.22s cubic-bezier(0.16,1,0.3,1), opacity 0.8s 0.22s;
}
.svc-card.in-view .shc-tags { transform: translateY(0); opacity: 1; }
.shc-tags span {
  padding: 6px 14px;
  border: 1px solid rgba(245,242,237,0.1);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(245,242,237,0.35);
  letter-spacing: 0.04em;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.shc-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,169,110,0.07);
}

/* Arrow */
.shc-arrow {
  font-size: 1.8rem;
  color: rgba(245,242,237,0.15);
  line-height: 1;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
  align-self: flex-start;
  margin-top: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.7s 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.7s 0.3s;
}
.svc-card.in-view .shc-arrow { transform: translateY(0); opacity: 1; }
.svc-card:hover .shc-arrow {
  color: var(--accent);
  transform: translate(5px, -5px) !important;
}

/* ══ PROCESS (DARK LUXURY ORBITAL) ══ */
.orbital-process {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #080808; /* Deep Midnight Black */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.orb-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

/* Left Orbital Track - Glowing Neon Vibe */
.orb-path-wrap {
  position: absolute;
  left: -200px; 
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
  height: 60vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.orb-circle-track {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.03); /* Subtle white stroke */
  border-radius: 50%;
}

.orb-items {
  position: relative;
  width: 100%;
  height: 100%;
}

.orb-item {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.03); /* Glassmorphic base */
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08); /* White border glow */
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(-50%, -50%);
  opacity: 0.2;
  color: rgba(255,255,255,0.3);
}

.orb-item.active {
  background: var(--accent); /* Brand gold focal point */
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 50px rgba(200,169,110,0.4);
  opacity: 1;
  border-color: rgba(255,255,255,0.2);
}

/* Micro-interaction: Hover glow */
.orb-item:hover {
  border-color: var(--accent);
  opacity: 0.6;
}

.orb-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.orb-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  margin-top: 5px;
}

/* Right Content Area - High Contrast Typography */
.orb-content-wrap {
  margin-left: auto;
  width: 45%;
  position: relative;
  z-index: 20;
}

.orb-step-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.orb-step-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  top: 0;
  transform: translateY(0) translateX(0);
}

.orb-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}

/* Word Hover Effect (Fast Anti-Gravity Bounce) */
.orb-title span {
  display: inline-block;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy/Fast Bounce */
  position: relative;
  transform-origin: center;
}

.orb-title span:hover {
  transform: translateY(-15px) scale(1.1); /* Fast Float */
  text-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}




.orb-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.5); /* Faded white for luxury read */
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 550px;
}

.orb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.orb-tags span {
  padding: 10px 22px;
  background: rgba(255,255,255,0.05); /* Stealth capsules */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s;
}
.orb-tags span:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: var(--black2);
}

@media (max-width: 1000px) {
  .orbital-process { height: auto; padding: 120px 0; }
  .orb-container { flex-direction: column; padding: 0 24px; text-align: center; }
  .orb-path-wrap { position: relative; left: 0; width: 320px; height: 320px; transform: none; margin-bottom: 60px; }
  .orb-content-wrap { width: 100%; }
  .orb-tags { justify-content: center; }
}

/* ══ TESTIMONIALS (STATIC ASTRAL SHELF) ══ */
.testi-rack-section {
    background: #000;
    padding: 80px 64px 120px; /* Ultra-compact */
    position: relative;
    overflow: hidden;
}
.testi-head-wrap {
    text-align: center;
    margin-bottom: 100px;
    position: relative; z-index: 50;
}
.testi-master-h2 {
    font-family: var(--font-h);
    font-size: clamp(2.5rem, 5vw, 5rem); /* Unified heading size */
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.testi-master-h2 em {
    font-family: var(--font-s);
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
}

.rack-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}
.rack-track {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px; /* Constraints for balance */
}
.rack-item { perspective: 1500px; cursor: pointer; flex: 1; min-width: 250px; max-width: 320px; }
.rack-card {
    width: 100%; padding: 45px 30px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    backdrop-filter: blur(25px);
    display: flex; flex-direction: column; align-items: center; text-align: center;
    transform: rotateY(-40deg) translateZ(0);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.5;
}
.rack-item:hover .rack-card {
    transform: rotateY(0deg) translateZ(100px) scale(1.1);
    opacity: 1;
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

.rack-card img {
    width: 70px; height: 70px; border-radius: 50%; object-fit: cover;
    margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.1);
    filter: grayscale(1); transition: 0.5s;
}
.rack-item:hover img { filter: grayscale(0); border-color: var(--accent); }

.rack-quote { font-family: var(--font-b); font-size: 1rem; line-height: 1.5; color: #fff; margin-bottom: 25px; }
.rack-quote em { font-family: var(--font-s); font-style: italic; color: var(--accent); }
/* ══ TESTIMONIALS (READY SECTION) ══ */


/* ══ THE PEOPLE ══ */
.team-section { padding: 140px 64px; background: var(--black2); position: relative; overflow: hidden; }
.team-section .sec-label { color: rgba(245,242,237,0.5); border: 1px solid rgba(245,242,237,0.1); }
.team-section .sec-title { color: var(--white); }
.team-inner { max-width: 1440px; margin: 0 auto; }
.team-header { margin-bottom: 80px; text-align: center; }
.team-header .sec-label { justify-content: center; }
.team-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 80px; 
  max-width: 800px; 
  margin: 0 auto; 
}

.team-card { cursor: none; perspective: 1200px; }
.tc-inner { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 4/5; /* Slightly more portrait */
  transform-style: preserve-3d; 
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); 
  border-radius: 20px; 
}
.tc-inner.is-flipped { transform: rotateY(180deg); }

.tc-front, .tc-back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 20px; overflow: hidden; background: var(--grey1); }
.tc-front { transform: rotateY(0deg); }
.tc-image-wrap { width: 100%; height: 100%; position: relative; overflow: hidden; transform-style: preserve-3d; will-change: transform; }
.tc-image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05); transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), filter 0.8s ease; will-change: transform, filter; }
.team-card:hover .tc-image { transform: scale(1.05); filter: grayscale(0%) contrast(1); }

.tc-overlay {
  position: absolute;
  inset: 0;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.team-card:hover .tc-overlay { opacity: 1; }

.tco-top { transform: translateY(-20px); opacity: 0; transition: transform 0.7s 0.1s cubic-bezier(0.16,1,0.3,1), opacity 0.7s 0.1s; }
.tco-role { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); padding: 8px 16px; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); }
.team-card:hover .tco-top { transform: translateY(0); opacity: 1; }

.tco-bottom { transform: translateY(30px); opacity: 0; transition: transform 0.7s 0.1s cubic-bezier(0.16,1,0.3,1), opacity 0.7s 0.1s; }
.tco-name { font-family: var(--font-h); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; letter-spacing: -0.04em; color: var(--white); line-height: 1; margin: 0 0 10px; }
.tco-quote { font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.arr { font-style: normal; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.team-card:hover .arr { transform: translate(4px, -4px); color: var(--accent); }
.team-card:hover .tco-bottom { transform: translateY(0); opacity: 1; }

.tc-back {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.05);
  transform: rotateY(180deg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.tcb-name { font-family: var(--font-h); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 5px; }
.tcb-role { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.tcb-bio { font-size: 1rem; line-height: 1.6; color: var(--grey4); margin-bottom: 30px; }
.tcb-bio span { display: inline-block; opacity: 0; transform: translateY(-20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); margin-right: 4px; }
.tc-inner.is-flipped .tcb-bio span { opacity: 1; transform: translateY(0); }
.tcb-return { font-size: 0.85rem; color: rgba(245,242,237,0.4); font-weight: 500; }

.team-info {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.ti-main { display: flex; align-items: flex-start; gap: 10px; }
.ti-num { font-size: 0.75rem; color: var(--accent); font-weight: 700; margin-top: 5px; }
.ti-name { font-family: var(--font-h); font-size: 2rem; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.ti-role { font-size: 0.85rem; color: var(--grey4); letter-spacing: 0.05em; text-transform: uppercase; text-align: right; margin-top: 6px; }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 440px; }
  .tc-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%); }
  .tco-top, .tco-bottom { opacity: 1; transform: translateY(0); }
}

/* ══ BEHIND THE SCENES (GALAXY) ══ */
.bts-section { 
  padding: 140px 64px; 
  background: #050505; 
  position: relative; 
  overflow: hidden; 
}
.bts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 50px 160px, #ddd, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 80px 120px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 110px 40px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 170px 180px, #eee, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.15;
  pointer-events: none;
}
.bts-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(100, 150, 255, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(200, 100, 255, 0.04) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.bts-inner { max-width: 1440px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.bts-inner .sec-label { justify-content: center; opacity: 1; color: rgba(255,255,255,0.3); }
.bts-desc { max-width: 500px; margin: 0 auto 80px; font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.4); }

.bts-env {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  perspective: 2000px;
}

.bts-pic {
  position: absolute;
  cursor: none;
  transform: rotate(var(--rot));
  will-change: transform;
}

.bts-pic-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  background: var(--grey1);
  border: 4px solid rgba(255,255,255,0.03);
  display: flex;
  transform-style: preserve-3d;
  will-change: transform, filter;
}

.bts-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: grayscale(80%) contrast(1.1) brightness(0.6);
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bts-pic.is-hover { z-index: 20 !important; }
.bts-pic.is-hover .bts-pic-inner {
  box-shadow: 0 35px 80px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.1);
}
.bts-pic.is-hover img {
  filter: grayscale(0%) contrast(1) brightness(1.1);
  transform: scale(1.08);
}

/* Positioning & Varied Sizes for Collage Logic */
.bts-pic:nth-child(1) { width: 220px; height: 160px; top: 12%; left: 10%; z-index: 1; }
.bts-pic:nth-child(2) { width: 420px; height: 280px; bottom: 15%; left: 8%; z-index: 2; }
.bts-pic:nth-child(3) { width: 180px; height: 180px; top: 15%; right: 12%; z-index: 3; }
.bts-pic:nth-child(4) { width: 340px; height: 420px; bottom: 8%; right: 15%; z-index: 4; }
.bts-pic:nth-child(5) { width: 280px; height: 360px; top: 45%; left: 45%; transform: translate(-50%, -50%); z-index: 5; }
.bts-pic:nth-child(6) { width: 200px; height: 150px; top: 60%; left: 20%; z-index: 2; opacity: 0.6; }
.bts-pic:nth-child(7) { width: 160px; height: 220px; top: 30%; right: 25%; z-index: 3; opacity: 0.5; }
.bts-pic:nth-child(8) { width: 300px; height: 200px; bottom: 20%; right: 5%; z-index: 1; opacity: 0.7; }

/* Galaxy Bubbles (Particles) */
.bts-bubble {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(1px);
}
.bts-pic:nth-child(5) .bts-pic-inner { box-shadow: 0 25px 60px rgba(0,0,0,0.5); }

/* ══ CONTACT ══ */
.contact { 
  padding: 160px 64px; 
  background: #080808; 
  position: relative; 
  overflow: hidden; 
}
.contact-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px; opacity: 0.4;
}
.contact-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s;
  opacity: 0;
}
.contact:hover .contact-glow { opacity: 1; }

.contact::after {
  content: "26";
  position: absolute;
  bottom: -50px; left: -20px;
  font-family: var(--font-h);
  font-size: 30rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  max-width: 1440px; margin:0 auto; position:relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.contact-h2 {
  font-family: var(--font-h); 
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; 
  letter-spacing: -0.05em; 
  line-height: 0.95;
  color: var(--white); 
  margin-bottom: 30px;
}
.contact-h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.contact-sub { font-size: 1.1rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 50px; max-width: 450px; }
.contact-links { display:flex; flex-direction:column; gap:14px; }
.clink {
  display:flex; align-items:center; gap:12px; text-decoration:none;
  color:rgba(245,242,237,0.5); font-size:0.92rem; font-weight:500;
  transition:color .2s;
}
.clink:hover { color:var(--accent); }
.clink-icon {
  width:34px; height:34px; border-radius:8px;
  background:rgba(245,242,237,0.05); border:1px solid rgba(245,242,237,0.08);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

/* Form */
.cform { display:flex; flex-direction:column; gap:28px; }
.cform-group { position:relative; }
.cform-group input,
.cform-group textarea,
.cform-group select {
  width:100%; background:none; border:none; outline:none;
  font-family:var(--font-b); font-size:1rem; color:var(--white); padding:13px 0;
}
.cform-group select { cursor:none; }
.cform-group select option { background:var(--grey1); color:var(--white); }
.cform-group textarea { resize:none; min-height:88px; }
.cform-group label {
  position:absolute; top:13px; left:0;
  color:rgba(245,242,237,0.28); font-size:0.93rem; pointer-events:none;
  transition:all .3s var(--ease);
}
.cform-group input:focus ~ label,
.cform-group input:not(:placeholder-shown) ~ label,
.cform-group textarea:focus ~ label,
.cform-group textarea:not(:placeholder-shown) ~ label,
.cform-group select:focus ~ label,
.cform-group select:valid ~ label {
  top:-9px; font-size:0.65rem; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--accent);
}
.cform-line { position:absolute; bottom:0; left:0; right:0; height:1px; background:rgba(245,242,237,0.08); }
.cform-line::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:1px;
  background:var(--accent); transition:width .4s var(--ease);
}
.cform-group:focus-within .cform-line::after { width:100%; }
.form-submit {
  display:flex; align-items:center; gap:10px; justify-content:center;
  padding:16px 32px; background:var(--white); color:var(--black);
  border:none; border-radius:50px; font-size:0.9rem; font-weight:700;
  cursor:none; position:relative; overflow:hidden;
  transition:transform .3s var(--easeb), box-shadow .3s;
}
.form-submit::before {
  content:''; position:absolute; inset:0; background:var(--accent);
  transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease);
}
.form-submit:hover::before { transform:scaleX(1); }
.form-submit:hover { transform:translateY(-3px); box-shadow:0 14px 36px var(--accent2); color:var(--white); }
.fs-text, .form-submit svg { position:relative; z-index:1; }
.form-success { display:none; align-items:center; gap:10px; color:var(--accent); font-weight:600; font-size:0.9rem; }
.form-success.show { display:flex; }

/* ══ FOOTER ══ */
.footer { padding:72px 64px 36px; background:var(--grey1); border-top:1px solid rgba(245,242,237,0.04); }
.footer-top {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1440px; margin:0 auto 52px; flex-wrap:wrap; gap:20px;
}
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand svg { border-radius:5px; }
.footer-name { font-family:var(--font-h); font-size:1.3rem; font-weight:300; color:rgba(245,242,237,0.45); letter-spacing:-0.02em; }
.footer-tagline { font-size:0.78rem; color:rgba(245,242,237,0.2); letter-spacing:0.04em; margin-top:3px; }
.footer-mid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:40px;
  max-width:1440px; margin:0 auto 52px;
  padding-top:40px; border-top:1px solid rgba(245,242,237,0.05);
}
.footer-col h4 { font-size:0.65rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:rgba(245,242,237,0.22); margin-bottom:18px; }
.footer-col a { display:block; text-decoration:none; color:rgba(245,242,237,0.4); font-size:0.88rem; margin-bottom:10px; transition:color .2s, transform .2s; }
.footer-col a:hover { color:var(--accent); transform:translateX(4px); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1440px; margin:0 auto;
  padding-top:20px; border-top:1px solid rgba(245,242,237,0.05);
  font-size:0.75rem; color:rgba(245,242,237,0.18);
}

/* ══ WHATSAPP ══ */
.wa-btn {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:52px; height:52px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; box-shadow:0 6px 22px rgba(37,211,102,0.38);
  transition:transform .3s var(--easeb), box-shadow .3s;
  transform:scale(0);
}
.wa-btn.show { transform:scale(1); }
.wa-btn:hover { transform:scale(1.1) translateY(-4px); box-shadow:0 12px 36px rgba(37,211,102,0.5); }

/* ══ RESPONSIVE ══ */
@media (max-width:1200px) {
  .nav { padding:18px 40px; }
  .nav.scrolled { padding:12px 40px; }
  .aj-hero { padding:130px 40px 56px; }
  .work { padding:100px 40px; }
  .about { padding:100px 40px; }
  .services { padding:100px 40px; }
  .team { padding:100px 40px; }
  .process { padding:100px 40px; }
  .contact { padding:100px 40px; }
  .footer { padding:56px 40px 28px; }
}

@media (max-width:900px) {
  .nav-links, .nav-cta { display:none; }
  .nav-toggle { display:flex; }
  .aj-hero { padding:115px 28px 52px; }
  .aj-portraits { flex-direction:column; align-items:center; gap:40px; }
  .form-left .aj-pic { transform:rotate(0deg); }
  .form-right .aj-pic { transform:rotate(0deg); }
  .wi-large, .work-item:not(.wi-large):not(.wi-wide) { grid-column:span 12; }
  .about-inner { grid-template-columns:1fr; }
  .about-cards { height:260px; }
  .svc-grid { grid-template-columns:1fr; }
  .svc { border-right:none; }
  .svc:nth-child(3) { border-bottom:1px solid rgba(10,10,10,0.08); }
  .team-grid { max-width:100%; }
  .process-steps { grid-template-columns:repeat(2,1fr); }
  .pstep:nth-child(2) { border-right:none; }
  .pstep:nth-child(3) { border-top:1px solid rgba(10,10,10,0.08); border-right:1px solid rgba(10,10,10,0.08); }
  .pstep:nth-child(4) { border-top:1px solid rgba(10,10,10,0.08); }
  .contact-inner { grid-template-columns:1fr; gap:60px; }
  .footer-mid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:600px) {
  .nav { padding:14px 20px; }
  .aj-hero { padding:105px 20px 48px; }
  .aj-h1 { font-size:clamp(3.5rem, 14vw, 6rem); }
  .aj-stats { flex-direction:column; gap:20px; }
  .hstat-val { font-size:1.5rem; }
  .work, .about, .services, .team, .process, .contact { padding:80px 20px; }
  .footer { padding:44px 20px 24px; }
  .team-grid { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr; }
  .pstep { border-right:none; border-bottom:1px solid rgba(10,10,10,0.08); }
  .pstep:last-child { border-bottom:none; }
  .footer-mid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:6px; }
  .wi-wide .wi-img-wrap { aspect-ratio:4/3; }
  .case-panel { padding:40px 22px; }
}
