/* ──────────────────────────────────────────────
   PURPLE I EVENTS HUB — Main Styles
   Bold Violet Editorial Direction
   v6 — Dark Full-Bleed Hero Redesign
   ────────────────────────────────────────────── */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--violet-light); border-radius: 3px; }

/* Focus */
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── TYPOGRAPHY ───────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--violet-light);
  flex-shrink: 0;
}

/* ── NAV ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 70px;
  background: rgba(91, 33, 182, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  transition: box-shadow var(--dur-base) var(--ease-out);
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.site-logo .logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--orange);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--dur-fast);
}

.nav-cta:hover { background: #ea580c; }

/* Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform var(--dur-base);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--violet-deep);
  padding: var(--sp-4) var(--gutter);
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: calc(var(--z-nav) - 1);
}

.nav-mobile.open { display: flex; }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--violet-deep);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background image — full bleed */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: saturate(0.5);
}

/* Gradient overlay for text readability */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(91,33,182,0.92) 0%,
    rgba(91,33,182,0.7) 45%,
    rgba(91,33,182,0.3) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--gutter) var(--sp-10);
  max-width: calc(var(--container) + var(--gutter) * 2);
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  transform: translateY(12px);
  animation: heroReveal 0.5s ease-out 0.15s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Title — 3 lines max */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--sp-5);
  max-width: 16ch;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.65s ease-out 0.25s forwards;
}

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

/* Tagline — single line max */
.hero-tagline {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0 0 var(--sp-8);
  max-width: 52ch;
  opacity: 0;
  transform: translateY(12px);
  animation: heroReveal 0.5s ease-out 0.4s forwards;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: heroReveal 0.5s ease-out 0.55s forwards;
}

/* Primary — orange fill */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--dur-fast), transform var(--dur-fast);
  border-radius: 2px;
}

.btn-primary:hover { background: #ea580c; transform: translateY(-1px); }

/* Outline — white border */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  border-radius: 2px;
}

.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Bottom stats strip */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  opacity: 0;
  animation: heroReveal 0.5s ease-out 0.7s forwards;
}

.hero-stat {
  padding: var(--sp-4) var(--gutter);
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-number .accent { color: var(--orange); }

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ── ABOUT SECTION ──────────────────────── */
.section-about {
  padding: var(--sp-20) 0;
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.about-label-col {
  position: sticky;
  top: 90px;
}

.about-label {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--rule);
  user-select: none;
  white-space: nowrap;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}

.about-content p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: var(--sp-4);
}

.about-services {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 2px solid var(--ink);
}

.service-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}

.service-item-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--violet);
  width: 20px;
  flex-shrink: 0;
}

/* ── NETWORK SECTION ──────────────────── */
.section-network {
  padding: var(--sp-20) 0;
  background: var(--violet-deep);
  color: #fff;
}

.network-header {
  margin-bottom: var(--sp-10);
}

.network-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 600px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.network-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  border-radius: 2px;
}

.network-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.network-stat-value .accent { color: var(--orange); }

.network-stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-image {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.network-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.75;
}

/* ── CLIENTS SECTION ────────────────────── */
.section-clients {
  padding: var(--sp-20) 0;
  background: var(--bg);
}

.clients-header {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 2px solid var(--ink);
}

.clients-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.clients-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 4px;
  border: 1px solid var(--rule);
  background: var(--stone);
  cursor: grab;
}

.clients-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.clients-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--stone);
}
.clients-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--violet);
  border-radius: 3px;
}

.clients-scroll-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 320px;
}

.client-card {
  aspect-ratio: 3/2;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  transition: border-color var(--dur-base), transform var(--dur-base);
  overflow: hidden;
}

.client-card:hover {
  border-color: var(--violet-light);
  transform: translateY(-2px);
}

.client-card img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter var(--dur-base);
}

.client-card:hover img {
  filter: grayscale(0) opacity(1);
}

/* ── GALLERY SECTION ──────────────────── */
.section-gallery {
  padding: var(--sp-20) 0;
  background: var(--bg-alt);
}

.gallery-header {
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-6);
  border-bottom: 2px solid var(--ink);
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: var(--sp-3);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--rule);
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.85);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.gallery-item-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(91,33,182,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-3);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.gallery-item:hover .gallery-item-label { opacity: 1; }

.gallery-item-label span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

/* Tall portrait items span 2 rows */
.gallery-item.tall { grid-row: span 2; }

/* ── CONTACT SECTION ──────────────────── */
.section-contact {
  padding: var(--sp-20) 0;
  background: var(--ink);
  color: #fff;
}

.contact-header {
  margin-bottom: var(--sp-10);
}

.contact-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.contact-header p {
  color: rgba(255,255,255,0.6);
  max-width: 48ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.contact-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: var(--text-base);
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-value a:hover { color: var(--orange); }

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-8);
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-4);
}

.form-field.full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 0.75rem 1rem;
  border-radius: 2px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  width: 100%;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }

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

.form-select option { background: var(--ink); color: #fff; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast), transform var(--dur-fast);
  margin-top: var(--sp-2);
}

.form-submit:hover { background: #ea580c; transform: translateY(-1px); }

.form-success {
  display: none;
  padding: var(--sp-6);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 2px;
  color: #4ade80;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  background: var(--violet-deep);
  color: rgba(255,255,255,0.55);
  padding: var(--sp-12) 0 var(--sp-6);
}

.footer-top {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.footer-logo .logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-4);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--dur-fast), color var(--dur-fast);
  border-radius: 2px;
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}

.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { padding-top: 85px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-scroll-hint { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-label-col { display: none; }
  .about-label { font-size: clamp(3rem, 8vw, 5rem); white-space: normal; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .hero-bg { display: none; }
  .hero { background: var(--violet-deep); }
  .hero-content { padding: 80px var(--gutter) var(--sp-8); }
  .hero-title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero-tagline { font-size: clamp(0.9rem, 3.5vw, 1rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-number { font-size: 1.5rem; }

  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }
}
