/* ============================================
   ELECTCO 2026 - Elite Design System
   Authored by Senior UI/UX Engineer
   Philosophy: Apple × Linear × BIG architects
   ============================================ */

/* ---------- Extended Design Tokens ---------- */
:root {
  /* Refined color palette */
  --ink: #08111F;
  --ink-soft: #0F1B2E;
  --ink-elevated: #16263F;
  --bone: #FAFAF7;
  --bone-warm: #F4F0E8;
  --paper: #FFFFFF;
  --gold-pure: #C9A96E;
  --gold-bright: #E8CC8C;
  --gold-deep: #8C7541;
  --line: rgba(201, 169, 110, 0.12);
  --line-strong: rgba(201, 169, 110, 0.28);
  --line-dark: rgba(255, 255, 255, 0.06);

  /* Refined typography scale — softer, more elegant */
  --display-xl: clamp(2.5rem, 5.5vw, 4.5rem);
  --display-lg: clamp(2rem, 4vw, 3.4rem);
  --display: clamp(1.7rem, 3vw, 2.5rem);
  --headline: clamp(1.4rem, 2.2vw, 2rem);
  --title: clamp(1.15rem, 1.6vw, 1.5rem);
  --label: 0.72rem;

  /* Premium easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing system */
  --space-section: clamp(60px, 10vw, 140px);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;
  --r-full: 9999px;
}

/* ---------- Global Foundation ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'ss01' 1, 'cv11' 1;
  letter-spacing: -0.011em;
  font-weight: 400;
  line-height: 1.6;
  background: var(--paper);
  color: var(--ink);
}

/* Hide default cursor on desktop for custom cursor */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .clickable, [role="button"], input, textarea, select { cursor: none; }
}

/* Refined display typography — Inter throughout, softer weight */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 { font-weight: 600; letter-spacing: -0.03em; }
h2 { font-weight: 600; letter-spacing: -0.025em; }
h3 { font-weight: 600; letter-spacing: -0.02em; }
h4 { font-weight: 600; letter-spacing: -0.015em; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-pure), var(--gold-deep));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

/* ---------- Custom Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold-pure);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s,
              background 0.3s;
}

.cursor-ring.hover-active {
  width: 80px;
  height: 80px;
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold-bright);
}

.cursor-ring.click-active {
  width: 24px;
  height: 24px;
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-pure));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

/* ---------- Premium Preloader ---------- */
.preloader-2026 {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo),
              visibility 0.8s var(--ease-out-expo);
}

.preloader-2026.done {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold-pure);
  margin-bottom: 30px;
  overflow: hidden;
}

.preloader-mark span {
  display: inline-block;
  animation: letterRise 1s var(--ease-out-expo) backwards;
}

@keyframes letterRise {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.preloader-mark span:nth-child(1) { animation-delay: 0s; }
.preloader-mark span:nth-child(2) { animation-delay: 0.05s; }
.preloader-mark span:nth-child(3) { animation-delay: 0.1s; }
.preloader-mark span:nth-child(4) { animation-delay: 0.15s; }
.preloader-mark span:nth-child(5) { animation-delay: 0.2s; }
.preloader-mark span:nth-child(6) { animation-delay: 0.25s; }
.preloader-mark span:nth-child(7) { animation-delay: 0.3s; }

.preloader-bar-track {
  width: 240px;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.preloader-bar-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--gold-pure);
  animation: barFill 1.6s var(--ease-in-out-expo) forwards;
  animation-delay: 0.4s;
}

@keyframes barFill {
  to { inset: 0 0 0 0; }
}

.preloader-percent {
  font-family: 'Inter', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-pure);
  margin-top: 18px;
  opacity: 0.6;
}

/* ---------- Marquee Bar ---------- */
.marquee-bar {
  background: var(--ink);
  color: var(--bone);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 40s linear infinite;
  gap: 60px;
  white-space: nowrap;
}

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

.marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.marquee-item::after {
  content: '★';
  font-style: normal;
  color: var(--gold-pure);
  font-size: 0.8em;
}

