/* ============================================================
   ALPHA CREATORS MEDIA — Homepage Stylesheet
   Miami video production & restaurant marketing agency
   ============================================================
   Palette: black (dominant) / white (text) / red (accent only)
   Fonts:
     --font-title    -> Helvetica Bold, lowercase, -1px letter-spacing.
                        Used for all headings (h1-h3) and titles.
     --font-body     -> Helvetica Regular, for body copy.
     --font-display  -> Extenda (loaded, NOT in use site-wide right now).
                        Reserved for specific placements per client
                        direction — do not apply broadly without
                        explicit instruction.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/* ---- Brand fonts (client-supplied files in assets/fonts/) ---- */
@font-face {
  font-family: 'Extenda Display';
  src: url('../assets/fonts/Extenda-40-Hecto-trial.ttf') format('truetype');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Local';
  src: url('../assets/fonts/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Local';
  src: url('../assets/fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  /* ---- Color tokens (black / white / red ONLY) ---- */
  --black: #060606;
  --black-deep: #000000;
  --black-soft: #0e0e0f;
  --white: #f6f6f4;
  --white-dim: rgba(246, 246, 244, 0.66);
  --white-faint: rgba(246, 246, 244, 0.38);
  --red: #ea1a2c;
  --red-bright: #ff2436;
  --red-dim: rgba(234, 26, 44, 0.16);
  --line: rgba(246, 246, 244, 0.12);
  --line-soft: rgba(246, 246, 244, 0.07);
  --glass: rgba(246, 246, 244, 0.045);
  --glass-strong: rgba(246, 246, 244, 0.08);

  /* ---- Typography ---- */
  --font-display: 'Extenda Display', 'Archivo Black', 'Arial Black', sans-serif;
  --font-title: 'Helvetica Local', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Helvetica Local', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* ---- Spacing / rhythm ---- */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 18px;
  --radius-sm: 10px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-med: 400ms;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], .service-card[id] { scroll-margin-top: 84px; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; padding: 0; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
}

/* subtle cinematic grain, decorative only */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,0.9) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

::selection { background: var(--red); color: var(--white); }

/* focus visibility (accessibility) */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--red);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(234, 26, 44, 0.7);
  transition: width var(--dur-fast) var(--ease-out), height var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.cursor-ring.is-active {
  width: 60px; height: 60px;
  background: var(--red-dim);
  border-color: var(--red);
}
html.has-custom-cursor, html.has-custom-cursor a, html.has-custom-cursor button {
  cursor: none;
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  html.has-custom-cursor, html.has-custom-cursor a, html.has-custom-cursor button { cursor: auto; }
}

/* ============ TYPE HELPERS ============ */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--red);
  display: inline-block;
}

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: lowercase;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--white);
}
h4, .h4 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
p { color: var(--white-dim); }

.h1 { font-size: clamp(2.6rem, 7vw, 6.4rem); }
.h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
.h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.section-head p { margin-top: 1rem; font-size: 1.05rem; max-width: 38rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head.center p { margin-inline: auto; }

.text-red { color: var(--red); }

/* ============ BUTTONS ============ */
.btn {
  --btn-fg: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(234, 26, 44, 0.5);
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 8px 30px -6px rgba(234, 26, 44, 0.65);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--white);
  background: var(--glass-strong);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.72rem 1.3rem; font-size: 0.78rem; }

/* ============ GLASS SURFACE ============ */
.glass {
  background: var(--glass);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius);
}

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--red);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-family: var(--font-title);
  font-weight: 700;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.15rem 0;
  transition: background var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out),
              backdrop-filter var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(6, 6, 6, 0.62);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.8rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}
.logo-placeholder {
  width: 168px;
  height: 40px;
  min-height: 0;
  border-radius: 8px;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  object-fit: contain;
}

.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease-out);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---- Nav dropdowns (Services / Work) ---- */
.nav-item.has-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0.3rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-dropdown-toggle:hover, .nav-item.has-dropdown:hover .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown-toggle .chevron { width: 13px; height: 13px; transition: transform var(--dur-fast) var(--ease-out); }

