/* ============================================
   Captured Hunt — styles.css
   Dark, moody, outdoorsy. Hunter-editorial.
   ============================================ */

:root {
  --bg:        #0F0F0F;
  --surface:   #1A1A1A;
  --accent:    #E8791A;
  --accent-hi: #F08C34;
  --text:      #F5F3EE;
  --muted:     #8A8A8A;
  --border:    #2A2A2A;
  --cream:     #F5F3EE;
  --cream-ink: #17140F;
  --cream-muted: #5C574C;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--accent); color: #111; padding: 10px 16px;
  border-radius: 8px; z-index: 200; font-weight: 600; font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.container--narrow { max-width: var(--wrap-narrow); }

.section {
  padding-block: clamp(48px, 7vw, 96px);
}
/* Tighten transitions where a full-bleed image sits between two dark sections */
.bleed + .section { padding-top: clamp(40px, 6vw, 80px); }
.section:has(+ .bleed) { padding-bottom: clamp(40px, 6vw, 80px); }

.section__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 14px;
  text-align: center;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  text-align: center;
}
.section__title em { font-style: italic; color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-body); font-weight: 600;
  font-size: 15px; letter-spacing: .01em;
  padding: 13px 24px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--primary { background: var(--accent); color: #140c05; }
.btn--primary:hover { background: var(--accent-hi); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .btn:active { transform: translateY(1px); }
}

.link-arrow {
  font-size: 15px; font-weight: 500; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s var(--ease);
}
.link-arrow:hover { color: var(--text); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,15,0.55);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav--scrolled {
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 8px 30px rgba(0,0,0,.4);
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) {
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: color .2s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--accent); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px clamp(20px, 5vw, 48px) 24px;
  border-top: 1px solid var(--border);
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(14px);
}
.nav__mobile a:not(.btn) {
  padding: 14px 4px; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav__mobile .btn { margin-top: 14px; }

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile[data-open="true"] { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
/* Drone hero video — fills the hero container the same way the still image did */
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero__video img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) {
  /* Users who requested less motion get the poster still instead of the video */
  .hero__video { display: none; }
  .hero__media { background-image: url('assets/hero-drone-poster.jpg'); background-size: cover; background-position: center; }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,15,15,0.88) 0%, rgba(15,15,15,0.62) 32%, rgba(15,15,15,0.12) 70%, rgba(15,15,15,0.02) 100%),
    linear-gradient(0deg, rgba(15,15,15,0.65) 0%, rgba(15,15,15,0) 45%);
}
@media (max-width: 720px) {
  .hero__scrim {
    background:
      linear-gradient(0deg, rgba(15,15,15,0.94) 0%, rgba(15,15,15,0.78) 40%, rgba(15,15,15,0.35) 100%);
  }
  .hero__img { object-position: 55% center; }
}
.hero__content {
  position: relative; z-index: 1;
  max-width: var(--wrap); width: 100%;
  margin: 0 auto; padding: 120px clamp(20px, 5vw, 48px) 80px;
}
.hero__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 8.5vw, 96px); line-height: 1.02;
  letter-spacing: -0.015em; margin: 0 0 24px; max-width: 15ch;
}
.hero__sub {
  font-size: clamp(16px, 2.2vw, 20px); line-height: 1.55;
  color: var(--text); max-width: 46ch; margin: 0 0 36px; opacity: .92;
}
.hero__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ============================================
   PROBLEM
   ============================================ */
.problem { background: var(--bg); }
.problem__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.problem__item { background: var(--surface); padding: 40px 32px; }
.problem__num {
  font-family: var(--font-display); font-size: 30px; color: var(--accent);
  display: block; margin-bottom: 18px;
}
.problem__item h3 { font-size: 19px; font-weight: 600; margin: 0 0 10px; letter-spacing: -0.01em; }
.problem__item p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.6; }

@media (max-width: 860px) { .problem__grid { grid-template-columns: 1fr; } }

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--surface); border-block: 1px solid var(--border); }
.features__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.feature { background: var(--bg); padding: 38px 34px; }
.feature__icon {
  display: inline-flex; color: var(--accent); margin-bottom: 20px;
}
.feature__icon svg { width: 34px; height: 34px; }
.feature h3 { font-size: 20px; font-weight: 600; margin: 0 0 10px; letter-spacing: -0.01em; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.62; }

@media (max-width: 720px) { .features__grid { grid-template-columns: 1fr; } }

/* ============================================
   FULL-BLEED IMAGE BREAK
   ============================================ */
.bleed { position: relative; height: clamp(280px, 44vw, 560px); overflow: hidden; }
.bleed--tall { height: clamp(320px, 52vw, 640px); }
.bleed img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.bleed::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,15,15,0.45), rgba(15,15,15,0.08));
}

/* ============================================
   HOW IT LEARNS
   ============================================ */