.marquee-item.gold-text {
  color: var(--gold-pure);
}

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

/* ---------- Enhanced Navbar (Auto-hide on scroll) ---------- */
.navbar-2026 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010; /* Above backdrop (1001) and menu inside (1002) is bounded by this */
  padding: 18px 0;
  background: rgba(8, 17, 31, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-dark);
  transition: transform 0.4s var(--ease-out-expo),
              background 0.3s,
              padding 0.3s;
}

.navbar-2026.scrolled {
  padding: 12px 0;
  background: rgba(8, 17, 31, 0.95);
}

.navbar-2026.hide-up {
  transform: translateY(-110%);
}

.navbar-inner-2026 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.18em;
}

.nav-logo-text sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold-pure);
  display: block;
  margin-top: 2px;
}

.nav-links-2026 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links-2026 a {
  position: relative;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links-2026 a::before {
  content: '';
  position: absolute;
  inset: auto 18px 4px 18px;
  height: 1px;
  background: var(--gold-pure);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-links-2026 a:hover {
  color: var(--bone);
}

.nav-links-2026 a:hover::before,
.nav-links-2026 a.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links-2026 a.active {
  color: var(--gold-pure);
}

.nav-cta-2026 {
  margin-left: 16px;
  padding: 12px 24px !important;
  border: 1px solid var(--gold-pure);
  border-radius: var(--r-full);
  color: var(--gold-pure) !important;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.nav-cta-2026::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-pure);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.nav-cta-2026:hover {
  color: var(--ink) !important;
}

.nav-cta-2026:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta-2026::before { display: none; }

/* ---------- Mobile Menu Toggle (Hamburger) ---------- */
.menu-toggle-2026 {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  cursor: pointer;
  z-index: 1003; /* Above everything, including mobile menu */
  transition: all 0.3s var(--ease-out-expo);
}

.menu-toggle-2026:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold-pure);
}

.menu-toggle-2026 span {
  display: block;
  position: absolute;
  left: 50%;
  height: 1.5px;
  width: 18px;
  background: var(--bone);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: all 0.4s var(--ease-out-expo);
}

.menu-toggle-2026 span:nth-child(1) { top: 16px; }
.menu-toggle-2026 span:nth-child(2) { top: 22px; width: 12px; left: calc(50% - 3px); }
.menu-toggle-2026 span:nth-child(3) { top: 28px; }

.menu-toggle-2026.active {
  border-color: var(--gold-pure);
  background: rgba(201, 169, 110, 0.08);
}

.menu-toggle-2026.active span:nth-child(1) {
  top: 21px;
  width: 18px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background: var(--gold-pure);
}

.menu-toggle-2026.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle-2026.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
  background: var(--gold-pure);
}

/* ---------- Mobile Menu Overlay ---------- */
@media (max-width: 900px) {
  .menu-toggle-2026 { display: inline-block; }

  .nav-links-2026 {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 100% !important;
    max-width: 420px;
    height: 100vh !important;
    height: 100dvh !important; /* dynamic viewport height for iOS */
    background: #08111F !important; /* explicit solid color, no transparency */
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 100px 32px 40px !important;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    /* Above backdrop (which is 998) and navbar background */
    z-index: 1002 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
  }

  .nav-links-2026.mobile-open {
    transform: translateX(0) !important;
  }

  .nav-links-2026 a {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    padding: 22px 0 !important;
    width: 100% !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #FAFAF7 !important; /* explicit bright color */
    text-transform: uppercase !important;
    position: relative !important;
    transition: padding-left 0.3s var(--ease-out-expo), color 0.3s !important;
    display: block !important;
    background: transparent !important;
  }

  .nav-links-2026 a::before {
    content: '' !important;
    position: absolute !important;
    inset: auto auto 22px 0 !important;
    width: 24px !important;
    height: 1px !important;
    transform: scaleX(0) !important;
    background: var(--gold-pure) !important;
    transition: transform 0.3s !important;
  }

  .nav-links-2026 a:hover::before,
  .nav-links-2026 a.active::before {
    transform: scaleX(1) !important;
  }

  .nav-links-2026 a:hover {
    padding-left: 36px !important;
    color: var(--gold-pure) !important;
  }

  .nav-links-2026 a.active {
    color: var(--gold-pure) !important;
  }

  .nav-cta-2026 {
    margin: 28px 0 0 0 !important;
    width: 100% !important;
    text-align: center !important;
    border: 1px solid var(--gold-pure) !important;
    border-radius: 9999px !important;
    padding: 18px 28px !important;
    color: var(--gold-pure) !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
  }

  .nav-cta-2026::before { display: none !important; }
  .nav-cta-2026::after { display: none !important; }
  .nav-cta-2026:hover { padding-left: 28px !important; color: var(--ink) !important; background: var(--gold-pure) !important; }

  /* Mobile menu backdrop - positioned BELOW the menu */
  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 17, 31, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s var(--ease-out-expo);
    pointer-events: none;
  }

  .mobile-menu-backdrop.active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  /* Refine navbar padding on mobile */
  .navbar-inner-2026 {
    padding: 0 20px;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .nav-logo-text sub {
    font-size: 0.5rem;
  }
}

