/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --black: #060606;
  --cream: #EDE8DF;
  --cream2: #C8C2B8;
  --orange: #D4470C;
  --orange2: #FF5A1A;
  --accent-on-dark: #FF5A1A;
  --accent-on-light: #B23A08;
  --accent-brand: #D4470C;
  --g1: #1A1A1A;
  --g2: #2E2E2E;
  --g3: #5A5550;
  --g-text: #8B847A;
  --hover-surface: #1E1E1E;
  --hover-cream: #F5EFE5;
  --fd: 'Big Shoulders Display', sans-serif;
  --fb: 'Epilogue', sans-serif;
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;
  --t-fast: 0.2s;
  --t-base: 0.3s;
  --t-slow: 0.6s;
  --z-glow: 100;
  --z-header: 800;
  --z-progress: 999;
  --z-grain: 9000;
  --z-modal: 9500;
}

/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  z-index: var(--z-progress);
  transition: width 0.3s ease;
  width: 0;
}

/* ═══════════════════════════════════════════════
   STICKY HEADER
═══════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.4s ease;
}

header.scrolled {
  border-bottom-color: var(--g2);
}

.logo {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

nav {
  display: flex;
  gap: 48px;
  align-items: center;
}

nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-on-dark);
}

.cta-btn {
  background: var(--orange);
  color: var(--black);
  padding: 12px 24px;
  border: none;
  border-radius: 2px;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-base) ease;
}

.cta-btn:hover {
  background: var(--orange2);
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  position: relative;
  z-index: 860;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 9px;
}

.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
  display: block;
}

.mobile-menu-btn .icon-close { display: none; }
header.menu-open .mobile-menu-btn .icon-menu { display: none; }
header.menu-open .mobile-menu-btn .icon-close { display: block; }

@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }

  header .cta-btn {
    display: none;
  }

  nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 80px 24px;
    background: var(--g1);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.17, 0.55, 0.35, 1);
    z-index: 850;
  }

  header.menu-open nav {
    transform: translateY(0);
  }

  nav a {
    font-size: 20px;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ═══════════════════════════════════════════════
   CURSOR GLOW
═══════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 71, 12, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-glow);
  display: none;
}

@media (min-width: 769px) {
  .cursor-glow {
    display: block;
  }
}

/* ═══════════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════════ */
main {
  position: relative;
}

section {
  position: relative;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.17, 0.55, 0.35, 1), transform 0.7s cubic-bezier(0.17, 0.55, 0.35, 1);
}

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

/* Stagger delays */
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 60px;
  background: radial-gradient(ellipse 55% 60% at 85% 15%, rgba(212, 71, 12, 0.07) 0%, transparent 65%),
              radial-gradient(ellipse 35% 45% at 10% 80%, rgba(212, 71, 12, 0.04) 0%, transparent 70%);
  overflow: visible;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  display: block;
  margin-bottom: 8px;
}

.hero-heading {
  font-family: var(--fd);
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 14px;
}

.hero-heading em {
  font-style: italic;
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--cream2);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-cta-wrapper {
  margin-bottom: 24px;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.hero-cta-btn:hover {
  background: var(--orange2);
}

.hero-markets {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.market {
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cream2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.market::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Marquee strip */
.marquee-strip {
  position: relative;
  background: var(--g1);
  border-top: 1px solid var(--g2);
  border-bottom: 1px solid var(--g2);
  padding: 16px 0;
  margin: 48px calc(-50vw + 50%);
  width: 100vw;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream2);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.marquee-strip:hover .marquee-content,
.marquee-strip:focus-within .marquee-content {
  animation-play-state: paused;
}

.marquee-content span {
  margin: 0 40px;
}

/* ═══════════════════════════════════════════════
   WATERMARK NUMBERS
═══════════════════════════════════════════════ */
.section-number {
  position: absolute;
  font-family: var(--fd);
  font-size: 220px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(212, 71, 12, 0.025);
  line-height: 1;
  pointer-events: none;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* ═══════════════════════════════════════════════
   TRUSTED BY SECTION
═══════════════════════════════════════════════ */
#trusted {
  background: var(--cream);
  padding-block: 120px;
  border-top: 1px solid rgba(6, 6, 6, 0.12);
  border-bottom: 1px solid rgba(6, 6, 6, 0.12);
  margin: 0 auto;
  max-width: 1400px;
}

.trusted-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-on-light);
  display: block;
  margin-bottom: 16px;
}

.trusted-heading {
  font-family: var(--fd);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--black);
  margin-bottom: 32px;
}

