/* ============================================
   Octavia March — Global Brand Site
   Palette: Black / Off-white / Chrome Gold
============================================ */

:root {
  --black: #0a0a0a;
  --near-black: #121110;
  --charcoal: #1c1a18;
  --off-white: #f3efe8;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-bright: #f4d874;
  --gold-deep: #8a6a1c;
  --gray: #8a877f;

  --chrome-gold: linear-gradient(100deg,
    #6e5218 0%, #b8860b 12%, #e9c765 24%, #fff6da 36%,
    #d4af37 48%, #8a6a1c 58%, #f4d874 70%, #b8860b 82%,
    #f9e79f 92%, #6e5218 100%);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --edge: clamp(24px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  background-image:
    radial-gradient(ellipse 900px 500px at 85% 8%, rgba(212,175,55,0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 45%, rgba(212,175,55,0.05), transparent 60%),
    radial-gradient(ellipse 900px 600px at 90% 75%, rgba(212,175,55,0.07), transparent 60%);
  background-attachment: fixed;
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--black); }

.icon { width: 18px; height: 18px; }

/* subtle grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.accent-text { font-style: italic; }

/* Chrome gold shimmer text */
.chrome-text {
  background-image: var(--chrome-gold);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeShift 7s ease-in-out infinite;
}
@keyframes chromeShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--edge);
  transition: background .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(10px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links a { position: relative; padding-bottom: 4px; white-space: nowrap; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: background .3s ease, color .3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--chrome-gold); background-size: 250% 100%; color: var(--black); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--off-white); display: block; transition: all .3s ease; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100svh;
  background: var(--black);
  padding: 110px var(--edge) 40px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  z-index: 90;
  overflow-y: auto;
}
.nav-mobile a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(243,239,232,0.1);
  color: var(--off-white);
}
.nav-mobile.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 10% 10%;
  filter: grayscale(1) contrast(1.08);
  transform: scale(0.82);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 30%, rgba(10,10,10,0.55) 70%, var(--black) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.55) 42%, rgba(10,10,10,0.15) 68%, rgba(10,10,10,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px var(--edge) 40px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--off-white);
  opacity: 0.85;
  margin-bottom: 18px;
}
.hero-kicker .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.86;
  font-size: clamp(60px, 12vw, 168px);
  letter-spacing: 0.005em;
}
.hero-title .line { display: block; }
.hero-title .accent { text-shadow: 0 0 50px rgba(212,175,55,0.3); }
.hero-title .period { color: var(--off-white); -webkit-text-fill-color: var(--off-white); }
.hero-name {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  font-weight: 500;
  font-style: italic;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(243,239,232,0.15);
  margin: 0 var(--edge);
}
.stat {
  padding: 18px 20px 32px 0;
  border-right: 1px solid rgba(243,239,232,0.15);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 34px);
  text-transform: uppercase;
  line-height: 1.1;
}
.stat-num .plus { font-size: 0.6em; }
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: var(--edge);
  bottom: 130px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.75;
}
.scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ SPOTLIGHT (testimonials) ============ */
.spotlight { position: relative; padding: 32px 0; background: var(--near-black); overflow: hidden; }
.spotlight-glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,159,67,0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.spotlight-heading {
  position: relative;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--off-white);
  margin-bottom: 22px;
}
.spotlight-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.spotlight-track {
  display: inline-flex;
  align-items: stretch;
  width: max-content;
  animation: marquee 55s linear infinite;
  will-change: transform;
}
@media (hover: hover) {
  .spotlight-track:hover { animation-play-state: paused; }
}
.spotlight-card {
  flex-shrink: 0;
  width: 320px;
  margin-right: 24px;
  background: var(--charcoal);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 4px;
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}
.spotlight-card:hover { border-color: rgba(255,159,67,0.5); transform: translateY(-3px); }
.spotlight-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.spotlight-avatar {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
}
.avatar-1 { background: #E8615D; }
.avatar-2 { background: #2FBFA0; }
.avatar-3 { background: #9B72E0; }
.avatar-4 { background: #F2A93B; }
.avatar-5 { background: #E8659F; }
.avatar-6 { background: #4E96E8; }
.avatar-7 { background: #52B788; }
.spotlight-by {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--off-white);
  font-weight: 600;
}
.spotlight-by small {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 2px;
}
.spotlight-card p {
  color: var(--off-white);
  opacity: 0.92;
  font-size: 14.5px;
  line-height: 1.55;
  flex-grow: 1;
}

/* ============ MARQUEE (social ticker) ============ */
.marquee {
  background: linear-gradient(100deg, #b8860b, #e9c765, #f4d874, #d4af37, #b8860b);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
/* NOTE: spacing is per-item margin (not container gap) on purpose — with a
   container `gap`, the seam between the two duplicated halves gets one extra
   gap that the -50% loop point doesn't account for, causing a visible stutter.
   Per-item trailing margin keeps every item, including the seam, identical. */
.marquee-track {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: marquee 30s linear infinite;
  width: max-content;
  /* Forces GPU compositing — without it, iOS Safari can pause this animation
     when it scrolls off-screen and fail to properly resume it on return,
     leaving the marquee stuck. */
  will-change: transform;
}
/* (hover: hover) excludes touch devices — without it, tapping the marquee on
   mobile can leave :hover "stuck" (iOS Safari quirk), freezing the animation
   permanently since there's no mouse to un-hover it. */
@media (hover: hover) {
  .marquee-track:hover { animation-play-state: paused; }
}
.m-item { display: inline-flex; align-items: center; gap: 8px; margin-right: 16px; }
.m-icon { width: 16px; height: 16px; flex-shrink: 0; }
.marquee .m-star { font-size: 11px; opacity: 0.6; margin-right: 16px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTION SHARED ============ */
section { padding: 64px var(--edge); position: relative; }
section[id] { scroll-margin-top: 88px; }
.section-head { max-width: 700px; margin-bottom: 56px; }
.credits-heading {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: 0.02em;
  color: var(--off-white);
  margin-bottom: 48px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head h2, .about-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
  color: var(--off-white);
  overflow: visible;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  margin-top: 8px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.read-more-btn:hover { background: var(--gold); color: var(--black); transform: translateX(2px); }
.read-more-btn .arrow { transition: transform .3s ease; }
.read-more-btn:hover .arrow { transform: translateX(3px); }

/* ============ ABOUT ============ */
.about {
  padding: 0;
  overflow: hidden;
}
.about-bg { position: absolute; inset: 0; z-index: 0; }
.about-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% 14%;
  filter: grayscale(0.15) contrast(1.05);
}
.about-bg-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.62) 30%, rgba(10,10,10,0.15) 55%, rgba(10,10,10,0.04) 75%, rgba(10,10,10,0.12) 100%),
    linear-gradient(0deg, var(--black) 0%, rgba(10,10,10,0.18) 16%, rgba(10,10,10,0.18) 84%, var(--black) 100%);
}
.about-image-tag {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 1;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  font-weight: 700;
}
.about-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 120px var(--edge) 70px;
}
.about-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
/* Italic text combined with background-clip:text clips the trailing glyph's
   slant overhang in WebKit/Blink — inline-block + right padding gives that
   overhang somewhere to go instead of getting cut off. */
.about-shrink { font-size: 0.7em; display: inline-block; padding-right: 0.1em; }
.about-content p { color: var(--off-white); opacity: 0.88; margin-bottom: 20px; font-size: 16px; }
.about-lede { font-size: 20px !important; line-height: 1.5; opacity: 1 !important; color: var(--white); font-weight: 500; }
.about-content strong { color: var(--gold-bright); font-weight: 700; }
.about-quote {
  margin-top: 32px;
  padding: 26px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.08);
  backdrop-filter: blur(4px);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.3;
  color: var(--gold-bright);
}
.quote-mark { color: var(--gold); opacity: 0.5; font-size: 1.4em; margin-right: 4px; }

/* ============ BIO MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px var(--edge);
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  background: var(--near-black);
  border: 1px solid rgba(212,175,55,0.3);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 52px 48px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
}
.modal-panel h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 32px);
  margin: 8px 0 24px;
  color: var(--off-white);
}
.modal-panel p { color: var(--off-white); opacity: 0.85; margin-bottom: 18px; font-size: 15.5px; line-height: 1.65; }
.modal-panel strong { color: var(--gold-bright); }
.modal-panel em { color: var(--gold-bright); font-style: normal; font-weight: 600; }
.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid rgba(243,239,232,0.25);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  transition: border-color .25s ease, color .25s ease;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

/* Wide variant for content-heavy modals (rate card) */
.modal-panel--wide { max-width: 920px; padding: 56px 60px; }
.rates-effective { font-size: 13px !important; color: var(--gray) !important; opacity: 1 !important; margin-top: -14px !important; margin-bottom: 40px !important; }
.rate-group { margin-bottom: 44px; padding-bottom: 8px; border-bottom: 1px solid rgba(243,239,232,0.1); }
.rate-group:last-child { border-bottom: none; margin-bottom: 0; }
.rate-group h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.rate-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.6;
  margin: 26px 0 10px;
}
.rate-sub:first-of-type { margin-top: 0; }
.rate-sub span { text-transform: none; letter-spacing: normal; font-weight: 400; opacity: 0.8; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(243,239,232,0.1);
  font-size: 15.5px;
}
.rate-row span { color: var(--off-white); opacity: 0.9; }
.rate-row strong { color: var(--white); font-weight: 700; white-space: nowrap; }
.rate-row--add { font-size: 14px; opacity: 0.8; }
.rate-row--add span { opacity: 0.75; }
.rate-includes {
  list-style: none;
  padding: 10px 0 4px;
  margin: 0;
}
.rate-includes li {
  font-size: 13.5px;
  color: var(--off-white);
  opacity: 0.6;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.rate-includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
}
.rate-fine { font-size: 12.5px !important; color: var(--gray) !important; opacity: 1 !important; font-style: italic; margin: 10px 0 0 !important; }

/* ============ WORK WITH ME ============ */
.work { padding: 48px var(--edge); }
.work-inner { max-width: var(--container); margin: 0 auto; }
.work-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin: 16px 0 18px;
  color: var(--off-white);
}
.work-sub { color: var(--off-white); opacity: 0.75; font-size: 17px; max-width: 560px; margin-bottom: 56px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.2);
}
.work-card {
  background: var(--near-black);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.work-card-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.work-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2px;
}
.work-card p { color: var(--off-white); opacity: 0.75; font-size: 15px; line-height: 1.6; }
.work-card .read-more-btn { margin-top: 10px; align-self: flex-start; }
.work-note { font-size: 12.5px !important; opacity: 0.55 !important; margin-top: 2px !important; }
.work-card--turnaround { justify-content: center; }
.turnaround-stats { display: flex; gap: 36px; margin: 4px 0 6px; }
.turnaround-stat { display: flex; flex-direction: column; }
.turnaround-stat span {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}
.turnaround-stat span small { font-size: 0.4em; margin-left: 2px; }
.turnaround-stat > small {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============ VIRAL MOMENTS ============ */
.viral { padding: 56px var(--edge); }
.viral-inner { max-width: var(--container); margin: 0 auto; }
.viral-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(36px, 5.6vw, 60px);
  line-height: 1.05;
  margin: 16px 0 14px;
  color: var(--off-white);
}
.viral-sub { color: var(--off-white); opacity: 0.75; font-size: 17px; max-width: 560px; margin-bottom: 44px; }
.viral-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.2);
}
.viral-card {
  background: var(--near-black);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .3s ease;
}
.viral-card:hover { background: var(--charcoal); }
.viral-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.viral-platform .icon { width: 15px; height: 15px; flex-shrink: 0; }
.viral-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 60px);
  line-height: 1;
  text-transform: uppercase;
}
.viral-num small { font-size: 0.5em; }
.viral-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.viral-card p {
  color: var(--off-white);
  opacity: 0.75;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 16px 0 20px;
  flex-grow: 1;
}
.viral-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bright);
}
.viral-watch .arrow { transition: transform .3s ease; }
.viral-card:hover .viral-watch .arrow { transform: translate(3px,-3px); }

