/* ============================================================
   MIKE'S MEDIA — Website Design System (V1)
   Content That Brings Clients
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --color-deep-black: #0A0A0A;
  --color-carbon-black: #141414;
  --color-charcoal: #1F1F1F;
  --color-mikes-red: #E30613;
  --color-action-red: #FF1F2D;
  --color-clean-white: #FFFFFF;
  --color-light-neutral: #F4F4F5;
  --color-smoke-grey: #A1A1AA;
  --color-steel-grey: #666666;

  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(0, 0, 0, 0.12);
  --card-dark: rgba(255, 255, 255, 0.035);

  --text-hero: clamp(3.25rem, 9vw, 9rem);
  --text-h1: clamp(3rem, 8vw, 7rem);
  --text-h2: clamp(2.25rem, 5vw, 4.5rem);
  --text-h3: clamp(1.6rem, 3vw, 2.6rem);
  --text-body-lg: 1.25rem;
  --text-body: 1rem;
  --text-small: 0.875rem;

  --font-head: "Teko", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", "Inter", Arial, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--color-deep-black);
  color: var(--color-clean-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, 1280px); margin-inline: auto; }
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }

.section-dark { background: var(--color-deep-black); color: var(--color-clean-white); }
.section-dark:nth-of-type(even) { background: var(--color-carbon-black); }
.section-light { background: var(--color-light-neutral); color: var(--color-deep-black); }

/* ---------- Typography ---------- */
.section-label {
  color: var(--color-mikes-red);
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--color-mikes-red);
  transform: skewX(-18deg);
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-h2);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-intro {
  max-width: 60ch;
  margin-top: 20px;
  font-size: var(--text-body-lg);
  color: var(--color-smoke-grey);
}
.section-light .section-intro { color: var(--color-steel-grey); }
.text-red { color: var(--color-mikes-red); }

/* ---------- Buttons ---------- */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 0;
  padding: 15px 28px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: skewX(-8deg);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
  line-height: 1;
}
.button-primary > span, .button-secondary > span { display: inline-flex; align-items: center; gap: 10px; transform: skewX(8deg); }
.chev { font-style: normal; font-size: 1.1em; line-height: 1; }

.button-primary { background: var(--color-mikes-red); color: #fff; border: 1px solid var(--color-mikes-red); }
.button-primary:hover { background: var(--color-action-red); border-color: var(--color-action-red); transform: skewX(-8deg) translateY(-2px); }

.button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55); }
.button-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: skewX(-8deg) translateY(-2px); }
.section-light .button-secondary { color: var(--color-deep-black); border-color: rgba(0,0,0,0.4); }

.button-lg { padding: 20px 40px; font-size: 1.7rem; }

:focus-visible { outline: 3px solid var(--color-action-red); outline-offset: 3px; }

