/* =====================================================================
   REEL HOUSE — Premium Video & Motion Production Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the whole look by editing the CSS variables in
   :root below. Swap --accent for your primary color, adjust --bg /
   --surface to match, and update --font-head / --font-body plus the
   Google Fonts <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:          #08080a;   /* cinematic black (page background)        */
  --surface:     #131316;   /* raised panels / cards                    */
  --surface-2:   #1c1c21;   /* secondary panel / inputs                 */
  --ink:         #f5f5f7;   /* near-white headings & primary text       */
  --muted:       #8b8b93;   /* muted / secondary text                   */
  --accent:      #ff2e54;   /* glowing red accent (primary)             */
  --accent-2:    #ff6b3d;   /* warm orange accent for gradients         */
  --line:        #26262c;   /* borders / dividers                       */

  /* --- Fonts --- */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .6);
  --glow:      0 0 0 1px rgba(255,46,84,.4), 0 10px 36px rgba(255,46,84,.35);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1200px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: #ff5876; }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 100px 0; }
.section--soft { background: linear-gradient(180deg, var(--bg), #0c0c0f 50%, var(--bg)); }
.section--tight { padding: 70px 0; }

.section-head {
  max-width: 740px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 46, 84, .1);
  border: 1px solid rgba(255, 46, 84, .25);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.14rem; color: #c9c9d1; }

.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 26px rgba(255, 46, 84, .4);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 38px rgba(255, 46, 84, .55); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn-light:hover { background: #fff; color: var(--bg); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, .8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(255, 46, 84, .45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  padding: 8px 15px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home) — cinematic showreel
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 540px at 80% -10%, rgba(255,46,84,.22), transparent 60%),
    radial-gradient(760px 540px at 0% 120%, rgba(255,107,61,.14), transparent 55%),
    var(--bg);
  padding: 92px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; color: var(--ink); }
.hero h1 span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-meta {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Showreel visual — pure CSS widescreen panel with play button */
.showreel {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 70% 0%, rgba(255,46,84,.4), transparent 55%),
    radial-gradient(120% 120% at 0% 100%, rgba(255,107,61,.35), transparent 55%),
    linear-gradient(150deg, #1a1a20, #08080a);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
}
.showreel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 64px);
  opacity: .6;
}
.showreel .reel-bar {
  position: absolute; left: 0; right: 0; top: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px;
  color: rgba(255,255,255,.65);
  font-family: var(--font-head);
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
}
.showreel .reel-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.showreel .reel-time {
  position: absolute; left: 20px; bottom: 18px;
  font-family: var(--font-head); font-size: .8rem; letter-spacing: .08em;
  color: rgba(255,255,255,.75);
}
.showreel .reel-progress {
  position: absolute; left: 20px; right: 20px; bottom: 44px; height: 4px;
  border-radius: 4px; background: rgba(255,255,255,.16);
}
.showreel .reel-progress::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 38%;
  border-radius: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Play button (reused across thumbnails) */
.play-btn {
  position: relative;
  z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 36px rgba(255,46,84,.5);
  transition: transform var(--ease), box-shadow var(--ease);
}
.play-btn::after {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255,46,84,.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------------------------------------------------------------------
   CLIENT STRIP
   --------------------------------------------------------------------- */
.trusted { padding: 42px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trusted p { text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 46px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--muted);
  opacity: .7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--ink); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,46,84,.4); box-shadow: var(--shadow-lg); }

.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,46,84,.12);
  border: 1px solid rgba(255,46,84,.2);
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Feature list */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255,46,84,.4);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 22px;
  min-height: 400px;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(255,46,84,.4), transparent 55%),
    linear-gradient(150deg, #1a1a20, #08080a);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 32px;
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 56px);
}

/* ---------------------------------------------------------------------
   VIDEO THUMBNAILS (work grid / featured)
   --------------------------------------------------------------------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(255,46,84,.45); box-shadow: var(--shadow-lg); }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* Gradient variants so each thumbnail looks distinct (no images) */