.trusted-heading em {
  font-style: normal;
  color: var(--orange);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.logo-box {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  cursor: default;
}

.logo-img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.logo-box:nth-child(-n+2) {
  mix-blend-mode: multiply;
}

.logo-box:nth-child(3) .logo-img,
.logo-box:nth-child(4) .logo-img,
.logo-box:nth-child(5) .logo-img {
  max-height: 60%;
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
#services {
  padding: 0;
  position: relative;
}

.services-pin {
  position: relative;
  height: 560vh;
}

.services-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding: 96px 80px 0;
}

.services-heading {
  font-family: var(--fd);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--cream);
  max-width: 600px;
}

.services-heading em {
  font-style: normal;
  color: var(--orange);
}

.services-note {
  font-size: 16px;
  color: var(--g-text);
  max-width: 240px;
  line-height: 1.6;
  text-align: right;
}

.services-note strong {
  color: var(--cream2);
  display: block;
}

.services-deck {
  pointer-events: none;
}

.services-swipe-hint {
  display: none;
}

.deck-tabs {
  position: absolute;
  top: 40vh;
  left: 80px;
  right: 80px;
  display: flex;
  gap: 6px;
  z-index: 72;
  pointer-events: none;
}

.deck-tab {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 22px;
  background: var(--g2);
  color: var(--cream2);
  border: 1px solid var(--g2);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s, color 0.3s;
}

.deck-tab.shown { opacity: 1; transform: translateY(0); }
.deck-tab.active { background: var(--cream); color: var(--black); border-color: var(--cream); }

.deck-bodies { pointer-events: none; }

.card-body {
  position: absolute;
  top: calc(40vh + 48px);
  left: 80px;
  right: 80px;
  bottom: 48px;
  background: var(--g1);
  border: 1px solid var(--g2);
  border-radius: 0 16px 16px 16px;
  padding: 48px 56px;
  display: flex;
  gap: 56px;
  align-items: stretch;
  transform: translateY(115vh);
  will-change: transform;
  pointer-events: auto;
}

.card-body:nth-child(1) { z-index: 51; }
.card-body:nth-child(2) { z-index: 52; }
.card-body:nth-child(3) { z-index: 53; }
.card-body:nth-child(4) { z-index: 54; }
.card-body:nth-child(5) { z-index: 55; }
.card-body:nth-child(6) { z-index: 56; }

.card-left {
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--g2);
  padding-right: 44px;
}

.card-num {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-on-dark);
  margin-bottom: 18px;
}

.card-title {
  font-family: var(--fd);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 16px;
}

.card-subtitle {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g-text);
  font-weight: 600;
}

.card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-hook {
  font-size: 20px;
  color: var(--accent-on-dark);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
}

.card-description {
  font-size: 16px;
  color: var(--cream2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 24px;
}

.card-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.card-features li {
  font-size: 15px;
  color: var(--cream2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.card-features li::before {
  content: '—';
  color: var(--accent-on-dark);
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .services-pin { height: auto; }
  .services-sticky { position: static; height: auto; overflow: visible; }
  .services-top { padding: 90px 24px 0; }
  .services-deck { height: auto; pointer-events: auto; }
  .deck-tabs {
    position: static;
    left: auto; right: auto;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .deck-tab { opacity: 1 !important; transform: none !important; }
  .card-body {
    position: static !important;
    transform: none !important;
    inset: auto;
    bottom: auto;
    margin: 0 0 16px;
    flex-direction: column;
    gap: 28px;
  }
  .card-left {
    border-right: none;
    border-bottom: 1px solid var(--g2);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .card-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   WORK SECTION
═══════════════════════════════════════════════ */
#work {
  padding-block: 160px;
}

.work-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 32px;
}

.work-heading {
  font-family: var(--fd);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--cream);
}

.work-heading em {
  font-style: normal;
  color: var(--orange);
}

.work-note {
  font-size: 13px;
  color: var(--g-text);
  letter-spacing: 0.06em;
}

.portfolio-grid {
  margin-bottom: 16px;
}

.portfolio-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-card {
  border: 1px solid var(--g2);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--g1);
  cursor: pointer;
  transition: border-color var(--t-base), transform var(--t-base);
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
}

.portfolio-hero {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
}

.portfolio-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.portfolio-grid .portfolio-card.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.portfolio-grid .portfolio-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-grid .portfolio-card {
  transition: opacity 0.6s cubic-bezier(0.17, 0.55, 0.35, 1),
              transform 0.6s cubic-bezier(0.17, 0.55, 0.35, 1),
              border-color 0.3s;
}

.portfolio-grid .portfolio-hero {
  transition-delay: 0s;
}

.portfolio-carousel .portfolio-card:nth-child(1) {
  transition-delay: 0.12s;
}

.portfolio-carousel .portfolio-card:nth-child(2) {
  transition-delay: 0.24s;
}

.portfolio-carousel .portfolio-card:nth-child(3) {
  transition-delay: 0.36s;
}

.portfolio-carousel .portfolio-card:nth-child(4) {
  transition-delay: 0.48s;
}

.card-thumb {
  position: relative;
  width: 100%;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 1;
}

.card-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.17, 0.55, 0.35, 1);
}