/* ---------- Angled divider ---------- */
.angle-divider {
  height: 6px;
  background: var(--color-mikes-red);
  transform: skewX(-18deg);
  transform-origin: left center;
  width: 55%;
  margin-top: 0;
}
.angle-divider--top { position: absolute; top: 0; left: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand-logo { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--color-smoke-grey);
  transition: color 160ms ease;
}
.nav > a:hover { color: #fff; }
.nav-cta { font-size: 1.05rem !important; padding: 10px 20px; color: #fff !important; }
.nav-cta:hover { color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; transition: transform 200ms ease, opacity 200ms ease; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.05) grayscale(0.15); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.78) 45%, rgba(10,10,10,0.55) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.1) 40%);
}
.hero-content { position: relative; z-index: 2; padding-block: 60px; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-hero);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-top: 6px;
}
.hero-sub { max-width: 46ch; margin-top: 26px; font-size: var(--text-body-lg); color: var(--color-smoke-grey); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero .angle-divider { position: absolute; bottom: 0; left: 0; z-index: 3; width: 42%; }

/* ============================================================
   WHO WE HELP
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}
.who-item { background: var(--color-deep-black); padding: 34px 28px; transition: background 200ms ease; }
.who-item:hover { background: var(--color-charcoal); }
.who-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--color-mikes-red); font-weight: 700; }
.who-item h3 { font-family: var(--font-head); font-size: 1.9rem; font-weight: 600; text-transform: uppercase; line-height: 1; margin: 8px 0 10px; }
.who-item p { font-size: 0.95rem; color: var(--color-smoke-grey); }

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}
.service-card::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 4px; width: 0; background: var(--color-mikes-red);
  transform: skewX(-18deg); transform-origin: left; transition: width 260ms ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(227,6,19,0.5); }
.service-card:hover::after { width: 60%; }
.service-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--color-mikes-red); line-height: 1; }
.service-card h3 { font-family: var(--font-head); font-size: 2.3rem; font-weight: 600; text-transform: uppercase; line-height: 1; margin: 10px 0 14px; }
.service-card > p { color: var(--color-smoke-grey); margin-bottom: 18px; }
.service-list li { position: relative; padding-left: 22px; font-size: 0.95rem; color: #d4d4d8; margin-bottom: 8px; }
.service-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 3px; background: var(--color-mikes-red); transform: skewX(-18deg); }

/* ============================================================
   OUR WORK
   ============================================================ */
.work-filters { display: flex; flex-wrap: wrap; gap: 12px; margin: 40px 0 32px; }
.filter {
  background: transparent; color: var(--color-smoke-grey);
  border: 1px solid var(--border-dark); padding: 9px 20px;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transform: skewX(-8deg); transition: all 180ms ease;
}
.filter span { display: inline-block; transform: skewX(8deg); }
.filter:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.filter.is-active { background: var(--color-mikes-red); border-color: var(--color-mikes-red); color: #fff; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.media-card { overflow: hidden; transition: opacity 260ms ease, transform 260ms ease; }
.media-card.is-hidden { display: none; }
.media-thumb {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-dark);
}
.media-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0) 55%, rgba(227,6,19,0.35) 120%);
}
.tone-1 { background: linear-gradient(135deg, #1c1c1e 0%, #0a0a0a 60%, #2a0206 100%); }
.tone-2 { background: linear-gradient(135deg, #26262a 0%, #101012 55%, #1a0104 100%); }
.tone-3 { background: linear-gradient(135deg, #14141c 0%, #0a0a0a 50%, #300308 100%); }
.tone-4 { background: linear-gradient(135deg, #202024 0%, #0c0c0e 60%, #240206 100%); }
.tone-5 { background: linear-gradient(135deg, #1a1a1d 0%, #0a0a0a 55%, #2c0206 100%); }
.tone-6 { background: linear-gradient(135deg, #232327 0%, #0e0e10 55%, #34040a 100%); }

.play {
  position: relative; z-index: 2;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--color-mikes-red); border: 0;
  display: grid; place-items: center;
  transition: transform 220ms ease, background 220ms ease;
}
.play::before { content: ""; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.media-card:hover .play { transform: scale(1.12); background: var(--color-action-red); }
.media-meta { display: flex; align-items: baseline; gap: 12px; padding: 16px 4px 0; }
.media-tag { font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mikes-red); font-weight: 700; }
.media-meta h3 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 500; text-transform: uppercase; line-height: 1; }

.work-note { margin-top: 28px; font-size: 0.8rem; color: var(--color-steel-grey); }
.work-note code { background: rgba(255,255,255,0.08); padding: 1px 6px; font-size: 0.85em; }
.work-note--dark code { background: rgba(255,255,255,0.08); }

/* ============================================================
   PROCESS (light)
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.process-step { position: relative; padding-top: 26px; border-top: 3px solid var(--color-deep-black); }
.process-step::before { content: ""; position: absolute; top: -3px; left: 0; width: 46px; height: 3px; background: var(--color-mikes-red); }
.process-num { font-family: var(--font-head); font-size: 3.4rem; font-weight: 700; line-height: 0.8; color: var(--color-deep-black); }
.process-step h3 { font-family: var(--font-head); font-size: 2.1rem; font-weight: 600; text-transform: uppercase; margin: 6px 0 10px; }
.process-step p { color: var(--color-steel-grey); font-size: 0.98rem; }

/* ============================================================
   PROOF
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 52px 0 56px; }
.stat { border-left: 3px solid var(--color-mikes-red); padding-left: 22px; }
.stat-num { display: block; font-family: var(--font-head); font-size: clamp(3.5rem, 7vw, 5.5rem); font-weight: 700; line-height: 0.85; }
.stat-label { display: block; color: var(--color-smoke-grey); margin-top: 6px; max-width: 24ch; }

.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card { background: var(--card-dark); border: 1px solid var(--border-dark); padding: 34px; position: relative; }
.testimonial-card::before { content: "\201C"; font-family: var(--font-head); font-size: 5rem; color: var(--color-mikes-red); line-height: 0.6; display: block; margin-bottom: 6px; }
.testimonial-card p { font-size: 1.25rem; color: #e4e4e7; }
.testimonial-card cite { display: block; margin-top: 18px; font-style: normal; font-weight: 600; color: var(--color-smoke-grey); font-size: 0.9rem; letter-spacing: 0.03em; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  position: relative;
  background: radial-gradient(120% 140% at 50% 0%, #1a0104 0%, var(--color-deep-black) 60%);
  padding-block: clamp(80px, 11vw, 150px);
  text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-inner .section-label::before { display: none; }
.cta-title { font-family: var(--font-head); font-weight: 700; font-size: var(--text-h2); line-height: 0.92; text-transform: uppercase; }
.cta-sub { max-width: 50ch; margin: 20px 0 34px; font-size: var(--text-body-lg); color: var(--color-smoke-grey); }
.cta-alt { margin-top: 22px; color: var(--color-smoke-grey); font-size: 0.95rem; }
.cta-alt a { color: #fff; border-bottom: 1px solid var(--color-mikes-red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-carbon-black); border-top: 1px solid var(--border-dark); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 78px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--color-smoke-grey); max-width: 38ch; font-size: 0.95rem; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--color-smoke-grey); font-size: 0.95rem; transition: color 160ms; }
.footer-nav a:hover { color: #fff; }
.footer-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.footer-contact a { color: var(--color-mikes-red); font-weight: 600; }
.footer-loc { color: var(--color-smoke-grey); font-size: 0.9rem; margin-top: 10px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid var(--border-dark); color: var(--color-steel-grey); font-size: 0.82rem; }
.footer-bottom p:last-child { font-family: var(--font-head); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-smoke-grey); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .brand-logo { height: 34px; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--border-dark);
    padding: 8px 20px 20px;
    transform: translateY(-120%);
    transition: transform 280ms ease;
    height: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border-dark); font-size: 1rem; }
  .nav-cta { margin-top: 14px; width: auto; align-self: flex-start; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .work-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions .button-primary, .hero-actions .button-secondary { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   V1.1 ADDITIONS — Story, Services Accordion, Clients, Social
   ============================================================ */

/* ---- Our Story ---- */
.story-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.story-copy .section-title { margin-bottom: 22px; }
.story-copy p { color: var(--color-smoke-grey); font-size: 1.06rem; margin-bottom: 16px; max-width: 60ch; }
.story-pull {
  font-family: var(--font-head); text-transform: uppercase;
  font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.05;
  color: #fff !important; letter-spacing: 0.01em; margin: 26px 0 28px !important;
  padding-left: 20px; border-left: 3px solid var(--color-mikes-red);
}
.story-aside { position: relative; }
.story-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: contrast(1.05) grayscale(0.1); border: 1px solid var(--border-dark); }
.story-slash { position: absolute; left: -14px; bottom: -14px; width: 60%; height: 8px; background: var(--color-mikes-red); transform: skewX(-18deg); }

/* ---- Services Accordion ---- */
.service-accordion { margin-top: 48px; border-top: 1px solid var(--border-dark); }
.service-item { border-bottom: 1px solid var(--border-dark); }
.service-head {
  width: 100%; background: transparent; border: 0; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 6px; text-align: left; cursor: pointer;
  transition: color 180ms ease, padding-left 220ms ease;
}
.service-head > span:first-child {
  font-family: var(--font-head); font-weight: 500; text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1; letter-spacing: 0.01em;
}
.service-head:hover { color: var(--color-action-red); padding-left: 16px; }
.service-head[aria-expanded="true"] { color: var(--color-mikes-red); }
.service-icon { position: relative; flex: none; width: 22px; height: 22px; }
.service-icon::before, .service-icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform 240ms ease, opacity 240ms ease;
}
.service-icon::before { top: 50%; left: 0; width: 100%; height: 3px; transform: translateY(-50%); }
.service-icon::after { left: 50%; top: 0; width: 3px; height: 100%; transform: translateX(-50%); }
.service-head[aria-expanded="true"] .service-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.service-panel { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.service-panel p { color: var(--color-smoke-grey); font-size: 1.06rem; max-width: 68ch; padding: 0 6px 26px; }

/* ---- Clients ---- */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.client-card {
  background: var(--card-dark); border: 1px solid var(--border-dark);
  min-height: 128px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.client-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 100%;
  background: var(--color-mikes-red); transform: skewX(-12deg) translateX(-8px);
  transition: transform 260ms ease;
}
.client-card:hover { transform: translateY(-5px); border-color: rgba(227,6,19,0.5); background: rgba(255,255,255,0.06); }
.client-card:hover::before { transform: skewX(-12deg) translateX(0); }
.client-card span {
  font-family: var(--font-head); text-transform: uppercase; font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.02; letter-spacing: 0.02em;
}

/* ---- Footer social ---- */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--border-dark); color: var(--color-smoke-grey);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.footer-social a:hover { color: #fff; border-color: var(--color-mikes-red); background: var(--color-mikes-red); transform: translateY(-2px); }

/* ---- who-item tweak (numbers removed) ---- */
.who-item h3 { margin-top: 0; }

/* ---- CTA multi-button ---- */
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---- Responsive additions ---- */
@media (max-width: 960px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-aside { max-width: 460px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .client-grid { grid-template-columns: 1fr; }
  .cta-actions .button-primary, .cta-actions .button-secondary { width: 100%; }
}

/* ============================================================
   V1.2 — Story teaser, Logo carousel, Testimonials, About page
   ============================================================ */

/* ---- Story teaser (homepage, condensed) ---- */
.story-copy .story-lead { font-size: 1.1rem; }
.story-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; align-items: center; }

/* ---- Logo carousel (marquee) ---- */
.logo-marquee {
  margin-top: 52px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track { display: flex; width: max-content; align-items: center; animation: logo-scroll 34s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-slide {
  flex: none;
  width: 240px; height: 130px;
  display: grid; place-items: center;
  padding: 0 24px;
}
.logo-slide img {
  max-width: 100%; max-height: 92px; width: auto; height: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 220ms ease, transform 220ms ease;
}
.logo-slide img:hover { opacity: 1; transform: scale(1.05); }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Testimonials ---- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonials-head { margin-top: 96px; }
.testimonial-card { background: var(--card-dark); border: 1px solid var(--border-dark); padding: 32px; position: relative; }
.testimonial-card::before { content: "\201C"; font-family: var(--font-head); font-size: 4.6rem; color: var(--color-mikes-red); line-height: 0.6; display: block; margin-bottom: 4px; }
.testimonial-card p { font-size: 1.12rem; color: #e4e4e7; }
.testimonial-card cite { display: block; margin-top: 18px; font-style: normal; font-weight: 600; color: var(--color-smoke-grey); font-size: 0.9rem; letter-spacing: 0.03em; }
.testimonial-card .stars { color: var(--color-mikes-red); letter-spacing: 3px; font-size: 0.95rem; margin-top: 14px; }

/* ---- About page ---- */
.subpage { padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px)); }
.about-hero { position: relative; }
.about-hero .section-title { font-size: var(--text-h1); }
.about-lead { font-size: 1.3rem; color: var(--color-smoke-grey); max-width: 62ch; margin-top: 20px; }
.about-body { margin-top: 40px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }
.about-body p { color: var(--color-smoke-grey); font-size: 1.08rem; margin-bottom: 18px; max-width: 62ch; }
.about-pull {
  font-family: var(--font-head); text-transform: uppercase; color: #fff !important;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.05; letter-spacing: 0.01em;
  padding-left: 22px; border-left: 4px solid var(--color-mikes-red); margin: 30px 0 !important;
}
.about-media { position: relative; position: sticky; top: calc(var(--header-h) + 24px); }
.about-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border: 1px solid var(--border-dark); filter: contrast(1.05) grayscale(0.08); }
.about-media .story-slash { left: -12px; bottom: -12px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px; }
.value-card { border-top: 3px solid var(--color-mikes-red); padding-top: 22px; }
.value-card h3 { font-family: var(--font-head); font-size: 1.9rem; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.value-card p { color: var(--color-smoke-grey); font-size: 0.98rem; }

@media (max-width: 960px) {
  .testimonials { grid-template-columns: 1fr; }
  .about-body { grid-template-columns: 1fr; gap: 36px; }
  .about-media { position: relative; top: 0; max-width: 460px; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .logo-slide { width: 180px; height: 110px; padding: 0 16px; }
  .logo-slide img { max-height: 74px; }
}

/* ============================================================
   V1.3 — Services 2x2, Contact form, FAQ, Footer fix, Legal
   ============================================================ */

/* ---- Services 2 x 2 (override earlier 3-col) ---- */
.section-services .service-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
.section-services .service-card { display: flex; flex-direction: column; }
.section-services .service-card h3 { font-family: var(--font-head); font-size: clamp(1.7rem, 2.4vw, 2.2rem); font-weight: 600; text-transform: uppercase; line-height: 1.02; margin: 0 0 12px; }
.section-services .service-card > p { color: var(--color-smoke-grey); margin: 0; }
.service-card--wide { grid-column: 1 / -1; }

/* ---- Contact section (form + info) ---- */
.section-contact { text-align: left; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-intro .cta-title { text-align: left; }
.contact-intro .cta-sub { margin-left: 0; margin-right: 0; text-align: left; }
.contact-direct { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.contact-direct li { display: flex; gap: 16px; align-items: baseline; }
.contact-k { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-mikes-red); font-size: 1.05rem; min-width: 62px; }
.contact-direct a { color: #fff; border-bottom: 1px solid rgba(227,6,19,0.6); }
.contact-direct a:hover { color: var(--color-action-red); }
.contact-social { display: flex; gap: 12px; margin-top: 24px; }
.contact-social a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--border-dark); color: var(--color-smoke-grey); transition: all 180ms ease; }
.contact-social a:hover { color: #fff; border-color: var(--color-mikes-red); background: var(--color-mikes-red); transform: translateY(-2px); }

/* ---- Form ---- */
.contact-form { background: var(--card-dark); border: 1px solid var(--border-dark); padding: clamp(24px, 3vw, 36px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field > span { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.05rem; color: #d4d4d8; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: #fff;
  background: rgba(0,0,0,0.35); border: 1px solid var(--border-dark);
  padding: 13px 14px; border-radius: 0; width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #6b6b73; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-mikes-red) 50%), linear-gradient(135deg, var(--color-mikes-red) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1.25em), calc(100% - 14px) calc(1.25em);
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-mikes-red); box-shadow: 0 0 0 3px rgba(227,6,19,0.18); }
.form-submit { margin-top: 6px; width: 100%; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin-top: 14px; font-size: 0.95rem; min-height: 1.2em; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: var(--color-action-red); }

/* ---- FAQ ---- */
.section-faq .faq-list { margin-top: 44px; border-top: 1px solid var(--border-light); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 4px; position: relative;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.01em;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--color-deep-black); line-height: 1.1;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.8rem; color: var(--color-mikes-red); font-family: var(--font-body); line-height: 1; transition: transform 220ms ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer { padding: 0 4px 24px; }
.faq-answer p { color: var(--color-steel-grey); font-size: 1.05rem; max-width: 70ch; }
.faq-answer a { color: var(--color-mikes-red); border-bottom: 1px solid rgba(227,6,19,0.5); }

/* ---- Footer contact lines ---- */
.footer-contact .footer-line { display: block; color: var(--color-mikes-red); font-weight: 600; margin-bottom: 6px; }
.footer-contact .footer-line:hover { color: var(--color-action-red); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--color-steel-grey); font-size: 0.82rem; transition: color 160ms; }
.footer-legal a:hover { color: var(--color-smoke-grey); }

/* ---- Legal pages ---- */
.legal { padding-top: calc(var(--header-h) + clamp(48px, 8vw, 90px)); }
.legal .legal-body { max-width: 820px; }
.legal h1 { font-family: var(--font-head); font-size: var(--text-h2); text-transform: uppercase; line-height: 0.95; }
.legal .updated { color: var(--color-steel-grey); margin: 14px 0 8px; font-size: 0.9rem; }
.legal h2 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.9rem; margin: 34px 0 10px; color: #fff; }
.legal p, .legal li { color: var(--color-smoke-grey); font-size: 1.02rem; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--color-mikes-red); border-bottom: 1px solid rgba(227,6,19,0.5); }
.legal .disclaimer { border-left: 3px solid var(--color-mikes-red); padding: 14px 18px; background: var(--card-dark); color: #d4d4d8; margin: 24px 0; font-size: 0.95rem; }

/* ---- Responsive: contact + services ---- */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-intro .cta-title, .contact-intro .cta-sub { text-align: left; }
}
@media (max-width: 720px) {
  .section-services .service-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   V1.3 — Full mobile audit (small screens)
   ============================================================ */
@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .container { width: min(100% - 28px, 1280px); }
  .brand-logo { height: 30px; }
  .hero-title { font-size: clamp(2.75rem, 15vw, 4rem); }
  .hero-sub { font-size: 1.05rem; }
  .button-primary, .button-secondary { font-size: 1.15rem; padding: 13px 20px; }
  .button-lg { font-size: 1.3rem; padding: 16px 24px; }
  .section-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .cta-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .section-intro, .story-lead { font-size: 1.05rem; }
  .contact-direct li { flex-direction: column; gap: 2px; }
  .footer-bottom { text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 360px) {
  .hero-title { font-size: clamp(2.4rem, 15vw, 3.2rem); }
  .logo-slide { width: 150px; }
}

/* ============================================================
   V1.4 — Collapsible services + inline process strip
   ============================================================ */

/* Process strip (folded into Services) */
.process-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; margin-top: 26px; }
.process-strip li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: 0.03em; color: #fff;
}
.process-strip .step-n { color: var(--color-mikes-red); font-weight: 700; }
.process-strip li:not(:last-child)::after {
  content: "\203A"; color: var(--color-mikes-red); font-size: 1.4em; margin-left: 18px; line-height: 1;
}

.services-hint { color: var(--color-steel-grey); font-size: 0.9rem; margin: 40px 0 16px; }

/* Collapsible service cards (details/summary) */
.section-services .service-grid { margin-top: 0; }
.section-services details.service-card { display: block; padding: 0; overflow: hidden; }
.section-services details.service-card:hover { transform: none; }
.section-services details.service-card[open] { border-color: rgba(227,6,19,0.5); }
.section-services details.service-card > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; transition: color 180ms ease;
}
.section-services details.service-card > summary::-webkit-details-marker { display: none; }
.section-services details.service-card > summary h3 {
  margin: 0; font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem); line-height: 1.05;
}
.section-services details.service-card > summary:hover { color: var(--color-action-red); }
.section-services details.service-card[open] > summary { color: var(--color-mikes-red); }
.section-services .service-body { padding: 0 24px 24px; }
.section-services .service-body p { color: var(--color-smoke-grey); margin: 0; }

/* +/- indicator */
.section-services .service-icon { position: relative; flex: none; width: 20px; height: 20px; }
.section-services .service-icon::before,
.section-services .service-icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform 240ms ease, opacity 240ms ease;
}
.section-services .service-icon::before { top: 50%; left: 0; width: 100%; height: 3px; transform: translateY(-50%); }
.section-services .service-icon::after { left: 50%; top: 0; width: 3px; height: 100%; transform: translateX(-50%); }
.section-services details.service-card[open] .service-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }

/* ============================================================
   V1.5 — About page: Our Story subhead + Meet The Staff
   ============================================================ */
.about-subhead { font-size: clamp(1.9rem, 3.5vw, 3rem); margin: 52px 0 4px; }
.about-subhead::before {
  content: ""; display: block; width: 54px; height: 4px; background: var(--color-mikes-red);
  transform: skewX(-18deg); margin-bottom: 18px;
}

.section-staff .staff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px;
}
.staff-card {
  background: var(--card-dark); border: 1px solid var(--border-dark);
  padding: 28px; text-align: center;
  transition: transform 220ms ease, border-color 220ms ease;
}
.staff-card:hover { transform: translateY(-5px); border-color: rgba(227,6,19,0.5); }
.staff-photo {
  position: relative; width: 132px; height: 132px; margin: 0 auto 20px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1c1c1e 0%, #0c0c0e 60%, #1a0104 100%);
  border: 1px solid var(--border-dark); border-radius: 50%;
  color: var(--color-steel-grey); overflow: hidden;
}
/* When a real headshot is added: <img> fills the circle */
.staff-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.staff-photo-tag {
  position: absolute; bottom: 12px; font-family: var(--font-head);
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--color-steel-grey);
}
.staff-name {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: 1.8rem; line-height: 1; margin-bottom: 4px;
}
.staff-role {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-mikes-red); font-size: 1.1rem; margin-bottom: 12px;
}
.staff-bio { color: var(--color-smoke-grey); font-size: 0.98rem; }

@media (max-width: 900px) { .section-staff .staff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .section-staff .staff-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

/* ============================================================
   V1.6 — Form validation UI + consent checkbox
   ============================================================ */
/* Inline invalid states (only after the user interacts / submits) */
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: var(--color-action-red);
  box-shadow: 0 0 0 3px rgba(255,31,45,0.16);
}

/* Consent checkbox */
.field-check {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 4px 0 20px; font-size: 0.92rem; color: var(--color-smoke-grey); line-height: 1.5;
}
.field-check input[type="checkbox"] {
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  accent-color: var(--color-mikes-red); cursor: pointer;
}
.field-check a { color: #fff; border-bottom: 1px solid var(--color-mikes-red); }
.field-check a:hover { color: var(--color-action-red); }
.field-check input:user-invalid { outline: 2px solid var(--color-action-red); outline-offset: 2px; }

/* ============================================================
   V1.7 — Hero montage + intro, video work grid, lightbox
   ============================================================ */
/* Hero cross-fade montage */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; will-change: opacity, transform;
}
.hero-slide.is-active { opacity: 1; animation: kenburns 6.5s ease-out both; }
@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.09); } }

