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

:root {
  --bg:          #071A2D;   /* Midnight Blue */
  --surface:     #1C1C1C;   /* Charcoal */
  --surface2:    #0d2440;   /* Midnight Blue lighter */
  --border:      rgba(239,230,210,0.1);  /* Bone tinted */
  --text:        #EFE6D2;   /* Bone */
  --text-muted:  rgba(239,230,210,0.55);
  --text-dim:    rgba(239,230,210,0.28);
  --accent:      #B08A45;   /* Brass */
  --accent-glow: rgba(176,138,69,0.22);
  --accent-dark: #8A6A2F;   /* Dark Brass */
  --accent-light:#C9A870;   /* Light Brass */
  --radius:      4px;
  --nav-h:       72px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── Container ───────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Section helpers ─────────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: 60px;
}

/* ── Reveal animations ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: opacity var(--transition);
}
.nav__logo:hover img { opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 20px 40px 32px;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  padding: 14px 0;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--accent); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* YouTube cover technique */
.hero__video-wrap #ytPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;   /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  pointer-events: none;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(176,138,69,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #071A2D 0%, #0a2240 50%, #071A2D 100%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0.95) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow { display: none; }

.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 52px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  max-width: 640px;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero__content .btn {
  opacity: 0;
  animation: fadeUp 0.9s 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero__scroll span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Ticker ──────────────────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.ticker__inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker__inner span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ticker__dot { color: var(--accent) !important; }

/* ── Work / Video Grid ───────────────────────────────────────────────────── */
.work {
  padding: 120px 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 60px;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.filter-btn.active {
  color: var(--bg);
  background: var(--text);
  border-color: var(--text);
}

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

/* ── Video Card ──────────────────────────────────────────────────────────── */
.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.video-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-card:nth-child(2) { transition-delay: 0.07s; }
.video-card:nth-child(3) { transition-delay: 0.14s; }
.video-card:nth-child(4) { transition-delay: 0.0s; }
.video-card:nth-child(5) { transition-delay: 0.07s; }
.video-card:nth-child(6) { transition-delay: 0.14s; }

.video-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border);
}

.video-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.video-card:hover .video-card__thumb {
  transform: scale(1.05);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
}

.video-card:hover .video-card__overlay { opacity: 1; }

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-card__play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.video-card:hover .video-card__info {
  opacity: 1;
  transform: translateY(0);
}

.video-card__category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.video-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.video-card__placeholder-text {
  text-align: center;
  padding: 20px;
}

.video-card__placeholder-text .placeholder-icon {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.3;
}

.video-card__placeholder-text p {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.video-card__placeholder-text strong {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.video-card__placeholder-text .badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
}

/* ── About ───────────────────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about__text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat {
  background: var(--surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.stat:hover { border-color: var(--accent); }

.stat__number {
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(176,138,69,0.05) 0%, transparent 60%);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact__sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact__email {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 32px;
  transition: opacity var(--transition);
}
.contact__email:hover { opacity: 0.7; }

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input::placeholder { color: var(--text-dim); }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  min-height: 20px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-dim);
}

.footer__admin {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer__admin:hover { color: var(--accent); }

/* ── Modal ───────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}

.modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal.open .modal__inner { transform: scale(1); }

.modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 32px;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  transition: color var(--transition);
  z-index: 2;
}
.modal__close:hover { color: #fff; }

.modal__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.modal__info {
  padding: 20px 0 0;
}

.modal__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.modal__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal__desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .contact__inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

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

  .work, .about, .contact { padding: 80px 0; }

  .about__inner { gap: 48px; }
  .contact__inner { gap: 48px; }

  .stat-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .stat { padding: 28px; }
  .stat__number { font-size: 38px; }

  .footer__inner { flex-direction: column; text-align: center; gap: 12px; }

  .modal { padding: 16px; }
  .modal__close { top: -44px; }
}

@media (max-width: 480px) {
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 11px; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════════════════ */

/* ── Cursor glow ─────────────────────────────────────────────────────────── */
.svc-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,138,69,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
  z-index: 0;
}

.services {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

/* ── Intro ───────────────────────────────────────────────────────────────── */
.svc-intro {
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.svc-intro__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
  color: rgba(255,255,255,0.92);
}

.br-desktop { display: block; }

/* ── Body layout ─────────────────────────────────────────────────────────── */
.svc-body {
  display: flex;
  position: relative;
  z-index: 1;
}

/* ── Sticky sidebar ──────────────────────────────────────────────────────── */
.svc-nav {
  position: sticky;
  top: var(--nav-h);
  align-self: flex-start;
  width: 220px;
  flex-shrink: 0;
  padding: 40px 0 40px 40px;
  height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.svc-nav__track {
  width: 1px;
  height: 100%;
  background: var(--border);
  position: relative;
  flex-shrink: 0;
}

.svc-nav__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: var(--accent);
  transition: height 0.1s linear;
}

.svc-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 0;
}

.svc-nav__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  transition: color 0.25s;
  white-space: nowrap;
}

.svc-nav__btn:hover { color: var(--text-muted); }

.svc-nav__btn.active {
  color: var(--text);
}

.svc-nav__num {
  font-size: 10px;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--accent);
  letter-spacing: 0.1em;
  transition: color 0.25s;
  min-width: 18px;
}

