/* ============================================================
   BRIGGITY v2 — BADASS MODE overrides. Loads after styles.css.
   Bigger type, sharper voice, kinetic marquee, harder edges.
   ============================================================ */

:root {
  --accent:      #E5263C;
  --accent-ink:  #FFF4F2;
  --accent-soft: rgba(229,38,60,.14);
  --accent-line: rgba(229,38,60,.42);

  /* Blood Oath neutrals: kill the blue cast */
  --ink:       #0A090B;
  --ink-2:     #110F12;
  --surface:   #161419;
  --surface-2: #1D1B21;
}

/* ---------- Brand mark ---------- */
.brand .brand-mark { color: var(--accent); flex: none; margin-right: 11px; }
.footer .brand .brand-mark { width: 30px; height: 30px; }

/* ---------- Type: go bigger ---------- */
.display { font-weight: 900; }
.h-hero  { font-size: clamp(48px, 7.6vw, 118px); letter-spacing: -.035em; line-height: .94; }
.h-1     { font-size: clamp(40px, 5.6vw, 86px); }

.hero-pre {
  font-weight: 700;
  color: var(--text);
  opacity: .65;
}

/* Accent slash — a hard mark under key words */
.slash {
  position: relative;
  white-space: nowrap;
}
.slash::after {
  content: "";
  position: absolute;
  left: -.04em; right: -.04em; bottom: .02em;
  height: .16em;
  background: var(--accent);
  z-index: -1;
  transform: skewX(-12deg);
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--hairline-2);
  background: var(--ink-2);
  overflow: hidden;
  padding-block: 20px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marq 30s linear infinite;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-inline: 26px;
  position: relative;
}
.marquee-track span::after {
  content: "";
  position: absolute;
  right: -3px;
  width: 6px; height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
@keyframes marq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Statement: bigger, harder ---------- */
.statement p {
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 54px);
  max-width: 22ch;
}

/* ---------- Steps: accent edge on hover ---------- */
.step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.step:hover::before { transform: scaleY(1); }

/* ---------- Stance band ---------- */
.stance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-2);
  border: 1px solid var(--hairline-2);
  margin-top: clamp(48px, 6vw, 88px);
}
.stance-item {
  background: var(--ink);
  padding: clamp(24px, 2.6vw, 40px);
}
.stance-item .v {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--accent);
}
.stance-item .l {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 14px;
}
@media (max-width: 760px) { .stance { grid-template-columns: 1fr; } }

/* ---------- Work / receipts ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: stretch;
}
.work-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s;
}
.work-card:hover { border-color: var(--accent-line); }
.work-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-2);
}
.work-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(var(--img-gray)) contrast(1.04) brightness(.92);
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s;
}
.work-card:hover .work-media img { transform: scale(1.04); filter: grayscale(0) brightness(1); }
.work-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-2);
  border-top: 1px solid var(--hairline-2);
}
.work-strip img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  filter: grayscale(var(--img-gray)) contrast(1.04) brightness(.88);
  transition: filter .4s;
}
.work-strip img:hover { filter: grayscale(0) brightness(1); }
.work-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 2.4vw, 32px);
  flex: 1;
}
.work-meta h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -.015em;
  margin: 0 0 8px;
}
.work-meta p { margin: 0; color: var(--muted); font-size: 16px; max-width: 44ch; }
.work-credit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
}
.work-link {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 2px;
  flex: none;
}
.work-link:hover { color: var(--text); border-color: var(--text); }
.work-card-wide { flex-direction: row; }
.work-card-wide .work-visual { width: 58%; flex: none; display: flex; flex-direction: column; border-right: 1px solid var(--hairline-2); }
.work-card-wide .work-media { flex: 1; aspect-ratio: auto; min-height: 320px; }
.work-card-wide .work-meta { flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 36px; }
@media (max-width: 900px) {
  .work-card-wide { flex-direction: column; }
  .work-card-wide .work-visual { width: 100%; border-right: none; }
  .work-card-wide .work-media { aspect-ratio: 16 / 10; min-height: 0; }
}
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }

/* ---------- Hero eyebrow: legible on video ---------- */
.eyebrow-hero {
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.eyebrow-hero::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--accent);
  flex: none;
}

/* ---------- Mobile hardening ---------- */
@media (max-width: 560px) {
  .hero-actions, .cta .actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta .actions .btn { justify-content: center; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .work-meta { flex-direction: column; }
  .nav-inner { gap: 14px; }
  .nav-cta .btn { padding: 12px 18px; font-size: 14px; }
  .statement p { max-width: none; }
}

/* ---------- CTA: bigger ---------- */
.cta h2 { max-width: 17ch; }

/* ---------- Nav: don't let links wrap in the 920-1040px band ---------- */
.nav-links a { white-space: nowrap; }
@media (max-width: 1040px) { .nav-links { display: none; } }

/* ---------- Hero eyebrow: keep it legible over video ---------- */
.hero .eyebrow {
  color: #F2EFE6;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}

/* ---------- Talk: intake form + direct lines ---------- */
.talk-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 4vw, 64px);
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}
.intake { display: flex; flex-direction: column; gap: 18px; }
.intake-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.intake label { display: flex; flex-direction: column; gap: 8px; }
.intake label span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.intake input, .intake textarea {
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  min-height: 48px;
  transition: border-color .2s;
}
.intake textarea { resize: vertical; min-height: 110px; }
.intake input:focus, .intake textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.intake .btn { align-self: flex-start; margin-top: 6px; }
.direct { display: flex; flex-direction: column; gap: 26px; padding-top: 6px; }
.direct-item { display: flex; flex-direction: column; gap: 6px; }
.direct-item .k {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.direct-item a {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -.01em;
  color: var(--text);
  border-bottom: 1px solid var(--accent-line);
  align-self: flex-start;
  padding-bottom: 2px;
}
.direct-item a:hover { color: var(--accent); border-color: var(--accent); }
.direct-note { color: var(--muted); font-size: 15px; margin: 0; max-width: 34ch; }
@media (max-width: 820px) {
  .talk-grid { grid-template-columns: 1fr; }
  .direct { padding-top: 0; }
}

/* ---------- Mobile pass ---------- */
@media (max-width: 520px) {
  .h-hero { font-size: clamp(40px, 11.5vw, 52px); }
  .hero-actions, .cta .actions { width: 100%; }
  .hero-actions .btn, .intake .btn { width: 100%; justify-content: center; align-self: stretch; }
  .intake-row { grid-template-columns: 1fr; }
  .work-meta { flex-direction: column; }
  .work-card-wide .work-meta { gap: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 18px; align-items: flex-start; }
  .stance-item { padding: 22px; }
  .section-head { margin-bottom: 40px; }
}

/* ---------- Attitude: dialed back ---------- */
.dialed-back .display { font-weight: 800; }
.dialed-back .h-hero { font-size: clamp(44px, 6.2vw, 92px); letter-spacing: -.03em; line-height: .98; }
.dialed-back .h-1 { font-size: clamp(38px, 5.2vw, 78px); }
.dialed-back .statement p { font-weight: 600; font-size: clamp(24px, 3.1vw, 44px); }
.dialed-back .slash::after { height: .08em; transform: none; }
.dialed-back .stance-item .v { font-weight: 800; }