.nav-dropdown-panel {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 0.6rem;
  gap: 0.15rem;
}
.nav-dropdown-panel a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--white-dim);
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav-dropdown-panel a:hover { color: var(--white); background: rgba(234,26,44,0.1); }

@media (min-width: 861px) {
  /* top:100% with no gap keeps the hoverable box continuous from button to
     panel — a real gap here creates a dead zone where :hover drops before
     the cursor reaches the panel, closing it prematurely. The visual offset
     comes from padding-top instead, which stays inside the hit area. */
  .nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    padding-top: calc(0.6rem + 14px);
    background: rgba(10,10,11,0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
    z-index: 20;
  }
  .nav-item.has-dropdown:hover .nav-dropdown-panel,
  .nav-item.has-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-item.has-dropdown:hover .chevron,
  .nav-item.has-dropdown:focus-within .chevron { transform: rotate(180deg); }
}

.header-actions { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 490; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--white); transition: transform var(--dur-fast), opacity var(--dur-fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(1.5rem, 4vw, 2.75rem);
}

/* Video player — contained card, fixed 16:9, nothing overlaid except the unmute control */
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: repeating-linear-gradient(135deg, #141416 0 2px, #0a0a0b 2px 26px);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-unmute {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 6, 0.55);
  border: 1px solid rgba(246, 246, 244, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.video-unmute:hover { background: var(--red); border-color: var(--red); transform: scale(1.06); }
.video-unmute svg { width: 20px; height: 20px; }
.video-unmute .icon-unmuted { display: none; }
.video-unmute[aria-pressed="true"] .icon-muted { display: none; }
.video-unmute[aria-pressed="true"] .icon-unmuted { display: block; }

/* Text block — separate section under the video, centered */
.hero-content {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero-content .container { position: relative; z-index: 1; text-align: center; }
.hero-glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 800px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(234,26,44,0.2) 0%, rgba(234,26,44,0) 70%);
  pointer-events: none;
}

.hero-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.hero-badge svg { width: 13px; height: 13px; color: var(--red); }

.hero h1 { max-width: 18ch; margin-inline: auto; }
.hero h1 span { color: var(--red); }

.hero-sub {
  max-width: 42rem;
  margin: 1.6rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: clamp(2rem, 5vw, 3.5rem) auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  width: fit-content;
  max-width: 100%;
  text-align: center;
}
.hero-stats .num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--white);
}
.hero-stats .label {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-top: 0.3rem;
}

/* ============ MARQUEE ============ */
.marquee-band {
  background: var(--red);
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black-deep);
  padding-inline: 1.4rem;
  white-space: nowrap;
}
.marquee-track span::after { content: '\2726'; font-size: 0.8rem; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; overflow-x: auto; }
}

/* ============ REVEAL ANIMATION ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
}

/* ============ SECTION LAYOUT ============ */
section { position: relative; padding-block: var(--section-y); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ============ GALLERY COLLAGE ============ */
.gallery-collage { overflow: hidden; }
.gallery-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 90s linear infinite;
}
.gallery-item {
  width: clamp(160px, 22vw, 260px);
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item .media-placeholder { border-radius: var(--radius); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; overflow-x: auto; }
}

