/* == KITO Video Production ==================================== */
:root {
  --bg: #0b0b0d;
  --surface: #141417;
  --surface-2: #1c1c21;
  --line: #26262c;
  --text: #f5f5f2;
  --muted: #a3a3ab;
  --accent: #ffc629;
  --accent-dark: #0b0b0d;
  --radius: 14px;
  --maxw: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.kicker {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 640px; font-size: 18px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-dark); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 198, 41, 0.35); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.35); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--accent-dark); color: var(--text); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4); }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { height: 44px; width: auto; }
.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 19px;
}
.brand-sub { display: block; font-size: 8.5px; letter-spacing: 0.31em; font-weight: 500; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14.5px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 90px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.15) 40%, rgba(11,11,13,0.92) 100%);
}
.hero h1 { font-size: clamp(42px, 6.5vw, 82px); max-width: 850px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { margin: 24px 0 36px; max-width: 560px; font-size: 19px; color: rgba(245,245,242,0.85); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 48px; }
.chip {
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13.5px;
  color: rgba(245,245,242,0.85);
  background: rgba(11,11,13,0.35);
  backdrop-filter: blur(6px);
}
.chip strong { color: var(--accent); font-weight: 600; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,198,41,0.45); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px 24px 28px; }
.card-body h3 { font-size: 21px; margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 15.5px; }
.card-price {
  display: inline-block;
  margin-top: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 17px;
}

/* ===== Packages ===== */
.packages { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  align-items: stretch;
}
.pkg {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.pkg:hover { transform: translateY(-6px); }
.pkg.featured {
  background: var(--accent);
  color: var(--accent-dark);
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(255, 198, 41, 0.18);
}
.pkg.featured .pkg-price, .pkg.featured li { color: var(--accent-dark); }
.pkg-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dark);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg h3 { font-size: 22px; }
.pkg-price { font-family: "Space Grotesk", sans-serif; font-size: 46px; font-weight: 700; margin: 10px 0 4px; }
.pkg-price span { font-size: 15px; font-weight: 500; opacity: 0.65; }
.pkg ul { list-style: none; margin: 24px 0 32px; display: grid; gap: 12px; flex: 1; }
.pkg li { padding-left: 28px; position: relative; font-size: 15.5px; color: var(--muted); }
.pkg li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pkg.featured li::before { color: var(--accent-dark); }
.pkg .btn { justify-content: center; }

/* ===== Work / video grids ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.work-cta { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

/* ===== Why band ===== */
.why {
  position: relative;
  isolation: isolate;
  padding: 130px 0;
  background-size: cover;
  background-position: center;
}
.why::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(11,11,13,0.93) 0%, rgba(11,11,13,0.75) 55%, rgba(11,11,13,0.35) 100%);
}
.why-inner { max-width: 620px; }
.why ul { list-style: none; margin-top: 28px; display: grid; gap: 16px; }
.why li { padding-left: 34px; position: relative; color: rgba(245,245,242,0.9); }
.why li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ===== CTA band ===== */
.cta-band { background: var(--accent); color: var(--accent-dark); text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 48px); max-width: 760px; margin: 0 auto 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 36px; font-size: 18px; color: rgba(11,11,13,0.75); }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(11,11,13,0.4); color: var(--accent-dark); }
.cta-band .btn-ghost:hover { border-color: var(--accent-dark); }

/* ===== Page hero (interior pages) ===== */
.page-hero { padding: 190px 0 70px; }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 64px); }
.page-hero p { color: var(--muted); margin-top: 18px; max-width: 620px; font-size: 18px; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--line); padding: 64px 0 40px; background: var(--bg); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand p { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 300px; }
.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--text); font-size: 15.5px; opacity: 0.85; }
.footer-col a:hover { color: var(--accent); opacity: 1; }
.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .services-grid, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg.featured { transform: none; }
}
@media (max-width: 760px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 13px; }
  .brand-name { font-size: 16px; letter-spacing: 0.26em; }
  .brand svg { height: 36px; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(11,11,13,0.97);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .services-grid, .pkg-grid, .video-grid { grid-template-columns: 1fr; }
  .hero { min-height: 84vh; padding-top: 130px; }
}