.portfolio-card:hover .card-thumb-img {
  transform: scale(1.04);
}

.card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 232, 223, 0.5);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 18px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.portfolio-card:hover .play-btn {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.card-info {
  padding: 12px 16px;
  border-top: 1px solid var(--g2);
  background: var(--g1);
}

.card-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin-bottom: 4px;
}

.card-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════════════ */
#why-us {
  background: var(--cream);
  color: var(--black);
  padding-block: 120px;
}

.why-us-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-on-light);
  display: block;
  margin-bottom: 20px;
}

.why-us-heading {
  font-family: var(--fd);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--black);
  margin-bottom: 36px;
}

.why-us-heading em {
  font-style: normal;
  color: var(--orange);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}

.benefit-card {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.3s;
}

.benefit-card:hover {
  background: var(--hover-cream);
}

.benefit-icon {
  color: var(--accent-on-light);
  margin-bottom: 14px;
  height: 28px;
  display: flex;
  align-items: center;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-title {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--black);
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 16px;
  color: #5A5550;
  line-height: 1.6;
}

.why-us-bar {
  background: var(--black);
  border-radius: 2px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bar-text {
  font-size: 18px;
  color: var(--cream);
  line-height: 1.6;
  flex: 1;
}

.bar-text strong {
  font-weight: 600;
}

.bar-cta {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g-text);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════ */
#process {
  padding-block: 160px;
}

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
}

.process-heading {
  font-family: var(--fd);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--cream);
}

.process-heading em {
  font-style: normal;
  color: var(--orange);
}

.process-note {
  font-size: 16px;
  color: var(--g-text);
  max-width: 220px;
  line-height: 1.6;
  text-align: right;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(212, 71, 12, 0.15));
}

.step {
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--g2);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1;
}

.step-description {
  font-size: 16px;
  color: var(--g-text);
  line-height: 1.6;
  font-weight: 300;
}

.process-footer {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--g2);
  display: flex;
  gap: 48px;
  align-items: center;
}

.process-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-number {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.highlight-meta {
  flex: 1;
}

.highlight-label {
  font-size: 14px;
  color: var(--g-text);
  margin-top: 3px;
}

.process-description {
  font-size: 18px;
  color: var(--cream2);
  line-height: 1.7;
  max-width: 520px;
  flex: 1;
}

.process-description strong {
  color: var(--cream);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   BRAND PORTFOLIO (CASES) SECTION
═══════════════════════════════════════════════ */
#cases {
  padding-block: 160px;
}

.cases-heading {
  font-family: var(--fd);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 24px;
}

.cases-accent {
  color: var(--orange);
}

.cases-subtitle {
  font-size: 18px;
  color: var(--cream2);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 16px;
}

.cases-tagline {
  display: block;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-text);
  margin-bottom: 56px;
}

.cases-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.cases-row:last-child {
  margin-bottom: 0;
}

.case-item {
  flex: var(--ar, 1) 1 0;
  min-width: 0;
  position: relative;
  margin: 0;
  background: var(--g1);
  border: 1px solid var(--g2);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t-base), transform var(--t-base);
}

.case-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.case-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.17, 0.55, 0.35, 1);
}

.case-item:hover img {
  transform: scale(1.04);
}

.case-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 16px 14px;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.4;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.95) 0%, rgba(6, 6, 6, 0.88) 45%, rgba(6, 6, 6, 0.4) 75%, transparent 100%);
}

.case-cat {
  display: block;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin-bottom: 5px;
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
#contact {
  padding-block: 160px;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  display: block;
  margin-bottom: 24px;
}

.contact-heading {
  font-family: var(--fd);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 48px;
  max-width: 700px;
}

.contact-heading em {
  font-style: normal;
  color: var(--orange);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-method {
  border-bottom: 1px solid var(--g2);
  padding-bottom: 24px;
}

.method-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-text);
  margin-bottom: 8px;
}

.method-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
}

.method-value:hover {
  color: var(--accent-on-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream2);
  font-weight: 600;
}

.form-input,
.form-textarea {
  background: var(--g1);
  border: 1px solid #6B665F;
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--fb);
  font-size: 16px;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange);
  background: var(--hover-surface);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  background: var(--orange);
  color: var(--black);
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
  margin-top: 12px;
}

.form-submit:hover {
  background: var(--orange2);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--g1);
  border-top: 1px solid var(--g2);
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-text);
}