/* ============ WHY US ============ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pillar-card {
  padding: 2.1rem 1.7rem;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out),
              background var(--dur-med) var(--ease-out);
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234,26,44,0.4);
  background: rgba(234,26,44,0.06);
}
.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(234,26,44,0.4);
  background: rgba(234,26,44,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.4rem;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-card h4 { font-size: 1.12rem; text-transform: uppercase; margin-bottom: 0.7rem; }
.pillar-card p { font-size: 0.92rem; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.22); }
.service-media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.service-media img,
.service-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-body { padding: 1.6rem 1.6rem 1.8rem; }
.service-tag {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: block;
}
.service-body h4 { font-size: 1.18rem; text-transform: uppercase; margin-bottom: 0.55rem; }
.service-body p { font-size: 0.92rem; }
.service-card.featured { grid-column: span 2; }
.service-card.featured .service-media { aspect-ratio: 21 / 9; }

/* ============ MEDIA PLACEHOLDER (photos/videos/logos) ============ */
.media-placeholder {
  position: relative;
  width: 100%; height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(246,246,244,0.045) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #131315 0%, #08080a 100%);
  overflow: hidden;
}
.media-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(246,246,244,0.09);
}
/* JS-driven media (js/work.js): real file fades in on load, placeholder fades out */
.media-placeholder > video,
.media-placeholder > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.media-placeholder.is-loaded > video,
.media-placeholder.is-loaded > img { opacity: 1; }
.media-placeholder.is-loaded .ph-badge { opacity: 0; pointer-events: none; }
.ph-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-faint);
  text-align: center;
  padding: 1rem;
}
.ph-badge .ph-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(234,26,44,0.5);
  display: flex; align-items: center; justify-content: center;
  background: rgba(234,26,44,0.08);
}
.ph-badge .ph-icon svg { width: 18px; height: 18px; color: var(--red); }
.ph-badge strong {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.ph-badge small {
  font-family: var(--font-title);
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  color: var(--white-faint);
  word-break: break-all;
}
.media-placeholder.sm { min-height: 90px; }
.media-placeholder.sm .ph-badge .ph-icon { width: 30px; height: 30px; }
.media-placeholder.sm .ph-badge .ph-icon svg { width: 13px; height: 13px; }
.media-placeholder.sm .ph-badge small { display: none; }

/* ============ STATS ============ */
.stats-band { background: var(--black-deep); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: clamp(1.5rem, 4vw, 2.6rem) 1.2rem;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}
.stat-cell:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
}
.stat-num .accent { color: var(--red); }
.stat-label {
  margin-top: 0.6rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* ============ PORTFOLIO ============ */
.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: all var(--dur-fast) var(--ease-out);
}
.filter-btn:hover { color: var(--white); border-color: var(--white); }
.filter-btn.is-active { background: var(--red); border-color: var(--red); color: var(--white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.portfolio-item.is-hidden { display: none; }
.portfolio-item:nth-child(3n+2) { aspect-ratio: 3 / 4; margin-top: 2rem; }
.portfolio-item .media-placeholder { border-radius: var(--radius); }
.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-cat {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.portfolio-title { font-family: var(--font-title); font-weight: 700; color: var(--white); font-size: 0.98rem; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(246,246,244,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(246,246,244,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), background var(--dur-fast);
}
.portfolio-item:hover .play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.play-btn:hover { background: var(--red); border-color: var(--red); }
.play-btn svg { width: 18px; height: 18px; color: var(--white); margin-left: 2px; }

/* ============ PROCESS ============ */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}
.process-step { position: relative; padding-top: 2.2rem; }
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--line);
}
.process-step::after {
  content: '';
  position: absolute;
  top: -3.5px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(234,26,44,0.18);
}
.process-num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 1rem;
}
.process-step h4 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.9rem; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.testimonial-card { padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1.4rem; }
.testimonial-card .stars { display: flex; gap: 0.25rem; color: var(--red); }
.testimonial-card .stars svg { width: 15px; height: 15px; }
.testimonial-card blockquote {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--white);
  line-height: 1.55;
}
.testimonial-person { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.avatar-ph { width: 44px; height: 44px; min-height: 0; border-radius: 50%; flex-shrink: 0; }
.avatar-ph .ph-icon { width: 30px; height: 30px; }
.avatar-ph .ph-icon svg { width: 13px; height: 13px; }
.person-name { font-family: var(--font-title); font-weight: 700; font-size: 0.88rem; color: var(--white); }
.person-role { font-size: 0.78rem; color: var(--white-faint); }

.logo-strip {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.logo-strip-track {
  display: flex;
  width: max-content;
  gap: 3.2rem;
  align-items: center;
  animation: marquee 26s linear infinite;
}
.client-logo {
  width: 76px;
  height: 76px;
  min-height: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .logo-strip-track { animation: none; overflow-x: auto; }
}

/* ============ WORK DETAIL PAGE ============ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  transition: color var(--dur-fast) var(--ease-out);
}
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--red); }

.work-detail-head { max-width: 40rem; margin-bottom: clamp(2rem, 5vw, 3rem); }

.work-detail-media {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.work-detail-body {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 1.5rem;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
.work-detail-desc p { font-size: 1.02rem; max-width: 42rem; margin-top: 1rem; }
.work-detail-side {
  padding: 1.8rem;
  align-self: start;
}
.work-detail-side h4 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.work-detail-side p { font-size: 0.9rem; margin-bottom: 1.4rem; }
.work-detail-side .btn { width: 100%; margin-bottom: 0.8rem; }
.work-detail-side .btn:last-child { margin-bottom: 0; }

.work-detail-more h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 1.4rem;
}
.work-detail-more .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
.work-detail-more .portfolio-item { aspect-ratio: 3 / 4; margin-top: 0 !important; }

@media (max-width: 860px) {
  .work-detail-body { grid-template-columns: 1fr; }
  .work-detail-more .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ FAQ ============ */
.faq-list { max-width: 52rem; }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0.2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast), background var(--dur-fast);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}
.faq-icon::before { width: 11px; height: 1.4px; }
.faq-icon::after { width: 1.4px; height: 11px; }
.faq-item[open] .faq-icon { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.faq-answer { padding: 0 0.2rem 1.7rem; max-width: 42rem; }
.faq-answer p { font-size: 0.95rem; }

/* ============ FINAL CTA ============ */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black-deep);
  border-top: 1px solid var(--line-soft);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-glow {
  position: absolute;
  z-index: 1;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 800px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(234,26,44,0.24) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 34rem; margin: 1.4rem auto 0; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }

