/* ============================================================
   sections.css : per-section layout
   ============================================================ */

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(120px, 18vh, 220px) var(--shell) clamp(40px, 8vh, 90px); overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }

/* hero banner portrait — right side, darkened + brand-tinted, behind canvas */
.hero__photo { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__photo-img {
  position: absolute; inset: 0;
  background: url("../assets/cinema-portrait.jpg") right center / cover no-repeat;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
  opacity: 0.42;
}
.hero__photo-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #0A0A0A 0%, #0A0A0A 26%, rgba(10,10,10,0.55) 58%, rgba(10,10,10,0.12) 100%),
    radial-gradient(60% 80% at 88% 12%, rgba(196,255,61,0.10), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow { margin-bottom: clamp(24px, 3.5vw, 40px); }
.hero h1 { font-size: clamp(48px, 9vw, 142px); max-width: 16ch; }
.hero__sub { margin-top: clamp(26px, 3.5vw, 40px); max-width: 60ch; font-size: clamp(15px, 1.35vw, 19px); color: #d4d4d0; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(30px, 4vw, 44px); }
.hero__stats { display: flex; flex-wrap: wrap; gap: 0; margin-top: clamp(46px, 7vw, 88px);
  border-top: 1px solid var(--hairline); }
.hero__stat { flex: 1 1 0; min-width: 130px; padding: 26px clamp(14px, 2vw, 30px) 0 0; }
.hero__stat b { display: block; font-family: "Archivo", sans-serif; font-weight: 900; font-size: clamp(30px, 3.4vw, 50px);
  letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.hero__stat span { display: block; margin-top: 8px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ===== ABOUT ===== */
.about__lead { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em;
  line-height: 1.02; font-size: clamp(26px, 3.6vw, 54px); max-width: 22ch; }
.about__lead em { font-style: normal; color: var(--lime); }
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline); margin-top: clamp(50px, 7vw, 90px); }
.about__card { background: var(--bg); padding: clamp(30px, 3vw, 48px); min-height: 230px; display: flex; flex-direction: column; transition: background 0.4s var(--ease); }
.about__card:hover { background: var(--card-hover); }
.about__card .ac-num { font-family: "Archivo", sans-serif; font-weight: 900; color: var(--lime); font-size: 20px; letter-spacing: -0.02em; }
.about__card h3 { font-size: clamp(20px, 1.9vw, 26px); margin: auto 0 12px; font-weight: 600; }
.about__card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ===== SERVICES ===== */
.services__list { border-top: 1px solid var(--hairline); }
.srow { position: relative; display: grid; grid-template-columns: clamp(40px, 4vw, 70px) 1fr auto;
  gap: clamp(18px, 3vw, 50px); align-items: center; padding: clamp(26px, 3.4vw, 50px) clamp(14px, 2vw, 36px);
  border-bottom: 1px solid var(--hairline); overflow: hidden; transition: background 0.4s var(--ease); }
.srow::before { content: ""; position: absolute; inset: 0; background: rgba(196,255,61,0.05); transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s var(--ease); z-index: 0; }
.srow:hover::before { transform: scaleY(1); }
.srow > * { position: relative; z-index: 1; }
.srow__idx { font-family: "Archivo", sans-serif; font-weight: 900; color: var(--muted); font-size: clamp(14px, 1.2vw, 18px); letter-spacing: 0; transition: color 0.4s var(--ease); }
.srow:hover .srow__idx { color: var(--lime); }
.srow__title { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em;
  font-size: clamp(28px, 4.4vw, 64px); line-height: 1; transition: color 0.4s var(--ease); }
.srow:hover .srow__title { color: var(--lime); }
.srow__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; max-width: 360px; }
.srow__tags span { font-size: 12px; color: var(--muted); border: 1px solid var(--hairline); border-radius: 100px; padding: 6px 13px; white-space: nowrap; transition: border-color 0.4s var(--ease), color 0.4s var(--ease); }
.srow:hover .srow__tags span { border-color: var(--hairline-strong); color: var(--text); }

/* ===== WHY MAGNET ===== */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.why__card { background: var(--panel); border: 1px solid var(--hairline); border-radius: 4px;
  padding: clamp(28px, 2.6vw, 40px); min-height: 240px; display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease); will-change: transform; }
.why__card:hover { transform: translateY(-10px); border-color: var(--hairline-strong); background: var(--card-hover); }
.why__card .wc-ico { width: 44px; height: 44px; border: 1px solid var(--hairline-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--lime); margin-bottom: auto; }
.why__card h3 { font-size: clamp(19px, 1.7vw, 23px); margin: 26px 0 10px; font-weight: 600; }
.why__card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ===== WORK ===== */
.work__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.work__ghost { position: absolute; top: -7vw; left: -1vw; z-index: 0; }
.work__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 28px); margin-top: clamp(30px, 4vw, 50px); }
.work__card { position: relative; border-radius: 8px; overflow: hidden; border: 1px solid var(--hairline);
  background: var(--panel); padding: clamp(30px, 3vw, 50px); min-height: clamp(300px, 32vw, 440px);
  display: flex; flex-direction: column; justify-content: flex-end; transform-style: preserve-3d; will-change: transform; isolation: isolate; }