.footer-markets {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-market {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--g-text);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-market::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  section {
    padding: 100px 60px;
  }

  header {
    padding: 18px 60px;
  }

  footer {
    padding: 40px 60px;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }

  section {
    padding: 80px 24px;
  }

  #hero {
    min-height: auto;
  }

  #work,
  #why-us,
  #process,
  #cases,
  #contact {
    padding-block: 80px;
  }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  #services .deck-tabs {
    display: none;
  }

  .services-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 28px 24px 12px;
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-on-dark);
  }

  .deck-bodies {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding: 0 24px 16px;
    pointer-events: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .deck-bodies::-webkit-scrollbar {
    display: none;
  }

  .deck-bodies .card-body {
    flex: 0 0 calc(100vw - 64px);
    margin: 0;
    padding: 28px 24px;
    gap: 24px;
    border-radius: 16px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .portfolio-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-right: 24px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0 24px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .portfolio-carousel::-webkit-scrollbar {
    display: none;
  }

  .portfolio-carousel .portfolio-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-heading {
    font-size: clamp(36px, 10vw, 56px);
  }

  .marquee-strip {
    margin: 24px 0;
    width: 100%;
  }

  .services-heading,
  .process-heading,
  .cases-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(128px, 35vw, 190px);
    gap: 8px;
  }

  .cases-row {
    display: contents;
  }

  .cases-row .case-item {
    flex: none;
    min-width: 0;
  }

  .cases-row:first-child .case-item:first-child,
  .cases-row:last-child .case-item:first-child {
    grid-row: span 2;
  }

  .case-item img {
    height: 100%;
    object-fit: cover;
  }

  .cases-row:first-child .case-item:first-child img {
    object-position: 50% 43%;
  }

  .cases-row:last-child .case-item:first-child img {
    object-position: 50% 42%;
  }

  .case-item figcaption {
    padding: 28px 10px 9px;
    font-size: 11px;
    line-height: 1.3;
  }

  .case-cat {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .section-number {
    font-size: 140px;
    opacity: 0.015;
  }

  .logos-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px 10px;
    align-items: center;
  }

  .logo-box {
    aspect-ratio: auto;
    min-height: 78px;
    padding: 6px;
  }

  .logo-box:nth-child(1),
  .logo-box:nth-child(2) {
    grid-column: span 3;
    min-height: 112px;
  }

  .logo-box:nth-child(n+3) {
    grid-column: span 2;
    min-height: 78px;
  }

  .process-footer {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 16px;
  }

  #work,
  #why-us,
  #process,
  #cases,
  #contact {
    padding-block: 60px;
  }

  header {
    padding: 14px 16px;
  }

  .portfolio-carousel {
    padding-right: 16px;
    scroll-padding-inline: 0 16px;
  }

  .services-top,
  .work-top,
  .process-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-note,
  .process-note {
    text-align: left;
    max-width: 100%;
  }

  .marquee-strip {
    margin-top: 32px;
    padding: 12px 0;
  }

  .why-us-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════
   FOCUS VISIBILITY
═══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
.form-input:focus-visible,
.form-textarea:focus-visible {
  outline-offset: 0;
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-content { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ═══ Services dots (mobile swipe indicator) ═══ */
.services-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  padding: 24px 0 8px;
}

@media (max-width: 768px) {
  .services-dots {
    display: flex;
  }
}

.services-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g3);
  transition: background 0.3s ease;
  cursor: default;
}

.services-dot.active {
  background: var(--orange);
}

/* ═══ Form validation & loading ═══ */
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-submit.loading .btn-text {
  visibility: hidden;
}

.form-submit.loading .btn-spinner {
  display: inline-flex;
  align-items: center;
  position: absolute;
}

.btn-spinner {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-spinner svg {
  animation: spin 0.8s linear infinite;
}

.form-submit {
  position: relative;
}

.form-error {
  display: none;
  font-size: 13px;
  color: var(--orange);
  line-height: 1.4;
  margin-top: 4px;
}

.form-input.error {
  border-color: var(--orange);
}

.form-message {
  display: none;
  font-size: 15px;
  line-height: 1.6;
  padding: 16px 20px;
  border-radius: 2px;
  margin-top: 16px;
}

.form-message.success {
  display: block;
  background: rgba(212, 71, 12, 0.1);
  color: var(--accent-on-dark);
  border: 1px solid var(--orange);
}

.form-message.error {
  display: block;
  background: rgba(255, 90, 26, 0.1);
  color: var(--orange2);
  border: 1px solid var(--orange2);
}

/* ═══ Video lightbox ═══ */
.vlb {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vlb.open { opacity: 1; pointer-events: auto; }

.vlb-frame {
  width: min(92vw, 1200px);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.vlb-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.vlb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.vlb-close:hover { background: rgba(212, 71, 12, 0.3); border-color: var(--orange); transform: scale(1.05); }

body.lightbox-open { overflow: hidden; }

/* ═══ No-JS fallback ═══ */
noscript .reveal { opacity: 1 !important; transform: none !important; }
