/* ===== Roc Films — Shared Styles ===== */
:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --white: #ffffff;
  --off-white: #f4f4f2;
  --red: #e63329;
  --gray: #8a8a8a;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(0,0,0,0.1);
  --font: 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Nav ---- */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
  padding: 50px 0 22px;
  transition: transform 0.4s ease;
}
header.site-header.header-hidden {
  transform: translateY(-100%);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .brand {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.site-header .nav-social {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.site-header nav.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  position: relative;
}
.rec-pulse {
  position: absolute;
  left: 0;
  pointer-events: none;
}
.rec-pulse.rec-pulse--mark {
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
}
.rec-pulse.rec-pulse--wide {
  top: 34%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}
.rec-pulse.rec-pulse--mark-xxl {
  top: 50%;
  width: 89px;
  height: 89px;
  transform: translateY(-50%);
  animation: rec-blink 2s linear infinite;
}
.rec-pulse--mark-xxl .dot-cover {
  display: none;
}
.rec-pulse--mark-xxl .dot-fill {
  animation: none;
}
@keyframes rec-blink {
  0%, 30% { opacity: 0; }
  45%, 55% { opacity: 1; }
  70%, 100% { opacity: 0; }
}
.rec-pulse .dot-cover {
  position: absolute;
  inset: -3px;
  background: var(--black);
  border-radius: 50%;
}
.rec-pulse .dot-fill {
  position: absolute;
  inset: 0;
  background: var(--red);
  border-radius: 50%;
  animation: rec-fade 1.8s ease-in-out infinite;
}
@keyframes rec-fade {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px 2px rgba(229, 30, 30, 0.6); }
  50% { opacity: 0.2; box-shadow: 0 0 0 0 rgba(229, 30, 30, 0); }
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}
footer .brand-logo {
  height: 48px;
}
.footer-verse {
  flex: 1 1 auto;
  text-align: center;
  margin-right: 60px;
  font-family: 'Montserrat', var(--font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
  color: var(--white);
  margin-top: 0;
}
nav.main-nav ul {
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
nav.main-nav a {
  opacity: 0.85;
  transition: opacity 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a.active { opacity: 1; color: var(--red); }
.nav-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-social a { opacity: 0.85; }
.nav-social a:hover { opacity: 1; color: var(--red); }
.nav-social svg { width: 20px; height: 20px; fill: currentColor; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.site-header .menu-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---- Mobile nav drawer ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  overflow: hidden;
}
.mobile-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.65) 0.5px, rgba(255,255,255,0.06) 2px, transparent 4px),
    radial-gradient(circle, rgba(230,51,41,0.8) 0.5px, rgba(230,51,41,0.06) 2px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.35) 0.5px, rgba(255,255,255,0.03) 1.5px, transparent 3px);
  background-size: 211px 289px, 377px 203px, 143px 331px;
  animation: chaos-a 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.mobile-nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(230,51,41,0.7) 0.5px, rgba(230,51,41,0.05) 2px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.3) 0.5px, rgba(255,255,255,0.03) 1.5px, transparent 3px),
    radial-gradient(circle, rgba(230,51,41,0.65) 0.5px, rgba(230,51,41,0.05) 2px, transparent 4px);
  background-size: 163px 247px, 290px 170px, 430px 310px;
  animation: chaos-b 45s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.mobile-nav > * { position: relative; z-index: 1; }
