/* ═══════════════════════════════════════════════════════════════════════════════
   AGG ARTS ARENA — Editorial Design System
   public_html/assets/css/main.css
   Palette: Black / Purple / Cyan — DAWGZ-approved identity
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  /* ─ Surface hierarchy (deep black editorial) */
  --surface-0:   #050505;   /* page base — true black */
  --surface-1:   #0D0D0D;   /* nav / footer / section-alt */
  --surface-2:   #111111;   /* cards */
  --surface-3:   #1a1a1a;   /* elevated card / hover */
  --surface-4:   #222222;   /* input bg */

  /* ─ Brand accent — purple primary */
  --accent:       #8B5CF6;
  --accent-dark:  #6D28D9;
  --accent-dim:   rgba(139,92,246,0.12);
  --accent-mid:   rgba(139,92,246,0.40);

  /* ─ Cyan secondary accent */
  --cyan:         #06B6D4;
  --cyan-dark:    #0891B2;
  --cyan-dim:     rgba(6,182,212,0.12);
  --cyan-mid:     rgba(6,182,212,0.40);

  /* ─ Brand gradient */
  --grad-primary: linear-gradient(135deg, #8B5CF6, #06B6D4);
  --grad-subtle:  linear-gradient(135deg, rgba(139,92,246,0.15), rgba(6,182,212,0.15));

  /* ─ Text hierarchy */
  --text-1:      #F5F5F5;   /* headlines */
  --text-2:      #888888;   /* body */
  --text-3:      #444444;   /* muted/label */
  --text-on-accent: #FFFFFF;
  --text-on-dark:   #F5F5F5;
  --text-on-dark-muted: #888888;

  /* ─ Borders */
  --border-subtle:  rgba(255,255,255,0.07);
  --border-medium:  rgba(255,255,255,0.13);
  --border-accent:  rgba(139,92,246,0.35);
  --border-cyan:    rgba(6,182,212,0.35);

  /* ─ Status colours */
  --green:   #4ade80;
  --amber:   #fbbf24;
  --rose:    #f87171;
  --blue:    #60a5fa;

  /* ─ Typography */
  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* ─ Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;

  /* ─ Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-full: 9999px;

  /* ─ Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ─ Legacy compat — referenced by older/page-level styles */
  --ink:            var(--surface-0);
  --carbon:         var(--surface-1);
  --slate:          var(--surface-2);
  --panel:          var(--surface-3);
  --border:         var(--border-subtle);
  --violet:         var(--accent);
  --emerald:        var(--cyan);
  --text-primary:   var(--text-1);
  --text-secondary: var(--text-2);
  --text-muted:     var(--text-3);
  --radius:         var(--r-md);
  --radius-lg:      var(--r-lg);
  --radius-full:    var(--r-full);
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--surface-0);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-main { flex: 1 0 auto; }
.footer { flex-shrink: 0; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ──────────────────────────────────────────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: rgba(139,92,246,0.4) transparent; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.4); border-radius: 99px; }

/* ── Utility ────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--sp-5); }
.container-wide { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--sp-5); }
.accent-text { color: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Animations ─────────────────────────────────────────────────────────────── */
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer   { from { background-position: -200% 0; } to { background-position: 200% 0; } }

.fade-in  { animation: fadeInUp 0.65s var(--ease) both; }
.delay-1  { animation-delay: 0.12s; }
.delay-2  { animation-delay: 0.24s; }
.delay-3  { animation-delay: 0.36s; }
.delay-4  { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Navigation — Enterprise Header ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  display: flex; align-items: center;
  background: rgba(5,5,5,0.80);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s var(--ease), border-color 0.35s, height 0.35s;
}
.nav.scrolled {
  background: rgba(5,5,5,0.97);
  border-color: rgba(139,92,246,0.18);
  height: 60px;
}
.nav.nav--open { background: var(--surface-1); }

.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: var(--sp-6);
}