/* Branded intro: logo on black, fades out to reveal montage */
.hero-intro {
  position: absolute; inset: 0; z-index: 6; background: var(--color-deep-black);
  display: grid; place-items: center; pointer-events: none;
  animation: heroIntro 1.9s ease forwards;
}
.hero-intro img { width: min(62%, 440px); height: auto; }
@keyframes heroIntro { 0%, 55% { opacity: 1; } 100% { opacity: 0; visibility: hidden; } }

/* Video work grid (portrait reels) */
.section-work .work-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 52px; }
.video-card {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden; cursor: pointer;
  border: 1px solid var(--border-dark); background: var(--card-dark); padding: 0; display: block;
}
.video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease, filter 400ms ease; }
.video-card:hover img, .video-card:focus-visible img { transform: scale(1.05); filter: contrast(1.08) brightness(0.82); }
.video-card .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; }
.video-card .play::before { border-width: 10px 0 10px 16px; margin-left: 3px; }
.video-card:hover .play, .video-card:focus-visible .play { transform: translate(-50%, -50%) scale(1.12); background: var(--color-action-red); }
.video-title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; text-align: left;
  padding: 26px 12px 12px; color: #fff; font-family: var(--font-head); font-weight: 500;
  text-transform: uppercase; font-size: 1.05rem; line-height: 1.05; letter-spacing: 0.02em;
  background: linear-gradient(transparent, rgba(0,0,0,0.86));
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: blur(4px); }
.lightbox-inner { position: relative; z-index: 1; width: 100%; max-width: min(90vw, 460px); }
.lightbox-video { width: 100%; max-height: 80vh; display: block; background: #000; border: 1px solid var(--border-dark); }
.lightbox-close { position: absolute; top: -48px; right: -4px; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; padding: 4px 10px; }
.lightbox-close:hover { color: var(--color-mikes-red); }
.lightbox-caption { color: var(--color-smoke-grey); text-align: center; margin-top: 14px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.15rem; }
body.no-scroll { overflow: hidden; }

@media (max-width: 1100px) { .section-work .work-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 820px)  { .section-work .work-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .section-work .work-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

@media (prefers-reduced-motion: reduce) {
  .hero-intro { animation: none; opacity: 0; visibility: hidden; }
  .hero-slide.is-active { animation: none; }
}

/* ============================================================
   V1.8 — Split hero (looping video) + Our Work scroll shelf
   ============================================================ */
/* Split hero overrides the full-bleed centering */
.hero--split { display: block; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(28px, 4vw, 60px);
  align-items: center; min-height: 100svh;
  padding-top: calc(var(--header-h) + 28px); padding-bottom: 52px;
}
.hero--split .hero-content { position: relative; z-index: 2; padding-block: 0; }

.hero-media-panel { position: relative; display: flex; justify-content: center; }
.hero-video {
  position: relative; z-index: 1;
  height: min(76svh, 720px); width: auto; max-width: 100%;
  aspect-ratio: 9 / 16; object-fit: cover;
  background: #000; border: 1px solid var(--border-dark);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.hero-panel-slash {
  position: absolute; z-index: 0; right: 4%; bottom: -14px;
  width: 60%; height: 12px; background: var(--color-mikes-red); transform: skewX(-18deg);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr; min-height: auto; gap: 34px;
    padding-top: calc(var(--header-h) + 34px); padding-bottom: 44px;
  }
  .hero-video { height: 56svh; max-height: 500px; }
  .hero-panel-slash { right: 8%; }
}

/* Our Work — horizontal scroll shelf */
.work-shelf { position: relative; margin-top: 44px; }
.work-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 2px 12px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.work-track::-webkit-scrollbar { display: none; }
.work-track .video-card { flex: 0 0 auto; width: clamp(178px, 22vw, 248px); scroll-snap-align: start; }

.shelf-arrow {
  position: absolute; top: calc(50% - 8px); transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(20, 20, 20, 0.92); border: 1px solid var(--border-dark); color: #fff;
  font-family: var(--font-head); font-size: 2.2rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.shelf-arrow:hover { background: var(--color-mikes-red); border-color: var(--color-mikes-red); }
.shelf-prev { left: -12px; }
.shelf-next { right: -12px; }
@media (max-width: 700px) { .shelf-arrow { display: none; } }

/* ============================================================
   V1.9 — Two-part hero (team photo + on-location collage)
   ============================================================ */
.hero--duo { display: block; }
.hero-duo { display: grid; grid-template-columns: 1.06fr 0.94fr; min-height: 100svh; }
.hero-pane { position: relative; overflow: hidden; }

/* Left: headline over team photo */
.hero-pane--text { display: flex; align-items: center; }
.hero-pane-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: contrast(1.05) grayscale(0.12); }
.hero-pane-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.82) 55%, rgba(10,10,10,0.55) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 45%);
}
.hero--duo .hero-content {
  position: relative; z-index: 2; padding-block: 40px;
  padding-inline: clamp(24px, 5vw, 56px);
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 20px));
  max-width: 760px;
}