.mobile-nav.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: 0.05s;
}
.mobile-nav.is-open .mobile-nav-logo {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-logo img {
  height: 46px;
  width: auto;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mobile-nav.is-open ul li:nth-child(1) { transition-delay: 0.12s; }
.mobile-nav.is-open ul li:nth-child(2) { transition-delay: 0.18s; }
.mobile-nav.is-open ul li:nth-child(3) { transition-delay: 0.24s; }
.mobile-nav.is-open ul li:nth-child(4) { transition-delay: 0.3s; }
.mobile-nav.is-open ul li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  padding-bottom: 8px;
}
.mobile-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav a:hover::after,
.mobile-nav a.active::after { width: 100%; }
.mobile-nav a.active { color: var(--red); }
.mobile-nav-social {
  display: flex;
  gap: 26px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: 0.38s;
}
.mobile-nav.is-open .mobile-nav-social {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-social a { color: var(--white); opacity: 0.85; }
.mobile-nav-social a:hover { color: var(--red); opacity: 1; }
.mobile-nav-social svg { width: 24px; height: 24px; fill: currentColor; }
.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.mobile-nav.is-open .mobile-nav-close {
  opacity: 1;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
}
.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { transform: translateY(-2px); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, #1a1a1a 0%, #000 70%);
  position: relative;
  padding: 80px 24px 80px;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.35));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  height: clamp(52px, 6vw, 84px);
  width: auto;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 900px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.hero p.sub {
  margin-top: 22px;
  color: var(--gray);
  font-size: 18px;
  max-width: 520px;
}
.hero .cta { margin-top: 40px; }

/* ---- Ticker ---- */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--off-white);
  color: var(--black);
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.ticker .track {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-left 22s linear infinite;
}
.ticker .track span { margin: 0 18px; color: var(--red); }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---- Sections ---- */
section { padding: 110px 0; }
.section-dark { background: var(--black); position: relative; overflow: hidden; }
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.65) 0.5px, rgba(255,255,255,0.06) 2px, transparent 4px),
    radial-gradient(circle, rgba(230,51,41,0.8) 0.5px, rgba(230,51,41,0.06) 2px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.35) 0.5px, rgba(255,255,255,0.03) 1.5px, transparent 3px);
  background-size: 211px 289px, 377px 203px, 143px 331px;
  background-attachment: fixed;
  animation: chaos-a 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(230,51,41,0.7) 0.5px, rgba(230,51,41,0.05) 2px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.3) 0.5px, rgba(255,255,255,0.03) 1.5px, transparent 3px),
    radial-gradient(circle, rgba(230,51,41,0.65) 0.5px, rgba(230,51,41,0.05) 2px, transparent 4px);
  background-size: 163px 247px, 290px 170px, 430px 310px;
  background-attachment: fixed;
  animation: chaos-b 45s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes chaos-a {
  0%   { background-position: 0 0,        0 0,        0 0; }
  100% { background-position: 211px -289px, -377px 203px, 143px -331px; }
}
@keyframes chaos-b {
  0%   { background-position: 0 0,         0 0,         0 0; }
  100% { background-position: -163px 247px, 290px -170px, -430px 310px; }
}
.section-dark .wrap { position: relative; z-index: 1; }
.section-light { background: var(--off-white); color: var(--black); }

.eyebrow {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
h2.section-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  max-width: 700px;
  margin-bottom: 12px;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.section-intro p {
  max-width: 420px;
  color: var(--gray);
  font-size: 16px;
}
.section-light .section-intro p { color: #555; }

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--black);
  padding: 36px 28px;
  transition: background 0.2s;
}
.service-card:hover { background: #161616; }
.service-card .num {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
  display: block;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Portfolio grid ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  position: relative;
  background: #141414;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
}
.video-card:hover {
  transform: scale(1.04);
  border-color: var(--red);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--red), 0 0 30px rgba(230,51,41,0.4);
  z-index: 2;
}
.video-card .reel-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.video-card .frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-card iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-card .meta {
  padding: 18px 20px 22px;
}
.video-card .tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.video-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  color: #fff;
}
.video-card .views {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ---- Reel grid (Instagram embeds) ---- */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.reel-card {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
}
.reel-card .reel-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.reel-card:hover {
  transform: scale(1.04);
  border-color: var(--red);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px var(--red), 0 0 30px rgba(230,51,41,0.35);
  z-index: 2;
}
.reel-card .reel-embed {
  width: 100%;
  background: #000;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  pointer-events: none;
}
.reel-card .reel-embed iframe {
  display: block;
  width: 100% !important;
  min-height: 100%;
  pointer-events: none;
}
.reel-card .reel-embed blockquote.instagram-media {
  margin: 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}
.reel-card .reel-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.reel-card .meta {
  display: block;
  padding: 16px 18px 20px;
  text-decoration: none;
  cursor: pointer;
}
.reel-card .meta .tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.reel-card .meta h3 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--black);
  transition: color 0.2s ease;
}
.reel-card .meta:hover h3 {
  color: var(--red);
}