/* Logo */
.nav__logo {
  display: flex; flex-direction: row;
  align-items: center; gap: 12px;
  line-height: 1; flex-shrink: 0;
}
.nav__logo-img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.2em;
  color: var(--text-on-dark); line-height: 1;
}
.nav__logo-name .grad { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav__logo-sub {
  font-family: var(--font-mono); font-size: 0.48rem;
  letter-spacing: 0.35em; color: var(--text-3);
  text-transform: uppercase;
}

/* Desktop links */
.nav__links {
  display: flex; align-items: center;
  gap: 0; flex: 1; justify-content: center;
}
.nav__link {
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text-2); padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  position: relative; white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px; height: 1px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.22s var(--ease);
  transform-origin: left;
}
.nav__link:hover { color: var(--text-1); }
.nav__link.active { color: var(--text-1); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

/* Has-dropdown parent */
.nav__item--dropdown { position: relative; }
.nav__link--dropdown-toggle::before {
  content: '';
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav__item--dropdown:hover .nav__link--dropdown-toggle::before,
.nav__item--dropdown[data-open] .nav__link--dropdown-toggle::before { transform: translateY(-50%) rotate(180deg); }

/* Dropdown panel */
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--accent);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(139,92,246,0.08);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
  z-index: 200;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown[data-open] .nav__dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav__dropdown-item:last-child { border-bottom: none; border-radius: 0 0 var(--r-md) var(--r-md); }
.nav__dropdown-item:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
.nav__dropdown-item:hover { color: var(--accent); background: var(--accent-dim); }
.nav__dropdown-item svg { opacity: 0.6; flex-shrink: 0; }

/* CTA group */
.nav__cta-wrap {
  display: flex; align-items: center;
  gap: var(--sp-2); flex-shrink: 0;
}
.nav__portal-link {
  font-family: var(--font-mono); font-size: 0.63rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-2); padding: 7px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav__portal-link:hover { color: var(--cyan); border-color: var(--border-cyan); }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 7px;
  background: var(--surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  cursor: pointer; flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-on-dark); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 998;
  background: var(--surface-0);
  flex-direction: column;
  padding: var(--sp-6) var(--sp-5) var(--sp-8);
  gap: 0; overflow-y: auto;
  border-top: 1px solid rgba(139,92,246,0.2);
}
.nav__mobile.open { display: flex; }

.nav__mobile-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__mobile-brand {
  font-family: var(--font-display); font-size: 1.1rem;
  letter-spacing: 0.2em; color: var(--text-1);
}
.nav__mobile-brand .grad {
  background: var(--grad-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.nav__mobile-meta {
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.25em; color: var(--text-3);
  text-transform: uppercase;
}

.nav__mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.9rem;
  letter-spacing: 0.08em; color: var(--text-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
  position: relative;
}
.nav__mobile-link:hover, .nav__mobile-link.active {
  color: var(--text-1);
}
.nav__mobile-link.active::before {
  content: '';
  position: absolute; left: -16px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 24px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.nav__mobile-link svg { opacity: 0.4; flex-shrink: 0; }

.nav__mobile-cta-group {
  display: flex; flex-direction: column; gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.nav__mobile-cta {
  display: block; text-align: center;
  padding: 15px var(--sp-6);
  background: var(--grad-primary);
  color: #FFFFFF;
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--r-sm); font-weight: 700;
  transition: opacity 0.2s;
}
.nav__mobile-cta:hover { opacity: 0.9; }
.nav__mobile-cta--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-subtle);
}
.nav__mobile-cta--ghost:hover { border-color: var(--border-accent); color: var(--text-1); }

.nav__mobile-footer {
  margin-top: auto; padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
}
.nav__mobile-footer-text {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3); text-align: center;
}

/* Mobile backdrop */
.nav__mobile-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 997;
  background: rgba(5,5,5,0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.nav__mobile-backdrop.open { display: block; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 13px 28px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
}
.btn-primary {
  background: var(--grad-primary);
  color: var(--text-on-accent);
  border-color: transparent;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(139,92,246,0.35); }

.btn-secondary {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-medium);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--text-1); }

.btn-sm  { padding: 9px 18px; font-size: 0.68rem; min-height: 36px; }
.btn-lg  { padding: 16px 40px; font-size: 0.82rem; min-height: 54px; }
.btn-icon { padding: 10px; min-height: 40px; min-width: 40px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ── Ticker / Marquee ─────────────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--surface-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}
.ticker__inner {
  display: flex; gap: var(--sp-8);
  animation: tickerMove 36s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker:hover .ticker__inner { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--text-3);
  text-transform: uppercase;
}
.ticker__item::before { content: '—'; margin-right: var(--sp-3); color: var(--accent); opacity: 0.6; }

/* ── Section Layouts ─────────────────────────────────────────────────────────── */
.section    { padding: var(--sp-9) 0; }
.section-sm { padding: var(--sp-7) 0; }
.section-alt { background: var(--surface-1); }

