/* Jaggy Bunnet Productions — Dark Editorial / Cinematic */
:root {
  --bg: #0c0c0e;
  --bg-elev: #15151a;
  --ink: #f4f1ec;
  --muted: #8a8580;
  --accent: #e8503a;
  --line: #26262c;
  --max: 1240px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,12,14,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 36px; font-size: 14px; letter-spacing: .8px; text-transform: uppercase; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 32px 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p { font-size: 18px; color: var(--muted); max-width: 480px; }
.hero-img {
  aspect-ratio: 3/4;
  background: var(--bg-elev);
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.1); }
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,12,14,.4));
}

/* Sections */
section { padding: 100px 32px; }
.container { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}
.section-intro { color: var(--muted); max-width: 600px; font-size: 17px; margin-bottom: 60px; }

/* Services grid */
.services { background: var(--bg-elev); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: 60px; border: 1px solid var(--line); }
.service {
  background: var(--bg-elev);
  padding: 48px 36px;
  transition: background .3s;
}
.service:hover { background: var(--bg); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px; color: var(--accent); margin-bottom: 32px;
}
.service h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 16px; }
.service p { color: var(--muted); font-size: 15px; }

/* Showreel grid */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.reel-item { overflow: hidden; border-radius: 4px; }
.reel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; filter: grayscale(10%); }
.reel-item:hover img { transform: scale(1.04); }
.r1 { grid-column: span 7; aspect-ratio: 16/9; }
.r2 { grid-column: span 5; aspect-ratio: 4/5; }
.r3 { grid-column: span 5; aspect-ratio: 4/5; }
.r4 { grid-column: span 7; aspect-ratio: 16/9; }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }

/* CTA */
.cta {
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 32px;
  letter-spacing: -.5px;
}
.btn {
  display: inline-block;
  padding: 18px 38px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .2s, background .2s;
}
.btn:hover { background: #d44229; transform: translateY(-2px); }

/* Contact / Footer */
footer {
  background: #08080a;
  padding: 80px 32px 40px;
  border-top: 1px solid var(--line);
}
.foot-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.foot-grid h4 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 20px; }
.foot-grid p, .foot-grid a { color: var(--muted); font-size: 14px; display: block; margin-bottom: 8px; }
.foot-grid a:hover { color: var(--ink); }
.foot-bottom { max-width: var(--max); margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }

/* Sub-page hero */
.sub-hero { padding: 140px 32px 80px; border-bottom: 1px solid var(--line); }
.sub-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.sub-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(48px, 7vw, 88px); line-height: 1.05; letter-spacing: -1px; }
.sub-hero h1 em { color: var(--accent); font-style: italic; }
.sub-hero p { color: var(--muted); font-size: 18px; }

/* Feature list */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 80px; margin-top: 60px; }
.feature { border-top: 1px solid var(--line); padding-top: 28px; }
.feature h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 14px; }
.feature p { color: var(--muted); }
.feature-num { font-size: 12px; color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }

/* Privacy */
.legal { max-width: 820px; margin: 0 auto; padding: 140px 32px 100px; }
.legal h1 { font-family: 'Playfair Display', serif; font-size: 56px; margin-bottom: 12px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 50px; }
.legal h2 { font-family: 'Playfair Display', serif; font-size: 26px; margin: 40px 0 16px; }
.legal p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }

@media (max-width: 880px) {
  .hero, .split, .sub-hero .container, .foot-grid, .features { grid-template-columns: 1fr; gap: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .reel-grid > * { grid-column: span 12 !important; }
  .nav-links { gap: 18px; font-size: 12px; }
  section { padding: 70px 24px; }
  .hero { padding: 70px 24px; }
}
