:root {
  --orange: #ff6600;
  --btn-orange: #f16334;
  --purple: #5f4472;
  --dark: #222;
  --text: #666;
  --light-bg: #f7f7f7;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: #fff;
}
h1, h2, h3, h4 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.site-header .logo img { height: 36px; width: auto; }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.site-header nav a:hover { opacity: 1; }
.site-header.on-light nav a,
.site-header.on-light .logo img { filter: none; }
.site-header.on-light nav a { color: var(--dark); }

.menu-toggle { display: none; }
@media (max-width: 780px) {
  .site-header nav { display: none; }
  .menu-toggle {
    display: block;
    background: none; border: none; color: #fff;
    font-size: 28px; cursor: pointer; line-height: 1;
  }
  .site-header.on-light .menu-toggle { color: var(--dark); }
  .site-header nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 12px 24px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  .site-header nav.open a { color: var(--dark); padding: 10px 0; border-bottom: 1px solid #eee; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 140px 24px 120px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.62);
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero-logo { max-width: 480px; width: 80%; margin: 0 auto 28px; }
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .struck { position: relative; opacity: 0.55; }
.hero h1 .struck::after {
  content: "";
  position: absolute; left: -2%; right: -2%; top: 50%;
  border-top: 3px solid #fff;
  transform: rotate(-4deg);
}
.btn {
  display: inline-block;
  background: var(--btn-orange);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(241,99,52,0.35); color: #fff; }

/* Section spacing */
section { padding: 96px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .rule {
  width: 60px; height: 3px; background: var(--orange);
  margin: 18px auto 0; border: none;
}
.section-head.purple h2 { color: var(--purple); }

/* Welcome / intro text */
.intro-text { text-align: center; }
.intro-text p { margin: 0 0 1.3em; }
.intro-text strong { color: var(--dark); }

/* Org cards */
.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
@media (max-width: 860px) { .org-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.org-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.org-card img { margin: 0 auto 20px; max-height: 90px; width: auto; }
.org-card p { font-size: 0.95rem; text-align: justify; flex: 1 0 auto; }
.org-card strong { color: var(--dark); }
.org-cta { margin-top: 24px; }

/* What we do */
.services-section { background: var(--light-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 860px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; gap: 48px; max-width: 320px; margin-inline: auto; } }
.service-card { text-align: center; }
.service-card .service-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  margin: 0 auto 20px;
  color: var(--orange);
}
.service-card .service-icon svg { width: 100%; height: 100%; }
.service-card h4 { color: var(--orange); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.03em; }
.service-card p { font-size: 0.9rem; margin: 0; }

/* Centered 3-column category grid (e.g. 360 page) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 700px) { .category-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; } }
@media (max-width: 480px) { .category-grid { grid-template-columns: 1fr; max-width: 260px; gap: 40px; } }

/* Text / video split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .split-section { grid-template-columns: 1fr; gap: 40px; } }
.split-section .split-text p { margin: 0 0 1.3em; }
.split-section .split-video .ratio { position: relative; padding-top: 56.25%; }
.split-section .split-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Clients */
.clients-section { text-align: center; }
.clients-section img { margin: 0 auto; height: auto; }

/* Contact */
.contact-section { background: var(--dark); color: #eee; padding-bottom: 32px; }
.contact-section h2 { color: #fff; text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; max-width: 320px; } }
.contact-grid strong { color: #fff; display: block; margin-bottom: 8px; }
.contact-grid a { color: var(--orange); }
.powered-by {
  text-align: center;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Footer */
.site-footer {
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

/* Page hero (interior pages: work, films, showreel, 360, case studies) */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--dark) center/cover;
  padding: 140px 24px 64px;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero h1.tagline { font-size: 1.1rem; font-weight: 400; font-family: "Open Sans", Arial, sans-serif; }
.page-hero p { font-size: 1.1rem; margin: 0; color: #eee; }

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; opacity: 0.85; }
.work-card:hover img { transform: scale(1.06); opacity: 1; }
.work-card .work-card-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
}
.work-card .work-card-label span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--orange); margin-bottom: 4px; }
.work-card .work-card-label strong { font-family: "Montserrat", sans-serif; font-size: 1.05rem; }

/* Client logo strip */
.client-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 700px) { .client-strip { grid-template-columns: repeat(2, 1fr); } }
.client-strip figure { margin: 0; text-align: center; }
.client-strip img { max-height: 60px; width: auto; margin: 0 auto; filter: grayscale(1); opacity: 0.7; transition: all 0.2s ease; }
.client-strip img:hover { filter: none; opacity: 1; }
.client-strip figcaption { font-size: 0.75rem; color: #999; margin-top: 8px; }

/* Case study */
.case-content { max-width: 780px; margin: 0 auto; }
.case-content p { margin: 0 0 1.3em; }
.case-video { max-width: 900px; margin: 0 auto 56px; }
.case-video .ratio { position: relative; padding-top: 56.25%; }
.case-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 56px auto 0;
}
@media (max-width: 700px) { .case-gallery { grid-template-columns: 1fr; } }
.case-gallery img { border-radius: 4px; width: 100%; height: 360px; object-fit: cover; }
.case-back { text-align: center; margin-top: 56px; }
.case-back a { font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; }

/* Films grid */
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
@media (max-width: 700px) { .films-grid { grid-template-columns: 1fr; } }
.film-card img {
  border-radius: 4px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 20px;
}
.film-card h3 { margin-bottom: 8px; }
.film-card p { margin: 0; font-size: 0.95rem; }
.showreel-embed { max-width: 900px; margin: 0 auto; }
.showreel-embed .ratio { position: relative; padding-top: 56.25%; }
.showreel-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 700px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
.grid-4 figure { margin: 0; text-align: center; }
.grid-4 figcaption { font-size: 0.85rem; margin-top: 8px; }