/* ============ CONTACT FORM ============ */
.contact-form {
  max-width: 54rem;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 3rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.2rem; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white-dim);
}
.form-field .optional { font-weight: 400; color: var(--white-faint); text-transform: none; }

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(246,246,244,0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--white-faint); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(234,26,44,0.06);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6f6f4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.6rem;
}
.form-field select option { background: var(--black-soft); color: var(--white); }
.contact-form.was-submitted .form-field input:invalid,
.contact-form.was-submitted .form-field select:invalid { border-color: rgba(234,26,44,0.6); }

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.form-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white-faint);
}
.form-note svg { width: 16px; height: 16px; color: var(--red); }
.form-status { margin-top: 1.2rem; font-size: 0.9rem; color: var(--white-dim); min-height: 1.2em; }
.form-status.is-error { color: var(--red); }

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand p { margin-top: 1.1rem; max-width: 26rem; font-size: 0.94rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.6rem; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }

.footer-col h5 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
.footer-col a, .footer-col address {
  font-size: 0.92rem;
  color: var(--white-dim);
  font-style: normal;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--red); }
.footer-col address div { margin-bottom: 0.75rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.6rem;
  font-size: 0.78rem;
  color: var(--white-faint);
}
.footer-bottom a:hover { color: var(--red); }
.back-to-top {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.back-to-top:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.back-to-top svg { width: 15px; height: 15px; }

.footer-wordmark {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: lowercase;
  font-size: clamp(3.5rem, 15vw, 12rem);
  line-height: 0.8;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246,246,244,0.14);
  letter-spacing: -2px;
  padding: clamp(1.5rem, 5vw, 3rem) 0 0.5rem;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px -4px rgba(234,26,44,0.55);
  transition: transform var(--dur-fast) var(--ease-out);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(234,26,44,0.5);
  animation: pulseRing 2.4s ease-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; color: var(--white); }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  80%, 100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3) { border-left: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line-soft); padding-bottom: 1.8rem; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary.btn-sm {
    padding: 0.6rem 0.85rem;
    font-size: 0.68rem;
    gap: 0;
    flex-shrink: 0;
  }
  .header-actions .btn-primary.btn-sm svg { display: none; }
  /* backdrop-filter on the header creates a new containing block, which would
     trap the fixed-position mobile nav inside the header's own height instead
     of the full viewport — disable it while the menu is open. */
  html.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
}