@media (max-width: 480px) {
  .nav-links-2026 {
    max-width: 100%;
  }
}

/* ---------- Cinematic Hero ---------- */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-cinematic::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-cinematic::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(201, 169, 110, 0.04);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-size: var(--display-xl);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--bone);
  margin-bottom: 32px;
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-headline .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise 1s var(--ease-out-expo) forwards;
}

.hero-headline .word:nth-child(1) > span { animation-delay: 0.3s; }
.hero-headline .word:nth-child(2) > span { animation-delay: 0.4s; }
.hero-headline .word:nth-child(3) > span { animation-delay: 0.5s; }
.hero-headline .word:nth-child(4) > span { animation-delay: 0.6s; }
.hero-headline .word:nth-child(5) > span { animation-delay: 0.7s; }
.hero-headline .word:nth-child(6) > span { animation-delay: 0.8s; }

@keyframes wordRise {
  to { transform: translateY(0); }
}

.hero-headline em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-pure) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
}

/* Magnetic primary button */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--gold-pure);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  border-radius: var(--r-full);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn-magnetic:hover::before {
  transform: scale(1.2);
}

.btn-magnetic .arrow {
  display: inline-flex;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-magnetic:hover .arrow {
  transform: translateX(6px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  background: transparent;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold-pure);
  color: var(--gold-bright);
}

/* Hero trust indicators */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.3s forwards;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold-pure);
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  height: 70vh;
  min-height: 500px;
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 17, 31, 0.4) 100%);
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-2%, -2%); }
}

.hero-floating-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  background: rgba(8, 17, 31, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-floating-card .left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-floating-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}

.hero-floating-card .text-content small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-floating-card .text-content strong {
  display: block;
  color: var(--bone);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: rgba(201, 169, 110, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-pure);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- Section System ---------- */
.section-2026 {
  padding: var(--space-section) 0;
  position: relative;
}

.section-2026.bg-ink {
  background: var(--ink);
  color: var(--bone);
}

.section-2026.bg-bone {
  background: var(--bone);
}

.section-2026.bg-paper {
  background: var(--paper);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header-2026 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-pure);
}

.section-title {
  font-size: var(--display-lg);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--gold-pure);
}

.section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
}

.section-2026.bg-ink .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Bento Box Services Grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  background: var(--paper);
  border: 1px solid #EAEAE5;
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.bento-card.dark {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--line);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-pure);
  box-shadow: 0 20px 60px rgba(8, 17, 31, 0.08);
}

.bento-card.dark:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Bento sizing */
.bento-1 { grid-column: span 4; grid-row: span 2; }
.bento-2 { grid-column: span 2; }
.bento-3 { grid-column: span 2; }
.bento-4 { grid-column: span 2; grid-row: span 2; }
.bento-5 { grid-column: span 2; }
.bento-6 { grid-column: span 2; }