/* Right: cross-fading on-location collage */
.hero-pane--collage .hero-collage { position: absolute; inset: 0; }
.hero-collage-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0) 24%),
    linear-gradient(0deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 38%);
}

/* Slower branded intro: logo fades in, holds, fades out */
.hero-intro { animation: heroIntro2 2.8s ease forwards; }
.hero-intro img { animation: heroIntroLogo 2.8s ease forwards; }
@keyframes heroIntro2 { 0% { opacity: 1; } 70% { opacity: 1; } 100% { opacity: 0; visibility: hidden; } }
@keyframes heroIntroLogo {
  0% { opacity: 0; transform: scale(0.94); }
  24% { opacity: 1; transform: scale(1); }
  62% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.01); }
}

@media (max-width: 860px) {
  .hero-duo { grid-template-columns: 1fr; min-height: auto; }
  .hero-pane--text { min-height: 58svh; }
  .hero--duo .hero-content { padding: calc(var(--header-h) + 34px) 24px 44px; padding-left: 24px; }
  .hero-pane--collage { min-height: 40svh; }
  .hero-collage-scrim { background: linear-gradient(0deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0) 42%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-intro { animation: none; opacity: 0; visibility: hidden; }
}

/* "See more on Facebook" link under Our Work */
.work-more { margin-top: 24px; }
.work-more a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1.3rem; color: #fff; border-bottom: 2px solid var(--color-mikes-red);
  padding-bottom: 3px; transition: color 180ms ease, gap 180ms ease;
}
.work-more a:hover { color: var(--color-mikes-red); gap: 13px; }