.section__header { margin-bottom: var(--sp-7); max-width: 680px; }
.section__header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section__header.centered .section__sub { margin-left: auto; margin-right: auto; }
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  display: flex; align-items: center; gap: var(--sp-3);
}
.section__eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--accent); flex-shrink: 0; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
  color: var(--text-1);
  line-height: 1.05;
}
.section__sub {
  margin-top: var(--sp-4);
  font-size: 1rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Cards ────────────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.card-body { padding: var(--sp-6); }
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--text-1);
  margin-bottom: var(--sp-2);
}
.card-text { color: var(--text-2); font-size: 0.9rem; line-height: 1.65; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero__bg-image {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) saturate(0.8);
}
.hero__bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(5,5,5,0.92) 0%, rgba(13,8,30,0.65) 55%, rgba(6,182,212,0.12) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: var(--sp-9) 0;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-3);
}
.hero__eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--cyan); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-5);
}
.hero__title .line { display: block; }
.hero__title .line-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-on-dark-muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: var(--sp-7);
}
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.hero__scroll {
  position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.22em;
  color: var(--text-on-dark-muted); text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.hero__scroll svg { opacity: 0.5; }

/* ── Services — Image-led ────────────────────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid var(--border-subtle);
}
.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }
.service-row__media {
  overflow: hidden; position: relative;
}
.service-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-row:hover .service-row__media img { transform: scale(1.04); }
.service-row__content {
  padding: var(--sp-8) var(--sp-8);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface-1);
}
.service-row__num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border-medium);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.service-row__category {
  font-family: var(--font-mono);
  font-size: 0.64rem; letter-spacing: 0.25em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--text-1);
  line-height: 1.05;
  margin-bottom: var(--sp-4);
}
.service-row__desc {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.service-row__types {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.service-row__type-tag {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-medium);
  border-radius: var(--r-full);
  color: var(--text-2);
}
.service-row__price {
  font-family: var(--font-mono);
  font-size: 0.8rem; color: var(--accent);
  margin-bottom: var(--sp-5);
}
.service-row__actions { display: flex; gap: var(--sp-3); }

/* ── Services card grid (overview) ──────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); }
.service-card { background: var(--surface-1); position: relative; overflow: hidden; }
.service-card__media { aspect-ratio: 16/10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: var(--sp-5); }
.service-card__cat {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-2);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.05em;
  color: var(--text-1); margin-bottom: var(--sp-3);
}
.service-card__desc { color: var(--text-2); font-size: 0.88rem; line-height: 1.65; }
.service-card__footer {
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.service-card__price { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-2); }
.service-card__price span { color: var(--accent); font-size: 0.95rem; }
.service-card__badge {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 8px;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: var(--r-full);
}

/* ── Portfolio / Masonry ─────────────────────────────────────────────────────── */
.portfolio-masonry { columns: 3 260px; gap: var(--sp-3); }
.portfolio-item {
  break-inside: avoid;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface-2);
}
.portfolio-item img {
  width: 100%; display: block;
  transition: transform 0.5s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.92) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-4);
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__title {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.06em;
  color: var(--text-on-dark); margin-bottom: 2px;
}
.portfolio-item__cat {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan);
}

/* ── Creators Grid ───────────────────────────────────────────────────────────── */
.creators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--sp-5); }
.creator-card { overflow: hidden; background: var(--surface-2); border: 1px solid var(--border-subtle); border-radius: var(--r-md); }
.creator-card__photo { aspect-ratio: 4/5; overflow: hidden; }
.creator-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.creator-card:hover .creator-card__photo img { transform: scale(1.05); }
.creator-card__info { padding: var(--sp-4) var(--sp-5); }
.creator-card__name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.06em; color: var(--text-1); }
.creator-card__role { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-top: 3px; }
.creator-card__bio  { font-size: 0.85rem; color: var(--text-2); margin-top: var(--sp-3); line-height: 1.65; }

