/* =====================================================================
   ABNORMAL PRESS — Site Stylesheet
   Editorial / operator-grade. Caxis-style layout, brand-book palette.
===================================================================== */

:root {
  --ink: #0e0e0e;
  --ink-soft: #2a2a2a;
  --muted: #6b6b6b;
  --line: #d8d4cc;
  --paper: #f4f1ea;
  --paper-warm: #ece7dc;
  --paper-white: #ffffff;
  --accent: #8a1c1c;
  --accent-soft: #b9302d;
  --footer-red: #c8302a;          /* solid red CTA / footer band */
  --footer-red-dark: #a8281f;
  --soft-mint: #9ee2cf;            /* tiny accent, used very sparingly */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper-white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent-soft); }

img, svg { max-width: 100%; display: block; }

/* ---------------- TYPOGRAPHY ---------------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
}
h1 { font-size: clamp(40px, 5.5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(30px, 3.5vw, 44px); font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }
p  { margin: 0 0 18px; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* ---------------- LAYOUT ---------------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  body { font-size: 16px; }
}

/* ---------------- HEADER ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand .logo-svg { width: 36px; height: auto; }
.brand .logo-svg path { fill: var(--accent-soft); }
.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--accent); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--accent-soft); border-color: var(--accent-soft); color: #fff !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px 32px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    gap: 18px;
  }
  .menu-toggle { display: block; }
}

/* ---------------- HERO ---------------- */
.hero {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 88% 22%, rgba(185,48,45,0.06), transparent 45%),
    var(--paper-white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { margin-bottom: 24px; }
.hero p.lead { margin-bottom: 32px; max-width: 560px; }
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-art .logo-mark {
  width: 100%;
  max-width: 320px;
}
.hero-art .logo-mark path { fill: var(--accent-soft); }
.hero-art::before, .hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-art::before {
  width: 28px; height: 28px;
  background: var(--soft-mint);
  top: 18%; left: 8%;
  opacity: 0.7;
}
.hero-art::after {
  width: 14px; height: 14px;
  background: var(--accent);
  bottom: 14%; right: 6%;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-soft); border-color: var(--accent-soft); }
.btn-dark {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
}
.btn-dark:hover { background: #1f1f1f; }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff !important; }
.btn-ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink) !important; }
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------------- WEAPON LINE BAND ---------------- */
.weapon-band {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
  text-align: center;
}
.weapon-band p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 auto;
  max-width: 880px;
}

/* ---------------- QUOTE BLOCK (Caxis-style) ---------------- */
.quote-section {
  padding: 96px 0;
  position: relative;
}
.quote-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 56px 48px 96px;
  background: var(--paper-warm);
  border-left: 6px solid var(--accent);
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
  font-style: italic;
}
.quote-card p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 600;
}
.quote-card cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 720px) {
  .quote-card { padding: 64px 24px 28px; border-left-width: 4px; }
  .quote-card::before { font-size: 80px; left: 18px; top: 8px; }
  .quote-card p { font-size: 22px; }
}