/* ============ MOBILE NAV — icon grid + liquid-glass app folders ============ */
.mobile-nav-overlay { display: none; }

@media (max-width: 860px) {
  /* Always rendered (not display:none) so opacity/transform can actually
     animate — a display:none<->block toggle jumps instantly and reads as a
     glitch. Opens like a tray dropping down from the header, closes with a
     quicker fade+rise. */
  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 480;
    background: rgba(8,8,9,0.6);
    backdrop-filter: blur(34px) saturate(160%);
    -webkit-backdrop-filter: blur(34px) saturate(160%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transform-origin: top center;
    transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
  }
  html.nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out), visibility 0s linear 0s;
  }

  .mobile-nav-grid {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: center;
    justify-items: center;
    gap: 2.1rem 0.5rem;
    padding: 5rem 1.5rem 2rem;
  }
  .mnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    text-align: center;
  }
  .mnav-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(246,246,244,0.07);
    border: 1px solid rgba(246,246,244,0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  }
  .mnav-ic svg { width: 22px; height: 22px; }
  .mnav-item:active .mnav-ic { transform: scale(0.92); background: rgba(234,26,44,0.16); border-color: rgba(234,26,44,0.4); }
  .mnav-label {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.66rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white-dim);
    line-height: 1.25;
  }

  /* App-folder popup (Services / Work) */
  .nav-folder {
    position: fixed;
    z-index: 495;
    left: 50%;
    top: 50%;
    width: min(320px, 84vw);
    max-height: 72vh;
    transform: translate(-50%, -50%) scale(0.86);
    background: rgba(32,32,34,0.68);
    border: 1px solid rgba(246,246,244,0.18);
    border-radius: 26px;
    backdrop-filter: blur(36px) saturate(180%);
    -webkit-backdrop-filter: blur(36px) saturate(180%);
    box-shadow: 0 30px 60px -16px rgba(0,0,0,0.55);
    padding: 1.4rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 260ms cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1),
                visibility 0s linear 260ms;
  }
  .nav-folder.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 260ms cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1),
                visibility 0s linear 0s;
  }
  .nav-folder-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
  }
  .nav-folder-head h4 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-faint);
  }
  .nav-folder-close {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(246,246,244,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
  }
  .nav-folder-close svg { width: 13px; height: 13px; }
  .nav-folder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem 0.4rem;
  }
  .nav-folder-grid a { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
  .nav-folder-grid .mnav-ic { width: 44px; height: 44px; border-radius: 13px; }
  .nav-folder-grid .mnav-ic svg { width: 18px; height: 18px; }
  .nav-folder-grid .mnav-label { font-size: 0.6rem; }
}

@media (max-width: 720px) {
  .pillars-grid { grid-template-columns: 1fr; }
  /* Services: Restaurant Marketing full-width, then pairs of 2, Event Coverage full-width alone */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
  .service-card.featured .service-media { aspect-ratio: 4/3; }
  .services-grid > .service-card:last-child { grid-column: span 2; }
  .service-body h4 { font-size: 1rem; }
  .service-body p { font-size: 0.8rem; line-height: 1.5; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item:nth-child(3n+2) { margin-top: 0; }
  .portfolio-item:nth-child(2n) { margin-top: 1.6rem; }
  .process-list { grid-template-columns: 1fr; row-gap: 2.4rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-left: none !important; border-bottom: 1px solid var(--line-soft); padding-bottom: 1.6rem !important; }
  .services-grid { gap: 0.8rem; }
  .service-body { padding: 1.1rem 1.1rem 1.3rem; }
  .service-body p { font-size: 0.76rem; }
  .portfolio-grid { gap: 0.7rem; }
}