.learns { background: var(--bg); }
.learns .section__eyebrow, .learns .section__title { text-align: center; }
.learns__lead {
  font-size: clamp(17px, 2.4vw, 21px); line-height: 1.55; color: var(--text);
  max-width: 58ch; margin: -12px auto 52px; opacity: .9; text-align: center;
}
.learns__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.learns__grid--two {
  grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1080px; margin: 0 auto;
}
.learns__grid--two .learns__col { padding: 44px 40px; }
.learns__col {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
}
.learns__label {
  display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 999px; padding: 5px 14px; margin-bottom: 22px;
}
.learns__col h3 { font-size: 23px; font-weight: 600; margin: 0 0 14px; letter-spacing: -0.01em; }
.learns__col h3 em { font-style: italic; font-family: var(--font-display); color: var(--accent); }
.learns__col p { color: var(--muted); font-size: 15.5px; margin: 0; line-height: 1.65; }

.pullquote { margin: 60px auto 0; max-width: 820px; text-align: center; }
.pullquote blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(24px, 4vw, 38px); line-height: 1.25; margin: 0;
  letter-spacing: -0.01em; color: var(--text);
}
.pullquote blockquote em { color: var(--accent); font-style: italic; }

@media (max-width: 980px) { .learns__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .learns__grid, .learns__grid--two { grid-template-columns: 1fr; } }

/* ============================================
   PRICING (cream section)
   ============================================ */
