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

:root {
  --dark: #0d0d0d;
  --dark-2: #161616;
  --light: #faf9f6;
  --warm: #f3f0eb;
  --text: #111;
  --muted: #888;
  --border: #e5e1d9;
  --white: #fff;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    width: 8px; height: 8px;
    background: #fff;
    mix-blend-mode: difference;
    transition: width 0.25s, height 0.25s;
  }
  .cursor-dot.is-hover { width: 14px; height: 14px; }

  .cursor-ring {
    display: block;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255,255,255,0.5);
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
  }
  .cursor-ring.is-hover { width: 64px; height: 64px; opacity: 0.4; }
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 48px;
  transition: background 0.35s, box-shadow 0.35s;
}

#header.scrolled {
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.hd-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hd-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.hd-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.hd-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.hd-nav a:hover { color: #fff; }

.hd-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}

.hd-contact:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 48px 140px;
  overflow: hidden;
}

/* Film grain overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: -80px;
  width: calc(100% + 160px);
  height: calc(100% + 160px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
  animation: grainShift 0.22s steps(2) infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Light sweep */
#hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    108deg,
    transparent 28%,
    rgba(255,255,255,0.018) 50%,
    transparent 72%
  );
  animation: heroSweep 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-22px, 12px); }
  50%  { transform: translate(16px, -20px); }
  75%  { transform: translate(-10px, 22px); }
}

@keyframes heroSweep {
  0%    { transform: translateX(0%); }
  45%   { transform: translateX(360%); }
  100%  { transform: translateX(360%); }
}

/* Dot grid bg */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: -18px -18px;
  will-change: transform;
}

/* Cursor glow */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* Scan line */
.hero-scan {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent);
  animation: scanDown 5s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes scanDown {
  from { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  to   { top: 100%; opacity: 0; }
}

/* 3D Orb */
.hero-orb {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-54%);
  width: 580px;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 68%);
  animation: orbPulse 5s ease-in-out infinite;
}

.orb-sphere {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.12) 0%, rgba(100,100,100,0.06) 38%, transparent 64%),
    radial-gradient(circle at 68% 72%, rgba(0,0,0,0.5) 0%, transparent 60%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset -18px -18px 40px rgba(0,0,0,0.5), inset 8px 8px 24px rgba(255,255,255,0.03);
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}

.or1 { width: 310px; height: 310px; animation: spinA 10s linear infinite; transform-origin: center; }
.or2 { width: 420px; height: 420px; animation: spinB 16s linear infinite; transform-origin: center; border-color: rgba(255,255,255,0.04); }
.or3 { width: 540px; height: 540px; animation: spinC 22s linear infinite; transform-origin: center; border-color: rgba(255,255,255,0.025); }

@keyframes spinA {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to   { transform: rotateX(70deg) rotateZ(360deg); }
}
@keyframes spinB {
  from { transform: rotateX(58deg) rotateZ(40deg); }
  to   { transform: rotateX(58deg) rotateZ(400deg); }
}
@keyframes spinC {
  from { transform: rotateX(72deg) rotateZ(-15deg); }
  to   { transform: rotateX(72deg) rotateZ(345deg); }
}

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

/* Hero copy */
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero heading */
.hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
  padding-top: 8px;
}

.h1-line {
  display: block;
  font-size: clamp(68px, 9.5vw, 132px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  overflow: hidden;
}

.h1-line--stroke {
  -webkit-text-stroke: 1px rgba(255,255,255,0.28);
  color: transparent;
}

.h1-word {
  display: inline-block;
}

.h1-word span {
  display: inline-block;
  animation: letterUp 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--d, 0) * 0.09s + 0.28s);
}

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

/* Hero sub */
.hero-sub {
  display: flex;
  align-items: center;
  gap: 52px;
  max-width: 820px;
}