/* ============================================================
   V2.0 — Keep on-location photos in-shape on mobile
   On phones/tablets the collage becomes a centered 3:4 portrait
   frame (matching the source photos) instead of a cropped strip.
   ============================================================ */
@media (max-width: 860px) {
  .hero-pane--collage {
    display: flex; align-items: center; justify-content: center;
    padding: 4px 24px 42px; min-height: auto;
  }
  .hero-pane--collage .hero-collage {
    position: relative; inset: auto;
    width: min(86%, 360px); aspect-ratio: 3 / 4;
    border: 1px solid var(--border-dark);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  }
  .hero-collage-scrim { display: none; }
}

/* ============================================================
   V2.1 — Right-size the split hero
   Smaller headline in the split column + slightly shorter hero
   so the sub-copy and both CTA buttons stay above the fold.
   ============================================================ */
.hero-duo { min-height: 88svh; }
.hero--duo .hero-title { font-size: clamp(2.6rem, 5.2vw, 5.5rem); line-height: 0.9; }
.hero--duo .hero-sub { margin-top: 20px; }
.hero--duo .hero-actions { margin-top: 30px; }
@media (max-width: 860px) {
  .hero-duo { min-height: auto; }
  .hero--duo .hero-title { font-size: clamp(2.6rem, 11vw, 4.2rem); }
}