.bento-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-pure);
  letter-spacing: 0.1em;
}

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pure);
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-out-expo);
}

.bento-card:hover .bento-icon {
  background: var(--gold-pure);
  color: var(--ink);
  transform: rotate(-8deg) scale(1.05);
}

.bento-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: inherit;
}

.bento-1 .bento-title {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  max-width: 80%;
}

.bento-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bento-card.dark .bento-desc {
  color: rgba(255, 255, 255, 0.65);
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  padding-bottom: 4px;
}

.bento-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-pure);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.bento-card:hover .bento-cta::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bento-1 .bento-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3);
  transition: opacity 0.5s, transform 0.6s var(--ease-out-expo);
}

.bento-1:hover .bento-bg-img {
  opacity: 0.25;
  transform: scale(1.05);
}

.bento-1 .bento-content {
  position: relative;
  z-index: 1;
}

/* ---------- Editorial About Section ---------- */
.about-editorial {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-narrative .big-year {
  font-family: 'Inter', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-bottom: 16px;
  position: relative;
}

.bg-ink .about-narrative .big-year {
  color: var(--bone);
}

.about-narrative .big-year em {
  font-style: normal;
  color: var(--gold-pure);
  font-weight: 500;
}

.about-narrative .year-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bg-ink .about-narrative .year-label { color: rgba(255, 255, 255, 0.5); }

.about-narrative .year-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.about-pullquote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
  border-left: 2px solid var(--gold-pure);
  padding-left: 24px;
  margin: 32px 0;
  letter-spacing: -0.01em;
}

.bg-ink .about-pullquote { color: var(--bone); }

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.bg-ink .about-body { color: rgba(255, 255, 255, 0.7); }

.about-stack {
  position: relative;
  height: 600px;
}

.about-stack img {
  position: absolute;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-stack img:nth-child(1) {
  width: 75%;
  height: 70%;
  top: 0;
  right: 0;
  object-fit: cover;
}

.about-stack img:nth-child(2) {
  width: 60%;
  height: 50%;
  bottom: 0;
  left: 0;
  object-fit: cover;
  border: 8px solid var(--bone);
}

.bg-ink .about-stack img:nth-child(2) { border-color: var(--ink); }

.about-stack-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--gold-pure);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  text-align: center;
  z-index: 3;
  animation: badgeRotate 30s linear infinite;
}

.about-stack-badge .num {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.about-stack-badge .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes badgeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Stats Grid ---------- */
.stats-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item-2026 {
  padding: 50px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}

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

.stat-num-2026 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold-pure);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.stat-num-2026 .plus {
  color: var(--gold-bright);
  font-size: 0.6em;
  font-weight: 400;
}

.stat-label-2026 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* ---------- Magazine Projects ---------- */
.featured-project {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.featured-project-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.featured-project:hover .featured-project-image img {
  transform: scale(1.04);
}

.featured-project-content .feat-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-pure);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.featured-project-content .feat-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.featured-project-content .feat-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.featured-project-content .feat-meta span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.featured-project-content .feat-meta strong {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pure);
}

/* Project grid (modern) */
.projects-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-mod-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.project-mod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.project-mod-card:hover img {
  transform: scale(1.08);
}

.project-mod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 17, 31, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--bone);
  transition: all 0.5s var(--ease-out-expo);
}

.project-mod-overlay .cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.project-mod-overlay h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo) 0.05s;
}

.project-mod-overlay p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--ease-out-expo) 0.1s;
}

.project-mod-card .cat,
.project-mod-card h3,
.project-mod-card p {
  transform: translateY(0);
  opacity: 1;
}

.project-mod-card::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pure);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.5s var(--ease-spring);
  z-index: 2;
}

.project-mod-card:hover::after {
  transform: scale(1) rotate(0deg);
}

/* ---------- Process / Approach ---------- */
.process-list {
  margin-top: 60px;
}

.process-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 200px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.4s var(--ease-out-expo);
  position: relative;
}