.hero-sub > p {
  color: rgba(255,255,255,0.5);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  flex: 1;
  animation: subReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

@keyframes subReveal {
  from { opacity: 0; filter: blur(10px); transform: translateY(14px); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  animation: subReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both;
}

.btn-fill {
  padding: 13px 26px;
  background: #fff;
  color: #111;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: transform 0.25s, opacity 0.25s;
}
.btn-fill:hover { transform: translateY(-2px); opacity: 0.88; }

.btn-ghost {
  padding: 13px 26px;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 56px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: subReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.35s both;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
}

.stat-item strong {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-date {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
}

.stat-unit {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-left: 3px;
}

.stat-item p {
  width: 100%;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.07);
  margin: 0 44px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  animation: wheelSpin 2s ease-in-out infinite;
}

@keyframes wheelSpin {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%       { transform: translateY(7px); opacity: 0.15; }
}

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker {
  background: #fff;
  padding: 17px 0;
  overflow: hidden;
  border-top: 1px solid #ede9e1;
  border-bottom: 1px solid #ede9e1;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: tickerRoll 28s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.ticker-track b {
  font-size: 9px;
  font-weight: 400;
  color: #bbb;
}

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

/* ═══════════════════════════════════════════
   SECTIONS SHARED
═══════════════════════════════════════════ */
section { background: var(--light); }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-hd { margin-bottom: 56px; }

.section-hd h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.section-hd--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about { padding: 120px 0; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left h2 {
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 36px;
}

.text-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.5; }

.about-right { padding-top: 32px; }

.about-lead {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.about-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services {
  padding: 120px 0;
  background: var(--warm);
}

.svc-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.svc-card {
  background: var(--white);
  padding: 42px 28px 46px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--text);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover { background: #faf8f4; }
.svc-card:hover::after { width: 100%; }

.svc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 28px;
}

.svc-icon {
  width: 40px;
  height: 40px;
  color: var(--text);
  margin-bottom: 22px;
}
.svc-icon svg { width: 100%; height: 100%; }

.svc-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════ */
#portfolio { padding: 96px 0; }
#portfolio .wrap { margin-bottom: 32px; }

.folio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
}

.folio-item {
  position: relative;
  overflow: hidden;
  background: var(--warm);
  border-radius: 8px;
  height: 260px;
}

.folio-img {
  position: relative;
  width: 100%;
  height: calc(100% - 38px);
  overflow: hidden;
}

.fi-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.folio-item:hover .fi-bg { transform: scale(1.06); }

/* Portfolio image placeholders */
.fi-bg-1 { background: linear-gradient(145deg, #c9b09a 0%, #9a7158 45%, #7a5341 100%); }
.fi-bg-2 { background: linear-gradient(145deg, #2c3e50 0%, #1a2535 40%, #0f1723 100%); }
.fi-bg-3 { background: linear-gradient(145deg, #8aad8a 0%, #5c7d5c 45%, #3d5e3d 100%); }
.fi-bg-4 { background: linear-gradient(145deg, #b8a898 0%, #8c7a6e 45%, #6b5c52 100%); }
.fi-bg-5 { background: linear-gradient(145deg, #3d3070 0%, #261e4f 45%, #14112e 100%); }
.fi-bg-6 { background: linear-gradient(145deg, #d4aa84 0%, #b8864e 45%, #9b6a30 100%); }

/* Hover overlay */
.fi-cover {
  position: absolute;
  inset: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.38s ease;
}

.folio-item:hover .fi-cover { opacity: 1; }

.fi-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.fi-cover h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.fi-cover p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Portfolio meta */
.folio-meta {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.folio-meta span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════ */
#clients {
  padding: 120px 0;
  background: var(--warm);
}

#clients .wrap { margin-bottom: 56px; }

.clients-wrap {
  overflow: hidden;
  padding: 8px 0 16px;
}

.clients-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

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

.cl-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cl-logo {
  width: 172px;
  height: 96px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.cl-card:hover .cl-logo {
  border-color: #ccc;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.cl-logo img {
  width: 132px;
  max-height: 54px;
  object-fit: contain;
}

.cl-logo span {
  font-size: 11px;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cl-card > p {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════
   TEAM
═══════════════════════════════════════════ */
#team { padding: 120px 0; }

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

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.tc-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--warm);
  padding: 18px;
}

.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .tc-img img { transform: scale(1.02); }

.tc-body { padding: 28px 32px 32px; }

.tc-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--warm);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.tc-body h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.tc-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
#cta {
  background: var(--dark-2);
  overflow: hidden;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.cta-content h2 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: transform 0.25s, opacity 0.25s;
}
.cta-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

.cta-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 40%, transparent 68%);
  border: 1px solid rgba(255,255,255,0.05);
  animation: ctaOrbSpin 20s linear infinite;
  box-shadow: 0 0 80px rgba(255,255,255,0.02), inset 0 0 60px rgba(255,255,255,0.02);
}

@keyframes ctaOrbSpin {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.04); }
  to   { transform: rotate(360deg) scale(1); }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
  background: var(--dark);
  padding: 0 48px 28px;
}

.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ft-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
}

.ft-nav {
  display: flex;
  gap: 32px;
}

.ft-nav a {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.ft-nav a:hover { color: rgba(255,255,255,0.7); }

.ft-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.ft-info p {
  color: rgba(255,255,255,0.28);
  font-size: 12.5px;
  line-height: 1.7;
}

.ft-copy {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-orb { right: -120px; width: 480px; height: 480px; }
  .or1 { width: 260px; height: 260px; }
  .or2 { width: 360px; height: 360px; }
  .or3 { width: 460px; height: 460px; }
  .orb-sphere { width: 170px; height: 170px; }

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

  .folio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(920px, calc(100% - 64px));
    gap: 12px;
  }
  .folio-item { height: 240px; }

  .cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 96px 48px; }
  .cta-visual { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  #header { padding: 0 24px; }
  .hd-nav { display: none; }

  #hero { padding: 96px 24px 120px; }
  .hero-orb { display: none; }

  .h1-line { font-size: clamp(52px, 14vw, 80px); }

  .hero-sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

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

  .hero-stats { flex-direction: row; gap: 0; margin-top: 48px; }
  .stat-div { margin: 0 24px; }
  .stat-item strong { font-size: 32px; }

  .wrap { padding: 0 24px; }

  #about { padding: 80px 0; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-right { padding-top: 0; }

  #services { padding: 80px 0; }
  .svc-list { grid-template-columns: 1fr; gap: 2px; }

  #portfolio { padding: 80px 0; }
  #portfolio .wrap { margin-bottom: 28px; }

  .folio-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 48px);
    padding: 0;
  }

  .folio-item { height: 220px; }
  .folio-img { height: calc(100% - 38px); }
  .fi-cover { opacity: 1; }

  #clients { padding: 80px 0; }

  #team { padding: 80px 0; }
  .team-grid { grid-template-columns: 1fr; }

  .cta-inner { padding: 80px 24px; }

  #footer { padding: 0 24px 24px; }
  .ft-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ft-nav { gap: 20px; flex-wrap: wrap; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .section-hd--row { flex-direction: column; align-items: flex-start; }
  .section-sub { max-width: 100%; }
}

@media (max-width: 480px) {
  .h1-line { font-size: clamp(42px, 13.5vw, 60px); }
  .hero-label { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-stats { padding-top: 28px; }
  .stat-div { margin: 0 16px; height: 40px; }
  .stat-item strong { font-size: 28px; }
  .stat-unit { font-size: 16px; }

  .about-left h2 { font-size: clamp(38px, 11vw, 56px); }

  .svc-card { padding: 36px 24px 40px; }

  .folio-item { height: 200px; }

  .cta-content h2 { font-size: clamp(36px, 10vw, 52px); }

  .ft-info p { font-size: 11.5px; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-sub > p,
  .hero-actions,
  .hero-stats { animation: none; opacity: 1; filter: none; transform: none; }
}