/* ============================================================
   V2.2 — "On Location" signature tag on the collage
   ============================================================ */
.on-location-tag {
  position: absolute; z-index: 3;
  right: clamp(16px, 2.2vw, 30px); bottom: clamp(14px, 2vw, 26px);
  font-family: "Caveat", "Segoe Script", cursive; font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1; color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
  transform: rotate(-4deg); pointer-events: none; text-align: right;
}
.on-location-tag::after {
  content: ""; display: block; height: 3px; width: 64%;
  margin: 3px 0 0 auto; background: var(--color-mikes-red); transform: skewX(-16deg);
}
@media (max-width: 860px) {
  .on-location-tag { font-size: clamp(1.8rem, 7vw, 2.4rem); right: 16px; bottom: 14px; }
}

/* ============================================================
   V2.3 — Two testimonials (centered pair)
   ============================================================ */
.section-clients .testimonials { grid-template-columns: repeat(2, 1fr); max-width: 960px; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) { .section-clients .testimonials { grid-template-columns: 1fr; } }

/* ============================================================
   V2.4 — Mobile horizontal-overflow hardening
   ============================================================ */
html, body { max-width: 100%; }
img, svg, video, iframe { max-width: 100%; }
/* keep the Ken Burns zoom inside the collage frame */
.hero-collage { overflow: hidden; }
/* let long email/phone strings break instead of forcing width */
.cta-alt, .cta-alt a, .footer-line, .contact-direct a { overflow-wrap: anywhere; }