.process-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.06) 0%, transparent 100%);
  transition: width 0.5s var(--ease-out-expo);
  z-index: -1;
}

.process-row:hover::before {
  width: 100%;
}

.process-row:hover {
  padding-left: 24px;
}

.bg-ink .process-row { border-color: var(--line-dark); }

.process-num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-pure);
  letter-spacing: 0.05em;
}

.process-name {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process-detail {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.bg-ink .process-detail { color: rgba(255, 255, 255, 0.6); }

.process-tag {
  text-align: right;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-pure);
  text-transform: uppercase;
}

/* ---------- CTA Section Premium ---------- */
.cta-2026 {
  padding: var(--space-section) 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.cta-2026::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-2026-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.cta-2026-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cta-2026-eyebrow::before,
.cta-2026-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-pure);
}

.cta-2026-title {
  font-size: var(--display-lg);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.cta-2026-title em {
  font-style: normal;
  color: var(--gold-pure);
  font-weight: 500;
}

.cta-2026-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-2026-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-2026-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cta-2026-phone i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pure);
  font-size: 1rem;
}

/* ---------- Footer 2026 ---------- */
.footer-2026 {
  background: var(--ink);
  color: var(--bone);
  padding: 100px 0 0;
  border-top: 1px solid var(--line-dark);
}

.footer-2026-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-2026-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand img {
  height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--gold-pure);
  border-color: var(--gold-pure);
  color: var(--ink);
  transform: translateY(-3px);
}

.footer-2026 h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.footer-2026 ul li {
  margin-bottom: 14px;
}

.footer-2026 ul li a,
.footer-2026 ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

.footer-2026 ul li a:hover {
  color: var(--gold-pure);
}

.footer-contact-block {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-block .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pure);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.footer-contact-block .info small {
  display: block;
  font-size: 0.65rem;
  color: var(--gold-pure);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-contact-block .info span,
.footer-contact-block .info a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.footer-2026-marquee {
  padding: 40px 0;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.footer-2026-marquee .marquee-track {
  animation-duration: 50s;
}

.footer-2026-marquee .marquee-item {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.04);
  font-style: normal;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.2);
  letter-spacing: -0.02em;
}

.footer-2026-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-2026-bottom strong {
  color: var(--gold-pure);
  font-weight: 500;
}