/* ── Steps container ─────────────────────────────────────────────────────── */
.svc-steps {
  flex: 1;
  min-width: 0;
}

/* ── Individual step ─────────────────────────────────────────────────────── */
.svc-step {
  padding: 80px 60px 80px 40px;
  border-top: 1px solid var(--border);
  transition: background 0.4s;
}

.svc-step:hover {
  background: rgba(255,255,255,0.015);
}

.svc-step__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.svc-step__inner--media {
  grid-template-columns: 1fr 420px;
}

/* ── Step content ────────────────────────────────────────────────────────── */
.svc-step__num-wrap {
  margin-bottom: 24px;
  overflow: hidden;
}

.svc-step__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176,138,69,0.4);
  display: block;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1),
              -webkit-text-stroke-color 0.4s;
}

.svc-step.in-view .svc-step__num {
  transform: translateY(0);
  -webkit-text-stroke-color: rgba(176,138,69,0.75);
}

.svc-step__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.65s 0.1s cubic-bezier(0.4,0,0.2,1),
              opacity 0.65s 0.1s;
}

.svc-step.in-view .svc-step__title { transform: translateY(0); opacity: 1; }

.svc-step__sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  font-style: italic;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.65s 0.18s cubic-bezier(0.4,0,0.2,1),
              opacity 0.65s 0.18s;
}

.svc-step.in-view .svc-step__sub { transform: translateY(0); opacity: 1; }

.svc-step__body {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.65s 0.26s cubic-bezier(0.4,0,0.2,1),
              opacity 0.65s 0.26s;
}

.svc-step.in-view .svc-step__body { transform: translateY(0); opacity: 1; }

/* ── HOW THIS WORKS accordion ────────────────────────────────────────────── */
.svc-step__how {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition),
              background var(--transition);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.65s 0.34s cubic-bezier(0.4,0,0.2,1),
              opacity 0.65s 0.34s,
              border-color 0.2s, color 0.2s, background 0.2s;
}

.svc-step.in-view .svc-step__how { transform: translateY(0); opacity: 1; }

.svc-step__how:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(176,138,69,0.05);
}

.svc-step__how.open { border-color: var(--accent); color: var(--accent); }

.svc-step__how-icon {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.svc-step__how.open .svc-step__how-icon { transform: rotate(45deg); }

.svc-step__accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}

.svc-step__accordion.open { max-height: 400px; }

.svc-step__acc-list {
  list-style: none;
  padding: 20px 20px 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(176,138,69,0.03);
}

.svc-step__acc-list li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.acc-num {
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── Visual / abstract ───────────────────────────────────────────────────── */
.svc-step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Abstract rings (Creative Direction) */
.svc-abstract {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-abstract__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(176,138,69,0.2);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 70%; height: 70%; border-color: rgba(176,138,69,0.35); animation-delay: 0.5s; }
.ring-3 { width: 40%; height: 40%; border-color: rgba(176,138,69,0.55); animation-delay: 1s; }

.svc-abstract__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent-glow);
  animation: dotPulse 2s ease-in-out infinite;
}

/* Grid abstract (Pre-production) */
.svc-abstract--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 220px;
  height: auto;
  border-radius: 0;
}

.svc-grid-item {
  aspect-ratio: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  animation: gridPop 3s var(--d, 0s) ease-in-out infinite;
}

.svc-step:hover .svc-grid-item {
  background: rgba(176,138,69,0.07);
  border-color: rgba(176,138,69,0.28);
}

/* Waveform (Post-production) */
.svc-waveform {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 120px;
  width: 100%;
  max-width: 300px;
}

.svc-waveform__bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(to top, var(--accent), rgba(176,138,69,0.28));
  border-radius: 2px;
  transform-origin: bottom;
  animation: waveAnim 2s var(--d, 0s) ease-in-out infinite;
}

/* ── Photo visual ────────────────────────────────────────────────────────── */
.svc-step__photo-wrap {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface2);
}

.svc-step__photo-wrap--missing {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
}

.svc-step__photo-wrap--missing::after {
  content: 'Drop image into public/images/';
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  padding: 20px;
}

.svc-step__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.svc-step:hover .svc-step__photo { transform: scale(1.04); }

.svc-step__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176,138,69,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Service animations ──────────────────────────────────────────────────── */
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--accent); }
  50% { transform: scale(1.3); box-shadow: 0 0 40px var(--accent), 0 0 80px var(--accent-glow); }
}
@keyframes gridPop {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.85); }
}
@keyframes waveAnim {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ── Responsive services ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-step__inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-step__inner--media { grid-template-columns: 1fr; }
  .svc-step__visual { display: none; }
}

@media (max-width: 900px) {
  .svc-nav { display: none; }
  .svc-step { padding: 60px 24px; }
  .br-desktop { display: none; }
  .svc-intro { padding: 80px 0 60px; }
  .svc-body { padding: 0; }
}

@media (max-width: 600px) {
  .svc-step__num { font-size: 56px; }
  .svc-step { padding: 48px 20px; }
  .svc-intro .container { padding: 0 20px; }
}

/* ── Category intro ──────────────────────────────────────────────────────── */
.category-intro {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease;
  opacity: 0;
  margin-bottom: 0;
}

.category-intro.visible {
  max-height: 120px;
  opacity: 1;
  margin-bottom: 40px;
}

.category-intro__text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 680px;
  padding: 0 0 0 2px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