/* Play button overlay on reel thumbnails */
.thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.thumb-wrap .reel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(2px);
}
.play-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: -2px;
}
.reel-card:hover .play-btn {
  background: rgba(229,30,30,0.85);
  border-color: var(--red);
  transform: translate(-50%, -50%) scale(1.12);
}

.ig-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.ig-badge svg {
  width: 14px;
  height: 14px;
  fill: #000;
  flex-shrink: 0;
}
.ig-badge span {
  font-size: 11px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
}
.about-grid .portrait {
  background: linear-gradient(160deg, #1a1a1a, #000);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.about-grid .portrait .mark {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.about-grid .portrait .portrait-logo { height: 44px; width: auto; }
.about-grid .portrait .loc { color: var(--gray); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

.about-copy p {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 22px;
  max-width: 560px;
}
.about-copy strong { color: var(--white); }
.faith-callout {
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 36px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--white);
  max-width: 560px;
}
.stats-row {
  display: flex;
  gap: 50px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--red);
}
.stat .label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.contact-info a.big-link {
  font-size: 26px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
}
.contact-info .social-list {
  display: flex;
  gap: 24px;
}
.contact-info .social-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-info .social-list svg { width: 24px; height: 24px; fill: currentColor; }

form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 16px;
  padding: 10px 0;
  font-family: var(--font);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-bottom-color: var(--red); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { align-self: flex-start; margin-top: 12px; cursor: pointer; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-band h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cta-band .btn-light:hover { background: var(--black); color: var(--white); }

/* ---- Footer ---- */
footer.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 50px 0 32px;
}
footer.site-footer .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
}
footer .brand { font-size: 16px; justify-content: center; flex: 0 0 auto; order: 1; }
footer .footer-verse { order: 2; }
footer .nav-social { order: 3; }
footer .foot-links { display: flex; gap: 28px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
footer .foot-links a:hover { color: var(--red); }
footer .copyright {
  order: 4;
  width: 100%;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--gray);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}
footer .copyright .faith {
  color: var(--gray);
}
footer .copyright .faith .dot { color: var(--red); }

/* ---- Page hero (sub pages) ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 70px;
  background: var(--black);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.65) 0.5px, rgba(255,255,255,0.06) 2px, transparent 4px),
    radial-gradient(circle, rgba(230,51,41,0.8) 0.5px, rgba(230,51,41,0.06) 2px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.35) 0.5px, rgba(255,255,255,0.03) 1.5px, transparent 3px);
  background-size: 211px 289px, 377px 203px, 143px 331px;
  background-attachment: fixed;
  animation: chaos-a 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(230,51,41,0.7) 0.5px, rgba(230,51,41,0.05) 2px, transparent 4px),
    radial-gradient(circle, rgba(255,255,255,0.3) 0.5px, rgba(255,255,255,0.03) 1.5px, transparent 3px),
    radial-gradient(circle, rgba(230,51,41,0.65) 0.5px, rgba(230,51,41,0.05) 2px, transparent 4px);
  background-size: 163px 247px, 290px 170px, 430px 310px;
  background-attachment: fixed;
  animation: chaos-b 45s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.page-hero p {
  margin-top: 18px;
  color: var(--gray);
  font-size: 17px;
  max-width: 540px;
}

/* ---- Page transition ---- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.65s ease;
}
.page-transition.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.pt-logo {
  position: relative;
  display: flex;
  align-items: center;
}
.pt-logo-img {
  height: 100px;
  width: auto;
  opacity: 0;
  animation: pt-fade-in 0.5s ease 0.15s forwards;
}
@keyframes pt-fade-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .site-header nav.main-nav, .site-header .nav-social { display: none; }
  .menu-toggle { display: inline-flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wrap { padding: 0 20px; }
  footer.site-footer .wrap { justify-content: center; gap: 18px; }
  footer .footer-verse { order: 2; flex: 1 1 100%; font-size: 19px; margin-right: 0; text-align: center; }
  footer .brand { order: 1; }
  footer .nav-social { order: 3; }
}