/* ============ PRESS / CREDITS ============ */
.press-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
/* Spacing is per-item margin, not container gap — see .marquee-track note above
   for why: it's what keeps the two duplicated halves seamless at the loop point. */
.press-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
@media (hover: hover) {
  .press-track:hover { animation-play-state: paused; }
}
.press-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  flex-shrink: 0;
  margin-right: 48px;
}
.press-cell img {
  max-height: 100%;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.88;
  transition: opacity .3s ease, transform .3s ease;
}
.press-cell:hover img { opacity: 1; transform: scale(1.06); }
.imdb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F5C518;
  color: #000;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  padding: 6px 12px 8px;
  border-radius: 5px;
  opacity: 0.88;
  transition: opacity .3s ease, transform .3s ease;
}
.press-cell--imdb:hover .imdb-badge { opacity: 1; transform: scale(1.06); }

/* ============ WATCH ============ */
.watch {
  position: relative;
  padding: 0;
  min-height: 92vh;
  overflow: hidden;
}
.watch-media { position: absolute; inset: 0; z-index: 0; }
.watch-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.watch-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 28%, rgba(10,10,10,0.1) 52%, transparent 68%),
    linear-gradient(0deg, rgba(10,10,10,0.7) 0%, transparent 30%);
}
.watch-overlay {
  position: absolute;
  z-index: 1;
  top: 130px;
  left: var(--edge);
  max-width: 460px;
  text-align: left;
}
.watch-heading {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  margin-top: 6px;
}
.watch-sub { margin-top: 18px; color: var(--off-white); opacity: 0.85; font-size: 16px; max-width: 420px; }
.watch-controls {
  position: absolute;
  z-index: 1;
  bottom: 24px; right: 24px;
  display: flex;
  gap: 10px;
}
.watch-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.watch-btn:hover { background: var(--gold); color: var(--black); transform: scale(1.08); }