.work__card .wk-glow { position: absolute; inset: 0; z-index: 0; opacity: 0.5; transition: opacity 0.5s var(--ease); }
.work__card:hover .wk-glow { opacity: 0.85; }
.work__card .wk-top { position: absolute; top: clamp(26px, 3vw, 40px); left: clamp(30px, 3vw, 50px); right: clamp(30px, 3vw, 50px);
  display: flex; justify-content: space-between; align-items: flex-start; z-index: 2; transform: translateZ(40px); }
.work__card .wk-cat { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); opacity: 0.7; }
.work__card .wk-arrow { color: var(--text); transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.work__card:hover .wk-arrow { transform: translate(4px, -4px); color: var(--lime); }
.work__card .wk-body { position: relative; z-index: 2; transform: translateZ(30px); }
.work__card .wk-name { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em;
  font-size: clamp(30px, 3.4vw, 52px); line-height: 0.96; }
.work__card .wk-result { font-size: 14px; color: #d4d4d0; margin-top: 12px; max-width: 40ch; line-height: 1.5; }
.work__card .wk-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.work__card .wk-pills span { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text);
  background: rgba(255,255,255,0.08); border-radius: 100px; padding: 6px 12px; backdrop-filter: blur(4px); }
.work__cta { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 64px); }

/* ===== INDUSTRIES ===== */
.ind__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.ind__cell { background: var(--bg); padding: clamp(26px, 2.6vw, 40px); min-height: 150px; display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.ind__cell:hover { background: var(--lime); color: #0A0A0A; }
.ind__cell .ic-n { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; transition: color 0.4s var(--ease); }
.ind__cell:hover .ic-n { color: rgba(10,10,10,0.6); }
.ind__cell h3 { font-size: clamp(17px, 1.5vw, 22px); font-weight: 600; line-height: 1.15; }
.ind__cell--next { background: var(--panel); }
.ind__cell--next h3 { color: var(--lime); }
.ind__cell--next:hover h3 { color: #0A0A0A; }

/* ===== STATS BAND (lime) ===== */
.stats { background: var(--lime); color: #0A0A0A; padding: clamp(60px, 8vw, 110px) var(--shell); }
.stats__wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stats__item { border-left: 2px solid rgba(10,10,10,0.25); padding-left: clamp(16px, 2vw, 28px); }
.stats__item b { display: block; font-family: "Archivo", sans-serif; font-weight: 900; letter-spacing: -0.04em; line-height: 0.9;
  font-size: clamp(46px, 6.5vw, 104px); }
.stats__item span { display: block; margin-top: 12px; font-size: clamp(12px, 1vw, 15px); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== PROCESS ===== */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 30px); position: relative; }
.pstep { position: relative; padding-top: 40px; border-top: 2px solid var(--hairline); transition: border-color 0.5s var(--ease); }
.pstep.in { border-color: var(--lime); }
.pstep .ps-dot { position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--hairline); transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.pstep.in .ps-dot { background: var(--lime); box-shadow: 0 0 18px rgba(196,255,61,0.6); }
.pstep .ps-num { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 13px; letter-spacing: 0.1em; color: var(--muted); }
.pstep h3 { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em;
  font-size: clamp(28px, 3vw, 46px); margin: 10px 0 16px; }
.pstep p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ===== TEAM ===== */
.team { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.team__lead { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em;
  line-height: 1.02; font-size: clamp(28px, 4vw, 60px); }
.team__lead em { font-style: normal; color: var(--lime); }
.team__roles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.team__roles span { font-size: 13px; color: var(--muted); border: 1px solid var(--hairline); border-radius: 100px; padding: 9px 16px; }
.team__join { background: var(--panel); border: 1px solid var(--hairline); border-radius: 8px; padding: clamp(34px, 3vw, 50px); }
.team__join h3 { font-family: "Archivo", sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em;
  font-size: clamp(26px, 2.6vw, 40px); line-height: 1; margin-bottom: 14px; }
.team__join p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 26px; }

/* ===== CONTACT ===== */
.contact { position: relative; }
.contact h2 { font-size: clamp(40px, 7vw, 110px); max-width: 14ch; }
.contact__cta { margin-top: clamp(34px, 4vw, 50px); }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline); margin-top: clamp(54px, 7vw, 96px); }
.contact__cell { background: var(--bg); padding: clamp(26px, 2.6vw, 40px); min-height: 150px; display: flex; flex-direction: column; transition: background 0.4s var(--ease); }
.contact__cell:hover { background: var(--card-hover); }
.contact__cell .cc-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); margin-bottom: auto; }
.contact__cell .cc-val { font-size: clamp(15px, 1.4vw, 19px); color: var(--text); margin-top: 24px; line-height: 1.45; }
.contact__cell:hover .cc-val { color: var(--lime); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--hairline); padding: clamp(46px, 6vw, 80px) var(--shell); }
.footer__wrap { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between; }
.footer__logo img { height: 46px; width: auto; }
.footer__social { display: flex; flex-wrap: wrap; gap: 12px; }
.footer__social a { width: 52px; height: 52px; border: 1px solid var(--hairline); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text); transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease); }
.footer__social a:hover { background: var(--lime); color: #0A0A0A; border-color: var(--lime); }
.footer__copy { width: 100%; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--hairline);
  font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .ind__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__wrap { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .team { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .why__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .ind__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .srow { grid-template-columns: auto 1fr; }
  .srow__tags { display: none; }
  .hero__stat { flex: 1 1 45%; }
}