/* ---------- Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].revealed { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].revealed { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* Stagger delays */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; min-height: auto; }
  .hero-visual { height: 50vh; min-height: 400px; }
  .section-header-2026 { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .about-editorial { grid-template-columns: 1fr; gap: 60px; }
  .about-stack { height: 500px; }
  .featured-project { grid-template-columns: 1fr; gap: 40px; }
  .footer-2026-top { grid-template-columns: 1fr 1fr; gap: 50px; }
  .hero-cinematic { padding: 120px 0 60px; }
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 {
    grid-column: span 2;
    grid-row: auto;
  }
  .projects-modern { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-2026 { grid-template-columns: 1fr 1fr; }
  .stat-item-2026:nth-child(2) { border-right: none; }
  .stat-item-2026:nth-child(1), .stat-item-2026:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process-row { grid-template-columns: 60px 1fr; gap: 20px; }
  .process-detail, .process-tag { grid-column: 1 / -1; }
  .process-tag { text-align: left; }

  /* Refine typography for tablet */
  .hero-headline { font-size: clamp(2.2rem, 7vw, 3.5rem); line-height: 1.15; }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  .cta-2026-title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
}

@media (max-width: 768px) {
  /* Layout */
  .footer-2026-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-2026-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .projects-modern { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; gap: 14px; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 {
    grid-column: span 1;
  }
  .hero-trust { grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 32px; margin-top: 50px; }
  .trust-num { font-size: 1.6rem; }
  .trust-label { font-size: 0.6rem; }

  /* Sections */
  .section-container { padding: 0 20px; }
  .section-2026 { padding: 70px 0; }
  .hero-cinematic { padding: 110px 0 50px; }
  .hero-grid { padding: 0 20px; gap: 40px; }
  .hero-visual { height: 380px; min-height: 380px; border-radius: 16px; }
  .hero-floating-card { left: 16px; right: 16px; bottom: 16px; padding: 16px; }
  .hero-floating-card .text-content small { font-size: 0.65rem; }
  .hero-floating-card .text-content strong { font-size: 0.85rem; }
  .scroll-indicator { display: none; }

  /* Typography refinement for mobile */
  .hero-headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-headline .word { white-space: normal; }
  .hero-lede { font-size: 1rem; max-width: 100%; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.15em; padding: 6px 14px; }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.15; }
  .section-eyebrow { font-size: 0.65rem; }
  .section-desc { font-size: 0.95rem; }
  .cta-2026-title { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.15; }
  .cta-2026-desc { font-size: 1rem; }

  /* About */
  .about-narrative .big-year { font-size: clamp(4rem, 16vw, 6rem); }
  .about-pullquote { font-size: 1rem; padding-left: 16px; }
  .about-stack { height: 360px; }
  .about-stack-badge { width: 90px; height: 90px; }
  .about-stack-badge .num { font-size: 1.6rem; }
  .about-stack-badge .lbl { font-size: 0.5rem; }

  /* Buttons */
  .btn-magnetic, .btn-ghost { padding: 14px 24px; font-size: 0.78rem; }
  .hero-actions { gap: 12px; }

  /* CTA */
  .cta-2026 { padding: 70px 0; }
  .cta-2026-actions { flex-direction: column; gap: 24px; }
  .cta-2026-phone { font-size: 1.2rem; }
  .cta-2026-phone i { width: 40px; height: 40px; }

  /* Featured project */
  .featured-project-content .feat-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .featured-project-content .feat-meta { flex-wrap: wrap; gap: 16px; }

  /* Process */
  .process-row { padding: 28px 0; }
  .process-num { font-size: 1.4rem; }
  .process-name { font-size: 1.1rem; }
  .process-detail { font-size: 0.9rem; }

  /* Marquee */
  .marquee-item { font-size: clamp(1rem, 4vw, 1.4rem); gap: 40px; }
  .marquee-track { gap: 40px; }

  /* Stats */
  .stat-item-2026 { padding: 30px 16px; }
  .stat-num-2026 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .stat-label-2026 { font-size: 0.75rem; }

  /* Footer */
  .footer-2026 { padding: 60px 0 0; }
  .footer-2026-inner { padding: 0 20px; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 480px) {
  /* Even smaller phones */
  .hero-headline { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .hero-trust { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .trust-num { font-size: 1.4rem; }
  .trust-label { font-size: 0.55rem; letter-spacing: 0.08em; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-magnetic, .btn-ghost { justify-content: center; width: 100%; }

  .section-title { font-size: clamp(1.5rem, 8vw, 2rem); }
  .cta-2026-title { font-size: clamp(1.5rem, 8vw, 2rem); }

  .hero-cinematic { padding: 100px 0 40px; }
  .hero-visual { height: 320px; min-height: 320px; }
  .hero-floating-card { flex-direction: column; align-items: flex-start; gap: 12px; }

  .about-narrative .big-year { font-size: clamp(3.5rem, 18vw, 5rem); }
  .about-stack { height: 320px; }

  .marquee-item { font-size: 0.95rem; gap: 32px; }
  .marquee-track { gap: 32px; }

  .bento-card { padding: 28px 22px; }
  .bento-num { right: 22px; top: 22px; }

  /* Process gets even more compact */
  .process-row { padding: 24px 0; }
  .process-num { font-size: 1.2rem; }
  .process-name { font-size: 1rem; }
}

/* ---------- Hover states for cursor ---------- */
a, button, .clickable, .bento-card, .project-mod-card, .nav-cta-2026, .btn-magnetic, .btn-ghost {
  /* These will trigger cursor expansion via JS */
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  animation: pingPulseWa 2.4s ease-out infinite;
}

@keyframes pingPulseWa {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
  }
}