/* ============ MUSIC IV BREAKFAST ============ */
.mib {
  background: radial-gradient(ellipse at 20% 30%, rgba(212,175,55,0.08), transparent 55%);
  padding: 100px var(--edge) 50px;
}
.mib-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.mib-mark {
  display: block;
  width: 118px; height: 118px;
  border-radius: 20px;
  overflow: hidden;
  margin: 6px 0 26px;
  background: transparent;
  padding: 14px;
  box-sizing: border-box;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.4), 0 20px 40px -20px rgba(0,0,0,0.7);
}
.mib-mark img { width: 100%; height: 100%; object-fit: contain; }
.mib-sub { color: var(--off-white); opacity: 0.85; font-size: 18px; max-width: 520px; margin-bottom: 40px; }
.mib-sub em { color: var(--gold-bright); font-style: italic; }
.mib-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(243,239,232,0.12);
}
.mib-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  text-transform: uppercase;
  line-height: 1;
}
.mib-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-transform: uppercase;
}
.mib-label small { opacity: 0.7; text-transform: none; letter-spacing: 0; }
.mib-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8);
  overflow: hidden;
}
.mib-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ============ CONTACT ============ */
.contact { padding-top: 48px; }
.contact-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.contact-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(44px, 9vw, 100px);
  line-height: 0.92;
  margin: 18px 0 56px;
}
.contact-grid {
  display: flex;
  justify-content: center;
}
.contact-form {
  width: 100%;
  max-width: 620px;
  background: var(--near-black);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(243,239,232,0.18);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  padding: 13px 14px;
  border-radius: 3px;
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  margin-top: 4px;
  transition: background .3s ease, transform .3s ease;
}
.submit-btn:hover { background: var(--gold-bright); transform: translateX(2px); }
.submit-btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-status {
  font-size: 13.5px;
  line-height: 1.5;
  min-height: 1.2em;
  margin-top: -6px;
}
.form-status--success { color: var(--gold-bright); }
.form-status--error { color: #e0a0a0; }

/* ============ FOOTER ============ */
.footer {
  padding: 48px var(--edge) 32px;
  text-align: center;
}
.footer-logo { height: 34px; margin: 0 auto 18px; opacity: 0.9; }
.footer-tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 30px;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.03em;
}

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(243,239,232,0.15); padding: 16px 0; }
  .stat:last-child { border-bottom: none; }
  .about-inner { padding: 120px var(--edge) 70px; }
  /* object-position/scale above were tuned for wide landscape viewports —
     object-fit:cover crops very differently on a narrow, tall phone screen,
     so both need their own values here rather than inheriting the desktop ones. */
  .hero-img { object-position: 60% 12%; transform: scale(1); }
  .about-bg-scrim {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 45%, var(--black) 100%),
      linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.55) 100%);
  }
  .press-row { gap: 28px 20px; }
  .watch-overlay { top: 100px; left: var(--edge); right: var(--edge); max-width: none; }
  /* Desktop's diagonal scrim only darkens the top-left corner, sized around a
     460px-wide text block. On mobile the overlay spans the full width instead,
     so the back half of each line loses contrast — needs full-width darkening. */
  .watch-scrim {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.25) 65%, transparent 82%),
      linear-gradient(0deg, rgba(10,10,10,0.5) 0%, transparent 25%);
  }
  .mib-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .viral-grid { grid-template-columns: 1fr; }
  .modal-panel--wide { padding: 44px 36px; }
  .scroll-cue { display: none; }
}

@media (max-width: 560px) {
  section { padding: 64px var(--edge); }
  .hero-content { padding-top: 130px; }
  .modal-panel { padding: 40px 26px; }
  .modal-panel--wide { padding: 36px 22px; }
  .about-bg-img { object-position: 68% 14%; }
  .watch { min-height: 100vh; }
  .contact-form { padding: 34px 26px; }
  .work-card { padding: 30px 26px; }
  .turnaround-stats { gap: 24px; }
}