.video-thumb.g1 { background: linear-gradient(150deg, #2a0d18, #ff2e54 160%); }
.video-thumb.g2 { background: linear-gradient(150deg, #0d1a2a, #3d7bff 170%); }
.video-thumb.g3 { background: linear-gradient(150deg, #2a1a0d, #ff6b3d 170%); }
.video-thumb.g4 { background: linear-gradient(150deg, #1a0d2a, #9b5cff 170%); }
.video-thumb.g5 { background: linear-gradient(150deg, #0d2a1f, #2fd6a8 170%); }
.video-thumb.g6 { background: linear-gradient(150deg, #2a0d22, #ff2e9c 170%); }
.video-thumb.g7 { background: linear-gradient(150deg, #14141a, #4a4a55 170%); }
.video-thumb.g8 { background: linear-gradient(150deg, #2a210d, #ffd23d 170%); }
.video-thumb.g9 { background: linear-gradient(150deg, #0d222a, #2fb6d6 170%); }
.video-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(8,8,10,.32);
  transition: background var(--ease);
}
.video-card:hover .video-thumb::before { background: rgba(8,8,10,.1); }

.video-thumb .play-btn {
  width: 66px; height: 66px;
  font-size: 1.3rem;
  transition: transform var(--ease);
}
.video-thumb .play-btn::after { animation: none; }
.video-card:hover .video-thumb .play-btn { transform: scale(1.08); }

.video-thumb .dur {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  font-family: var(--font-head); font-size: .74rem; font-weight: 600;
  color: #fff; background: rgba(0,0,0,.55);
  padding: 3px 9px; border-radius: 6px; letter-spacing: .04em;
}
.video-meta { padding: 20px 22px; }
.video-meta .cat {
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--accent);
}
.video-meta h3 { font-size: 1.18rem; margin: 7px 0 0; color: var(--ink); }

/* Filter bar (work page) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-bar button {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.filter-bar button:hover { color: var(--ink); border-color: var(--muted); }
.filter-bar button.active {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(255,46,84,.16), transparent 60%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #fff;
}
.stats-band .section-head h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 4.4vw, 3.2rem);
  display: block;
  line-height: 1;
  background: linear-gradient(120deg, #fff, var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: #ffb43d; margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.12rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(255,107,61,.3), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(255,46,84,.3), transparent 60%),
    linear-gradient(135deg, #1a1a20, #08080a);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c9c9d1; max-width: 580px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 85% -20%, rgba(255,46,84,.22), transparent 60%),
    radial-gradient(600px 400px at 0% 120%, rgba(255,107,61,.12), transparent 55%),
    var(--bg);
  padding: 70px 0 62px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 640px; color: #c9c9d1; margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   SERVICES PAGE — detailed blocks
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-block:hover { transform: translateY(-4px); border-color: rgba(255,46,84,.4); box-shadow: var(--shadow-lg); }
.service-block .s-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,46,84,.12);
  border: 1px solid rgba(255,46,84,.2);
  display: grid; place-items: center;
  font-size: 1.9rem;
}
.service-block h3 { margin-bottom: 8px; }
.deliverables {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}
.deliverables li {
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--accent);
  background: rgba(255,46,84,.1);
  border: 1px solid rgba(255,46,84,.2);
  padding: 6px 13px;
  border-radius: 999px;
}

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* Packages / pricing */
.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg.featured { border-color: rgba(255,46,84,.5); box-shadow: var(--glow); }
.pkg .pkg-tag {
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--accent);
}
.pkg .price {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink);
  margin: 10px 0 2px; line-height: 1;
}
.pkg .price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.pkg ul.pkg-list { margin: 20px 0 26px; }
.pkg ul.pkg-list li {
  position: relative; padding: 7px 0 7px 26px; font-size: .95rem; color: #c9c9d1;
  border-bottom: 1px solid var(--line);
}
.pkg ul.pkg-list li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.pkg .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 14px;
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); display: flex; gap: 12px; align-items: flex-start; }
.faq-item h3 .q { color: var(--accent); }
.faq-item p { margin: 0; font-size: .96rem; }

/* ---------------------------------------------------------------------
   ABOUT — values + team / crew
   --------------------------------------------------------------------- */
.value-card .icon { background: linear-gradient(135deg, rgba(255,46,84,.18), rgba(255,107,61,.18)); border-color: rgba(255,107,61,.25); }

.team-card { text-align: center; }
.team-card .team-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 28px rgba(255,46,84,.4);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-card h2 { color: var(--ink); }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6a6a72; }
.field select { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,46,84,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #ff6b6b; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b6b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(47, 214, 168, .12);
  border: 1px solid rgba(47, 214, 168, .4);
  color: #4ade9a;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(255,46,84,.06), rgba(255,46,84,.06)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { color: var(--ink); }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 66px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--ink);
}
.social a:hover { background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-color: transparent; color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--ink); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .showreel { max-width: 560px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 48px 26px; }
}

@media (max-width: 360px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 24px; }
}