/* ---------------- WHY GRID (4 features) ---------------- */
.why-section { padding: 96px 0; background: var(--paper); }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 600px; margin: 0 auto; color: var(--ink-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; gap: 36px; } }
.why-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-item h3::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 3px;
  flex-shrink: 0;
}
.why-item p { font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------------- DARK CALLOUT (mid-page Caxis dark block) ---------------- */
.mid-callout {
  padding: 96px 0;
  background: var(--paper-white);
}
.mid-callout-inner {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.mid-callout-inner::after {
  content: "";
  position: absolute;
  right: -120px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 900px) {
  .mid-callout-inner { grid-template-columns: 1fr; padding: 48px 32px; gap: 28px; }
}
.mid-callout-art {
  display: flex;
  justify-content: center;
}
.mid-callout-art svg { width: 220px; }
.mid-callout-art path { fill: rgba(255,255,255,0.08); stroke: var(--accent-soft); stroke-width: 2; }
.mid-callout-text .eyebrow { color: var(--accent-soft); }
.mid-callout-text h2 {
  color: #fff;
  font-style: italic;
  margin-bottom: 16px;
}
.mid-callout-text p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* ---------------- AUDIT CTA SECTION (Caxis search-style) ---------------- */
.audit-section {
  padding: 96px 0 120px;
  background: var(--paper-white);
  text-align: center;
  position: relative;
}
.audit-section h2 { margin-bottom: 12px; }
.audit-section p.lead { margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.audit-form {
  max-width: 620px;
  margin: 0 auto;
  background: var(--paper-warm);
  border-radius: 999px;
  padding: 8px 8px 8px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}
.audit-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
}
.audit-form input::placeholder { color: var(--muted); }
.audit-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-family: inherit;
}
.audit-form button:hover { background: var(--accent-soft); }
.audit-meta {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------------- FOOTER CTA (solid red band) ---------------- */
.footer-cta {
  background: var(--footer-red);
  color: #fff;
  padding: 88px 0 80px;
  text-align: center;
}
.footer-cta h2 {
  color: #fff;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-cta p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.footer-cta-form {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 8px 8px 8px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-cta-form .form-status {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  min-height: 18px;
}
.footer-cta-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  padding: 12px 0;
}
.footer-cta-form input::placeholder { color: rgba(255,255,255,0.65); }
.footer-cta-form button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}
.footer-cta-form button:hover { background: #1f1f1f; }
.footer-cta-meta {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
}

/* ---------------- RICH FOOTER (injected via JS on every page) ---------------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 56px 0 40px; }
}
.footer-brand-col { padding-right: 24px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #fff;
  width: fit-content;
}
.footer-brand .logo-svg {
  width: 36px;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-brand .logo-svg path { fill: var(--accent-soft); }
.footer-brand:hover .logo-svg { transform: rotate(-6deg) scale(1.08); }
.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}
.footer-tag {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 340px;
}
.footer-cta-link {
  color: var(--accent-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, padding-right 0.25s ease;
}
.footer-cta-link:hover {
  color: #fff;
  border-bottom-color: #fff;
  padding-right: 6px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.25s ease;
}
.footer-col a:hover {
  color: #fff;
  border-bottom-color: var(--accent-soft);
}

/* ---------------- FOOTER (legal strip) ---------------- */
.footer-legal {
  background: var(--footer-red-dark);
  color: rgba(255,255,255,0.92);
  padding: 22px 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-legal-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: #fff;
  margin-right: 22px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.footer-legal a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.footer-legal .copy { font-weight: 600; color: #fff; letter-spacing: 0.18em; }

/* ---------------- INTERIOR PAGE HEADER ---------------- */
.page-header {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 88% 28%, rgba(185,48,45,0.05), transparent 40%),
    var(--paper-white);
  text-align: center;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 640px; margin: 0 auto; font-size: 18px; color: var(--ink-soft); }
@media (max-width: 720px) { .page-header { padding: 56px 0 40px; } }

/* ---------------- CONTENT BLOCKS ---------------- */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--paper); }
.content-section h2 { margin-bottom: 16px; }
.content-section h3 { margin-top: 36px; margin-bottom: 12px; color: var(--ink); }
.content-section ul, .content-section ol { padding-left: 22px; margin: 0 0 24px; }
.content-section li { margin-bottom: 8px; color: var(--ink-soft); }
.content-section li::marker { color: var(--accent); }

/* ---------------- TWO-COL CONTENT ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ---------------- SERVICE PILLAR CARDS ---------------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.pillar-card .pillar-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.pillar-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  margin-bottom: 14px;
}
.pillar-card p { font-size: 15px; }
.pillar-card .tied-to {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pillar-card .tied-to strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------------- WORK / CASE STUDY GRID ---------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 720px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px;
}
.work-card .sector {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.work-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.25;
}
.work-card .outcome {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------------- ABOUT / TEAM ---------------- */
.principles-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .principles-list { grid-template-columns: 1fr; } }
.principles-list li {
  background: var(--paper);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 0;
}
.principles-list li::marker { content: ""; }
.principles-list li strong { display: block; margin-bottom: 6px; }
.principles-list li span { color: var(--ink-soft); font-size: 15px; }

