/*
Theme Name: Animotion Production
Theme URI: https://example.com
Author: Animotion
Description: Custom theme for Animotion Production.
Version: 1.0.0
Text Domain: animotion
*/

:root {
  --bg: #f3f0e8;
  --paper: #fbf9f3;
  --ink: #131313;
  --muted: #5d5a55;
  --accent: #a78348;
  --accent-dark: #6d542e;
  --deep: #171717;
  --line: #dad3c6;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% -10%, #fff8e9 0%, var(--bg) 35%, #ece7dc 100%);
  line-height: 1.65;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .6;
  background-image: radial-gradient(#000 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.container { width: min(1160px, 92vw); margin: 0 auto; }
.section { padding: 80px 0; position: relative; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  color: var(--accent-dark);
  font-weight: 700;
}
h1, h2, h3, h4 { font-family: "Fraunces", serif; line-height: 1.15; margin: 0 0 .7rem; }
h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); max-width: 10ch; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

.nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.brand { font-weight: 700; letter-spacing: .03em; }
.site-logo { height: 60px; width: auto; display: block; }
.nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .94rem;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}
.nav a:hover { opacity: 1; transform: translateY(-1px); }

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  color: #fff7ea;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .48;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17,17,17,.56) 0%, rgba(17,17,17,.68) 100%);
}
.hero .nav, .hero .hero-inner { position: relative; z-index: 2; }
.hero .eyebrow { color: #ebd3aa; }
.hero .nav a, .hero .brand { color: #fff7ea; }
.hero-inner { margin: auto; padding: 12px 0 50px; }
.lead { max-width: 56ch; color: #f1e5ce; font-size: 1.05rem; }
.cta {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 12px 20px;
  border-radius: 999px;
}

.section-head { margin-bottom: 22px; }

.reel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.reel-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.reel-thumb {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.28rem;
  color: #fdf7ea;
  background: linear-gradient(145deg, #242424, #4f4f4f 45%, #987443);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.reel-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.reel-card h3 { margin: 14px; font-size: 1.08rem; font-family: "Manrope", sans-serif; font-weight: 700; }
.muted { color: var(--muted); font-size: .94rem; margin-top: 12px; }

.about-x-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.about-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fffef9;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
}
.about-panel ul { margin: 0; padding-left: 18px; }
.about-panel li { margin-bottom: 10px; }
.about-image-slot {
  margin: 0;
}
.about-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.about-image-placeholder {
  min-height: 330px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(215,199,169,.35), rgba(143,115,80,.65) 55%, rgba(52,40,27,.95)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 45%);
  color: #fff3dd;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .03em;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.intro-panel { grid-column: 1; grid-row: 1; }
.about-image-intro { grid-column: 2; grid-row: 1; }
.about-image-team { grid-column: 1; grid-row: 2; }
.team-panel { grid-column: 2; grid-row: 2; }

.dark { background: var(--deep); color: #f2efe8; }
.dark .eyebrow { color: #ccb387; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.numbers-grid article { border-top: 1px solid rgba(255,255,255,.24); padding-top: 14px; }
.metric {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Fraunces", serif;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: .02em;
}

.sub { margin: 30px 0 12px; }
.mini-sub { margin: 20px 0 10px; font-size: 1.08rem; font-family: "Manrope", sans-serif; font-weight: 800; }
.logo-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-cloud span {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}
.logo-cloud span:hover {
  transform: translateY(-2px);
  background: #fff;
}

.split-band { background: linear-gradient(180deg, #f4efe3 0%, #ece5d7 100%); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.band-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fffdf7;
  min-height: 540px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.band-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #f2e6cf;
  background: linear-gradient(135deg, #2a2a2a, #6b5332);
  border: 1px solid rgba(255,255,255,.2);
}

img.band-image {
  object-fit: cover;
  background: none;
  display: block;
}

.contact { background: #171717; color: #f5f1e8; }
.contact .eyebrow { color: #c9af82; }
.contact h2 { margin-bottom: 18px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 56px; margin-top: 34px; }
.contact-grid > div { padding: 10px 0; }
.contact-grid h4 { margin-bottom: 14px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.contact-grid p { margin: 0; line-height: 1.9; }
.contact-phones { list-style: none !important; padding: 0 !important; margin: 0 !important; font-size: 1.14rem; letter-spacing: 0.02em; }
.contact-phones li { list-style: none !important; display: block; margin-bottom: 12px; padding: 0 !important; }
.contact-phones li::marker { content: '' !important; }
.contact-phones strong { font-weight: 900 !important; text-shadow: 0 0 0.6px rgba(255,255,255,0.6); }
.contact .tagline { margin-top: 44px; font-family: "Fraunces", serif; font-size: 1.2rem; color: #dec59c; }
.contact.section { padding-top: 100px; padding-bottom: 110px; }

@media (max-width: 980px) {
  .reel-grid, .numbers-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-x-layout, .split-grid { grid-template-columns: 1fr; }
  .intro-panel, .about-image-intro, .about-image-team, .team-panel {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 620px) {
  .reel-grid, .numbers-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav { gap: 10px; flex-direction: column; align-items: flex-start; }
}