.pricing { background: var(--cream); color: var(--cream-ink); }
.pricing .section__eyebrow { color: #C25E0B; }
.pricing .section__title { color: var(--cream-ink); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 860px; margin: 0 auto;
  align-items: start;
}
.pricing .section__eyebrow, .pricing .section__title { text-align: center; }
.plan {
  background: #fff; border: 1px solid #E4DFD4; border-radius: 18px;
  padding: 40px 34px; display: flex; flex-direction: column;
  position: relative;
}
.plan--pro { border: 2px solid var(--accent); box-shadow: 0 20px 50px rgba(232,121,26,.14); }
.plan__badge {
  position: absolute; top: -13px; left: 34px;
  background: var(--accent); color: #140c05; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.plan__name { font-size: 15px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 12px; color: var(--cream-muted); }
.plan__price { font-family: var(--font-display); font-size: 40px; line-height: 1; margin: 0 0 26px; color: var(--cream-ink); }
.plan__price span { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--cream-muted); }
.plan__or { display: block; margin-top: 6px; font-size: 15px !important; }
.plan__list { list-style: none; padding: 0; margin: 0 0 28px; }
.plan__list li {
  font-size: 15.5px; padding: 11px 0 11px 28px; position: relative;
  border-bottom: 1px solid #EFEAE0; color: #2C271E;
}
.plan__list li::before {
  content: ""; position: absolute; left: 2px; top: 17px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}
.plan__trial { font-weight: 600; color: #C25E0B; font-size: 15px; margin: 0 0 18px; }
.plan .btn--ghost { color: var(--cream-ink); border-color: #D8D2C6; }
.plan .btn--ghost:hover { border-color: var(--accent); color: #C25E0B; }
.pricing__note { text-align: center; color: var(--cream-muted); font-size: 14px; margin: 32px 0 0; }

@media (max-width: 720px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; }
  .plan { border-width: 2px; border-color: #E4DFD4; }
  .plan--pro { border-color: var(--accent); }
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg); }
.faq__list { border-top: 1px solid var(--border); max-width: 780px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0;
  font-size: 18px; font-weight: 500; position: relative;
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq__mark {
  position: relative; width: 16px; height: 16px; flex-shrink: 0; margin-left: 16px;
}
.faq__mark::before, .faq__mark::after {
  content: ""; position: absolute; background: var(--accent);
  transition: transform .25s var(--ease);
}
.faq__mark::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__mark::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq details[open] .faq__mark::after { transform: scaleY(0); }
.faq details p {
  margin: 0; padding: 0 40px 26px 0; color: var(--muted);
  font-size: 15.5px; line-height: 1.65; max-width: 62ch;
}

/* ============================================
   WAITLIST
   ============================================ */
.waitlist { background: var(--surface); border-block: 1px solid var(--border); text-align: center; }
.waitlist__inner { display: flex; flex-direction: column; align-items: center; }
.waitlist__icon { width: 60px; height: auto; margin-bottom: 24px; }
.waitlist .section__title { margin-bottom: 14px; }
.waitlist__sub { color: var(--muted); font-size: 17px; max-width: 44ch; margin: 0 0 34px; line-height: 1.55; }
.waitlist__form {
  display: flex; gap: 12px; width: 100%; max-width: 480px;
}
.waitlist__form input[type="email"] {
  flex: 1; background: var(--bg); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-body); font-size: 16px; padding: 14px 18px; border-radius: 10px;
  transition: border-color .2s var(--ease);
}
.waitlist__form input[type="email"]::placeholder { color: var(--muted); }
.waitlist__form input[type="email"]:focus { border-color: var(--accent); outline: none; }
.waitlist__msg {
  margin: 22px 0 0; color: var(--accent); font-weight: 600; font-size: 16px;
}
.waitlist__msg--error { color: #E86A4A; font-weight: 500; max-width: 40ch; }
.waitlist__msg--error a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.waitlist__fine { color: var(--muted); font-size: 13px; margin: 18px 0 0; }

@media (max-width: 560px) {
  .waitlist__form { flex-direction: column; }
  .waitlist__form .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 72px; }
.footer__inner {
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  padding-bottom: 56px;
}
.footer__logo { height: 40px; width: auto; margin-bottom: 18px; }
.footer__tagline { color: var(--muted); font-size: 15px; line-height: 1.5; margin: 0; }
.footer__cols { display: flex; gap: clamp(40px, 8vw, 80px); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 6px;
}
.footer__col a { color: var(--muted); font-size: 15px; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-block: 26px;
}
.footer__bottom p { color: var(--muted); font-size: 13px; margin: 0; }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; gap: 40px; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   INTERIOR PAGES (privacy / terms)
   ============================================ */
.legal-page { padding-block: clamp(80px, 12vw, 140px); min-height: 60vh; }
.legal-page h1 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 6vw, 56px);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.legal-page .updated { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.legal-page p { color: var(--text); opacity: .9; max-width: 62ch; margin: 0 0 18px; }
.legal-page a.back { color: var(--accent); font-weight: 500; font-size: 15px; }

/* ============================================
   HERD INTELLIGENCE SECTION
   ============================================ */
.herd { background: linear-gradient(180deg, var(--bg) 0%, #141210 100%); }
.herd .section__eyebrow, .herd .section__title { text-align: center; }
.herd__lead {
  color: var(--text); opacity: 0.85;
  font-size: clamp(17px, 1.9vw, 21px); line-height: 1.55;
  max-width: 68ch; margin: 28px auto 0; text-align: center;
}

.herd__showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .herd__showcase { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Mock survey map ---- */
.mock__frame {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(232,121,26,0.04) inset;
}
.mock__topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: #121110;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.mock__title { color: var(--text); opacity: 0.9; font-weight: 600; }
.mock__date  { color: var(--muted); font-variant-numeric: tabular-nums; }
.mock__map { background: #0a0a0a; }
.mock__map svg { display: block; width: 100%; height: auto; }
.mock__legend {
  display: flex; flex-wrap: wrap; gap: 20px 28px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: #121110;
  font-size: 13px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.legend__item { display: inline-flex; align-items: center; gap: 8px; }
.legend__icon {
  width: 20px; height: 22px; object-fit: contain; flex-shrink: 0;
}
.legend__icon--doe { width: 22px; height: 18px; }
.legend__dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: #7DD3D8;
}
.legend__dot--buck {
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.legend__dot--doe { background: #7DD3D8; }
.legend__dot--boundary {
  background: transparent;
  border: 1.5px dashed var(--accent);
  border-radius: 0;
}

/* ---- Stats stack ---- */
.herd__stats { display: flex; flex-direction: column; gap: 22px; }
.stat {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums lining-nums;
}
.stat__label {
  color: var(--text); opacity: 0.75;
  font-size: 14px; letter-spacing: 0.01em;
}

.herd__quote {
  margin: 44px auto 0;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: rgba(232, 121, 26, 0.04);
  border-radius: 0 14px 14px 0;
  max-width: 900px;
}
.herd__quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  color: var(--text); opacity: 0.95;
  font-style: italic;
}
.herd__quote figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px; letter-spacing: 0.04em;
  font-style: normal;
}

/* ---- Captured Media cross-promo ---- */
.cm-crosspromo {
  margin-top: 72px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(232,121,26,0.10) 0%, transparent 55%),
    linear-gradient(180deg, #171512 0%, #131110 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
}
.cm-crosspromo__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.cm-crosspromo__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.cm-crosspromo__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(19,17,16,0.55) 0%, rgba(19,17,16,0) 40%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .cm-crosspromo { grid-template-columns: 1fr; }
  .cm-crosspromo__media { min-height: 220px; order: -1; }
  .cm-crosspromo__media::after {
    background: linear-gradient(180deg, rgba(19,17,16,0) 40%, rgba(19,17,16,0.55) 100%);
  }
}
.cm-crosspromo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 22px,
      rgba(232,121,26,0.025) 22px 23px
    );
  pointer-events: none;
}
.cm-crosspromo__body {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
}
.cm-crosspromo__eyebrow {
  margin: 0 0 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
}
.cm-crosspromo__title {
  margin: 0 0 12px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--text);
}
.cm-crosspromo__lead {
  margin: 0 0 24px;
  color: var(--text); opacity: 0.85;
  font-size: clamp(16px, 1.6vw, 18px); line-height: 1.55;
  max-width: 60ch;
}
.cm-crosspromo__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  .cm-crosspromo__services { grid-template-columns: 1fr; }
}
.cm-service {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.cm-service strong {
  color: var(--text);
  font-family: var(--font-body); font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.cm-service span {
  color: var(--muted);
  font-size: 14px; line-height: 1.5;
}
.cm-crosspromo__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 640px) {
  .cm-crosspromo__cta { flex-direction: column; align-items: stretch; }
  .cm-crosspromo__cta .btn { text-align: center; justify-content: center; }
}