/* ---------------- BRAND BOOK PREVIEW ---------------- */
.bb-preview {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 32px 0;
}
@media (max-width: 900px) { .bb-preview { grid-template-columns: 1fr; padding: 48px 32px; } }
.bb-preview h2 { color: #fff; font-style: italic; margin-bottom: 16px; }
.bb-preview p { color: rgba(255,255,255,0.85); }
.bb-preview .eyebrow { color: var(--accent-soft); }
.bb-preview-art {
  background: var(--paper-warm);
  padding: 36px;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
}
.bb-preview-art .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.bb-preview-art .title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bb-preview-art .title em { color: var(--accent); font-style: italic; font-weight: 400; }

/* ---------------- CONTACT / MAP ---------------- */
.contact-map {
  width: 100%;
  height: 480px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(60%) contrast(0.95); }
.contact-info {
  padding: 56px 0 96px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
.contact-grid h2 { font-size: 36px; }
.contact-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  font-size: 15px;
}
.contact-block .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-block a { color: var(--ink); border-bottom: 1px dotted var(--accent); }

/* ---------------- LEGAL PAGE STYLING ---------------- */
.legal-content { padding: 56px 0 96px; }
.legal-content h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}
.legal-content h3 {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--ink);
}
.legal-content p { font-size: 16px; }
.legal-content ul { margin-bottom: 24px; }
.legal-content .last-updated {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ---------------- SITEMAP ---------------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
}
@media (max-width: 720px) { .sitemap-grid { grid-template-columns: 1fr; gap: 24px; } }
.sitemap-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.sitemap-col li { margin-bottom: 10px; }
.sitemap-col a { color: var(--ink); font-size: 16px; }
.sitemap-col a:hover { color: var(--accent); }

/* ---------------- ITALIC EMPHASIS (Abnormal Press headline style) ---------------- */
h1 em, h2 em, .hero h1 em, .page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-family: 'Playfair Display', Georgia, serif;
}
.weapon-band em {
  font-style: italic;
  color: var(--accent-soft);
}

/* ---------------- NUMBERED SECTION EYEBROW (01/, 02/, 03/) ---------------- */
.section-num {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--accent);
  margin-right: 14px;
  letter-spacing: 0.05em;
}

/* ---------------- INDUSTRIES STRIP ---------------- */
.industries {
  padding: 96px 0;
  background: var(--paper-white);
}
.industries-head {
  text-align: center;
  margin-bottom: 56px;
}
.industries-head h2 { font-style: normal; }
.industries-head h2 em { font-style: italic; color: var(--accent); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}
.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.industry-card .industry-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.industry-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.industry-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------------- POV / INSIGHTS ---------------- */
.pov-section {
  padding: 96px 0;
  background: var(--paper);
}
.pov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pov-grid { grid-template-columns: 1fr; } }
.pov-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.pov-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.pov-card .pov-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.pov-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.pov-card p { font-size: 15px; flex: 1; margin-bottom: 18px; }
.pov-card .pov-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ---------------- FIND YOUR CORNERS CTA (mid-page CTA strip) ---------------- */
.corners-cta {
  padding: 88px 0;
  background: var(--paper-white);
  text-align: center;
}
.corners-cta h2 {
  font-style: italic;
  margin-bottom: 16px;
}
.corners-cta h2 em { font-style: normal; color: var(--accent); }
.corners-cta p {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 17px;
}

/* ---------------- SCROLL FADE-IN ANIMATIONS ---------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ---------------- 24-HOUR RESPONSE BADGE ---------------- */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.18);
  padding: 8px 16px;
  border-radius: 999px;
}
.response-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(255,255,255,0.0); }
}

/* ============================================================
   MOTION — make the site feel alive
============================================================ */

/* Header shrinks subtly on scroll */
.site-header { transition: background 0.3s ease, box-shadow 0.3s ease; }
.header-inner { transition: padding 0.3s ease; }
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.site-header.scrolled .header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Animated underline on nav links */
.nav a:not(.nav-cta) {
  position: relative;
  overflow: hidden;
}
.nav a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav a:not(.nav-cta):hover::before,
.nav a.active::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav a.active::after { display: none; }

/* Brand wordmark logo nudge */
.brand .logo-svg { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.brand:hover .logo-svg { transform: rotate(-6deg) scale(1.08); }

/* Button hover lift */
.btn { transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.18s ease, border-color 0.18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(138, 28, 28, 0.18); }
.btn-primary:hover { box-shadow: 0 14px 32px rgba(138, 28, 28, 0.32); }
.nav-cta { transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.18s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(138, 28, 28, 0.28); }

/* Hero — floating logo + drifting accent dots */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(10px, -12px); }
}
.hero-art { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-art .logo-mark { animation: float 6s ease-in-out infinite; }
.hero-art::before { animation: drift 7s ease-in-out infinite; }
.hero-art::after  { animation: drift 5s ease-in-out infinite reverse; }

/* Hero radial glow that lazily breathes */
@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.06); }
}
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(185,48,45,0.10) 0%, transparent 65%);
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite;
}