/* ── Process Steps ───────────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--border-subtle); border-radius: var(--r-md); overflow: hidden; }
.process-step {
  padding: var(--sp-6) var(--sp-5);
  border-right: 1px solid var(--border-subtle);
  background: var(--surface-1);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem; line-height: 1;
  color: var(--border-medium);
  margin-bottom: var(--sp-4);
}
.process-step__title { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: var(--sp-2); }
.process-step__text  { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; }

/* ── CTA Section ─────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--surface-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.cta-section__inner {
  padding: var(--sp-9) 0;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: var(--sp-7);
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  color: var(--text-1);
  line-height: 1.05;
}
.cta-section__sub { font-size: 0.95rem; color: var(--text-2); margin-top: var(--sp-3); max-width: 480px; line-height: 1.7; }
.cta-section__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; flex-shrink: 0; }
.cta-section__line {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%; opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L400 400 M100 0 L400 300 M200 0 L400 200' stroke='white' stroke-width='1'/%3E%3C/svg%3E") center/cover;
}

/* ── Page Header ─────────────────────────────────────────────────────────────── */
.page-header {
  padding: 130px 0 72px;
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-subtle);
}
.page-header__label {
  font-family: var(--font-mono); font-size: 0.64rem;
  letter-spacing: 0.28em; color: var(--accent);
  text-transform: uppercase; margin-bottom: var(--sp-3);
  display: flex; align-items: center; gap: var(--sp-3);
}
.page-header__label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1.0;
  color: var(--text-1);
}
.page-header__sub {
  font-size: 1rem; color: var(--text-2);
  max-width: 540px; margin-top: var(--sp-4);
  line-height: 1.75;
}

/* ── Filter Tabs ─────────────────────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-6); }
.filter-tab {
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2);
}
.form-label .req { color: var(--accent); margin-left: 2px; }
.form-control {
  background: var(--surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-1);
  padding: 13px 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  min-height: 48px;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.form-control::placeholder { color: var(--text-3); }
textarea.form-control { resize: vertical; min-height: 130px; padding-top: 13px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a54' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.form-error { color: var(--rose); font-size: 0.78rem; margin-top: 4px; }

/* ── Alerts ──────────────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--r-sm); margin-bottom: var(--sp-4); font-size: 0.9rem; display: flex; align-items: flex-start; gap: var(--sp-3); }
.alert-success { background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.25); color: var(--green); }
.alert-error   { background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.25); color: var(--rose); }
.alert-info    { background: var(--accent-dim); border: 1px solid var(--border-accent); color: var(--accent); }

/* ── Badge / Status ──────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-full);
}
.badge-green   { background: rgba(74,222,128,0.12); color: var(--green); border: 1px solid rgba(74,222,128,0.25); }
.badge-amber   { background: rgba(251,191,36,0.12); color: var(--amber); border: 1px solid rgba(251,191,36,0.25); }
.badge-rose    { background: rgba(248,113,113,0.12); color: var(--rose); border: 1px solid rgba(248,113,113,0.25); }
.badge-blue    { background: rgba(96,165,250,0.12); color: var(--blue); border: 1px solid rgba(96,165,250,0.25); }
.badge-muted   { background: var(--surface-3); color: var(--text-2); border: 1px solid var(--border-subtle); }
.badge-accent  { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border-accent); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface-0);
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-8) 0 var(--sp-6);
}
.footer__grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--sp-8); margin-bottom: var(--sp-7); }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.18em; color: var(--text-1);
}
.footer__brand-name span { color: var(--accent); }
.footer__brand-tagline {
  font-family: var(--font-mono); font-size: 0.52rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-3); margin-top: 4px;
}
.footer__brand-desc { font-size: 0.85rem; color: var(--text-3); margin-top: var(--sp-4); line-height: 1.75; max-width: 280px; }
.footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer__social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer__col-title {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: var(--sp-4);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link { font-size: 0.85rem; color: var(--text-3); transition: color 0.2s; }
.footer__link:hover { color: var(--text-1); }
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap;
}
.footer__copy { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--text-3); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: 0.78rem; color: var(--text-3); transition: color 0.2s; }
.footer__legal a:hover { color: var(--text-1); }

/* ── Divider ─────────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border-subtle); margin: var(--sp-7) 0; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3) { border-right: none; }
  .process-step:nth-child(4) { border-top: 1px solid var(--border-subtle); }
  .cta-section__inner { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr 1fr; min-height: 340px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta-wrap { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero__sub { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .service-row { grid-template-columns: 1fr; direction: ltr !important; }
  .service-row__media { aspect-ratio: 16/9; min-height: unset; }
  .service-row__content { padding: var(--sp-6); }

  .portfolio-masonry { columns: 2 140px; }
  .creators-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .process-step:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .form-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: var(--sp-7) 0; }
  .page-header { padding: 100px 0 var(--sp-7); }
}

@media (max-width: 480px) {
  .portfolio-masonry { columns: 1; }
  .creators-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .section { padding: var(--sp-6) 0; }
}

@media (min-width: 769px) {
  .nav__mobile { display: none !important; }
}