/* Page header decorative dots */
.page-header { position: relative; overflow: hidden; }
.page-header::before, .page-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-header::before {
  width: 14px; height: 14px;
  background: var(--accent);
  top: 32%; left: 6%;
  animation: drift 6s ease-in-out infinite;
}
.page-header::after {
  width: 26px; height: 26px;
  background: var(--soft-mint);
  bottom: 28%; right: 8%;
  opacity: 0.6;
  animation: drift 8s ease-in-out infinite reverse;
}

/* Weapon band — subtle scale on hover, breathing background */
.weapon-band { position: relative; overflow: hidden; }
.weapon-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(185,48,45,0.10) 0%, transparent 60%);
  animation: breathe 10s ease-in-out infinite;
  pointer-events: none;
}
.weapon-band p { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); position: relative; z-index: 1; }
.weapon-band:hover p { transform: scale(1.015); }

/* Pillar / industry cards — richer hover */
.pillar-card { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.25s ease; }
.pillar-card:hover { transform: translateY(-6px); border-top-width: 6px; }
.industry-card { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.25s ease; }
.industry-card .industry-num { transition: transform 0.3s ease; }
.industry-card:hover .industry-num { transform: scale(1.25); }

/* Work cards */
.work-card { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.25s ease; }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); border-color: var(--accent); }

/* POV card link arrow nudge */
.pov-card .pov-link { transition: letter-spacing 0.25s ease; display: inline-block; }
.pov-card:hover .pov-link { letter-spacing: 0.12em; }

/* Footer-cta input focus */
.footer-cta-form input:focus { background: rgba(255,255,255,0.08); }
.footer-cta-form { transition: background 0.25s ease; }
.footer-cta-form:focus-within { background: rgba(0,0,0,0.2); }

/* Quote card subtle entrance */
.quote-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.quote-card:hover { transform: translateX(6px); box-shadow: 0 16px 36px rgba(0,0,0,0.06); }

/* Slide-in directional fade variants */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Marquee — for the weapon band repeating ticker */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee:hover { animation-play-state: paused; }

/* ============================================================
   TEXT REVEAL — word-by-word, line-by-line, stagger
============================================================ */

/* Word-by-word headline reveal */
.reveal-words { display: block; }
.reveal-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity 0.65s cubic-bezier(0.2, 0.7, 0.25, 1),
    transform 0.65s cubic-bezier(0.2, 0.7, 0.25, 1);
  transition-delay: calc(var(--word-i, 0) * 55ms);
  will-change: opacity, transform;
}
.reveal-words.visible .word {
  opacity: 1;
  transform: translateY(0);
}
/* Italic styling preserved through word splits */
.reveal-words em { font-style: italic; }

/* Generic fade-up reveal — applied to any element */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.25, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.25, 1);
  will-change: opacity, transform;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children (grids, card rows) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.2, 0.7, 0.25, 1),
    transform 0.65s cubic-bezier(0.2, 0.7, 0.25, 1);
  transition-delay: calc(var(--child-i, 0) * 95ms);
  will-change: opacity, transform;
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* List items — slide from left in sequence */
.reveal-list > li {
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 0.7, 0.25, 1);
  transition-delay: calc(var(--child-i, 0) * 75ms);
}
.reveal-list.visible > li {
  opacity: 1;
  transform: translateX(0);
}

/* Eyebrow specific — slides from left to feel like a stamp */
.eyebrow.reveal-up {
  transform: translateX(-12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.7, 0.25, 1);
}
.eyebrow.reveal-up.visible { transform: translateX(0); }

/* Buttons — pop in slightly later */
.btn-row.reveal-up { transition-delay: 0.1s; }

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
  .hero-art .logo-mark,
  .hero-art::before, .hero-art::after,
  .hero::before, .weapon-band::before,
  .page-header::before, .page-header::after,
  .marquee {
    animation: none !important;
  }
  .btn:hover, .pillar-card:hover, .industry-card:hover,
  .work-card:hover, .quote-card:hover, .nav-cta:hover {
    transform: none !important;
  }
  .reveal-words .word,
  .reveal-up,
  .reveal-stagger > *,
  .reveal-list > li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------------- UTILITY ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
