:root {
  --ink: #1b1717;
  --ink-soft: #4e4644;
  --paper: #f6f1ea;
  --paper-2: #efe6dd;
  --white: #fffdf9;
  --ember: #d44a2c;
  --ember-dark: #a82e1b;
  --rust: #8d3a29;
  --line: rgba(27, 23, 23, 0.13);
  --dark-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 60px rgba(45, 27, 21, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { max-width: 100%; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 234, 0.88);
  border-bottom: 1px solid rgba(27, 23, 23, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  letter-spacing: 0.13em;
  line-height: 1;
}
.brand-top { font-size: 0.86rem; font-weight: 900; color: var(--ink); }
.brand-bottom { margin-top: 5px; font-size: 0.62rem; font-weight: 800; color: var(--ember); }

nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-size: 0.92rem; font-weight: 700; color: var(--ink-soft); }
nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}
.nav-cta:hover { color: var(--white); background: var(--ember-dark); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 96px;
  background:
    linear-gradient(120deg, rgba(212, 74, 44, 0.07), transparent 42%),
    var(--paper);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-glow-one { width: 480px; height: 480px; right: -170px; top: 20px; background: radial-gradient(circle, rgba(212,74,44,.23), transparent 68%); }
.hero-glow-two { width: 340px; height: 340px; left: -130px; bottom: -120px; background: radial-gradient(circle, rgba(141,58,41,.18), transparent 68%); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #f2a28d;
}
.eyebrow.dark { color: var(--ember-dark); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  max-width: 930px;
}
h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
h3 {
  margin-bottom: 12px;
  font-size: 1.13rem;
  line-height: 1.3;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  color: var(--ink-soft);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--ember); color: white; box-shadow: 0 12px 26px rgba(212,74,44,.23); }
.button-primary:hover { background: var(--ember-dark); }
.button-secondary { border-color: rgba(27,23,23,.2); background: rgba(255,255,255,.45); color: var(--ink); }
.button-secondary:hover { border-color: rgba(27,23,23,.42); background: white; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof span {
  padding: 8px 12px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(27,23,23,.09);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--ink-soft);
}

.signal-card {
  position: relative;
  padding: 34px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.signal-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.signal-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 7px rgba(212,74,44,.12); margin-bottom: 24px; }
.signal-kicker { margin-bottom: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; color: #d9c7bf; }
blockquote { margin: 0 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: 1.68rem; line-height: 1.18; letter-spacing: -.02em; }
.signal-answer { margin-bottom: 0; color: #d8cbc6; }

.trust-strip { background: #201b1a; color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 28px 25px; border-right: 1px solid var(--dark-line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; padding-right: 0; }
.trust-grid strong { display: block; margin-bottom: 5px; color: #f6b8a7; }
.trust-grid span { display: block; font-size: .88rem; color: #cfc3be; }

.section { padding: 112px 0; }
.section-dark { background: #171313; color: var(--white); }
.section-dark .section-heading p { color: #c9b8b1; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: start; }
.body-copy p { font-size: 1.08rem; color: var(--ink-soft); }

.gap-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.38); }
.gap-card { position: relative; padding: 34px; min-height: 230px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gap-card:nth-child(2n) { border-right: 0; }
.gap-card:nth-last-child(-n+2) { border-bottom: 0; }
.gap-card .number { display: inline-block; margin-bottom: 42px; color: var(--ember-dark); font-weight: 900; font-size: .78rem; letter-spacing: .13em; }
.gap-card p { margin: 0; color: var(--ink-soft); }

.section-heading { max-width: 760px; margin-bottom: 56px; }
.centered { margin-inline: auto; text-align: center; }
.compact { margin-bottom: 42px; }
.section-heading p { color: var(--ink-soft); font-size: 1.05rem; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step { padding: 26px 22px; border: 1px solid var(--dark-line); border-radius: 20px; background: rgba(255,255,255,.035); }
.process-number { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 50%; background: rgba(212,74,44,.16); color: #f4a18b; font-weight: 900; }
.process-step p { margin-bottom: 0; color: #cfc1bc; font-size: .92rem; }

.deliverables-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.deliverables-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--white); box-shadow: 0 18px 48px rgba(48,29,22,.08); }
.checklist div { position: relative; padding: 22px 22px 22px 50px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 750; }
.checklist div:nth-child(2n) { border-right: 0; }
.checklist div:nth-last-child(-n+2) { border-bottom: 0; }
.checklist div::before { content: "✓"; position: absolute; left: 22px; color: var(--ember); font-weight: 1000; }

.not-section { padding-top: 16px; }
.not-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.not-grid div { padding: 30px 24px; border-right: 1px solid var(--line); }
.not-grid div:last-child { border-right: 0; }
.not-grid span { display: block; margin-bottom: 14px; color: var(--ember); font-size: 1.7rem; font-weight: 700; }
.not-grid p { margin: 0; color: var(--ink-soft); }

.partner-section { background: linear-gradient(125deg, #231b19, #151212 62%); color: var(--white); }
.partner-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 84px; align-items: center; }
.partner-lede { font-size: 1.12rem; color: #d2c5c0; }
.partner-promise { margin-top: 32px; padding: 22px 24px; border-left: 3px solid var(--ember); background: rgba(255,255,255,.045); border-radius: 0 14px 14px 0; }
.partner-promise strong { display: block; margin-bottom: 7px; }
.partner-promise p { margin: 0; color: #cdbfba; }
.partner-panel { padding: 32px; border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.panel-title { margin-bottom: 24px; font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; color: var(--ember-dark); }
.partner-panel ol { margin: 0; padding: 0; list-style: none; }
.partner-panel li { display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-items: start; padding: 17px 0; border-top: 1px solid var(--line); }
.partner-panel li:first-child { border-top: 0; padding-top: 0; }
.partner-panel li span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #ebdcd3; color: var(--ember-dark); font-weight: 900; }
.partner-panel li p { margin: 3px 0 0; }

.audience-section { background: var(--paper-2); }
.audience-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.audience-grid span { padding: 13px 18px; border-radius: 999px; background: rgba(255,255,255,.68); border: 1px solid rgba(27,23,23,.11); font-weight: 800; color: #4a403d; }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 0; }
summary { position: relative; padding: 22px 42px 22px 0; cursor: pointer; list-style: none; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 17px; color: var(--ember-dark); font-size: 1.4rem; }
details[open] summary::after { content: "–"; }
details p { padding: 0 38px 22px 0; margin: 0; color: var(--ink-soft); }

.contact-section { padding: 112px 0; background: #171313; color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 84px; align-items: start; }
.contact-grid > div > p:not(.eyebrow) { color: #d1c2bc; }
.small-note { font-size: .9rem; }
.contact-form { padding: 30px; border-radius: 22px; background: var(--paper); color: var(--ink); box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.contact-form label { display: block; margin-bottom: 17px; font-size: .82rem; font-weight: 850; color: #4a403d; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #d7c9c1;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(212,74,44,.13); border-color: var(--ember); }
.form-button { width: 100%; border: 0; font: inherit; }
.form-footnote { margin: 14px 0 0; font-size: .76rem; color: #756964; text-align: center; }
.hidden { display: none; }

.site-footer { padding: 38px 0; background: #0f0d0d; color: #cfc3be; }
.footer-grid { display: grid; grid-template-columns: .6fr 1.8fr .6fr; gap: 35px; align-items: center; }
.footer-brand .brand-top { color: #fff; }
.footer-grid p { margin: 0; font-size: .82rem; }
.copyright { text-align: right; }

@media (max-width: 1050px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .partner-grid, .deliverables-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .signal-card { max-width: 720px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:last-child { grid-column: 1 / -1; }
  .not-grid { grid-template-columns: repeat(2, 1fr); }
  .not-grid div:nth-child(2) { border-right: 0; }
  .not-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 68px; }
  .nav-cta { padding: 9px 14px; font-size: .84rem; }
  .hero { padding: 78px 0 68px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
  .section { padding: 78px 0; }
  .two-column { grid-template-columns: 1fr; gap: 20px; }
  .gap-grid { grid-template-columns: 1fr; }
  .gap-card, .gap-card:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .gap-card:last-child { border-bottom: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { border-bottom: 1px solid var(--dark-line); }
  .trust-grid > div:nth-child(2n) { border-right: 0; }
  .trust-grid > div:first-child { padding-left: 25px; }
  .trust-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .process-grid, .checklist, .form-row { grid-template-columns: 1fr; }
  .process-step:last-child { grid-column: auto; }
  .checklist div, .checklist div:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .checklist div:last-child { border-bottom: 0; }
  .not-grid { grid-template-columns: 1fr; }
  .not-grid div, .not-grid div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .not-grid div:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .copyright { text-align: left; }
}

/* Red Raven brand mark supplied by the owner */
.brand {
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.brand-words {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  width: 50px;
  height: 46px;
  overflow: hidden;
  border-radius: 11px;
  background: #efefe3;
  flex: 0 0 auto;
}
.brand-mark img {
  display: block;
  width: 82px;
  height: 46px;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.signal-card {
  padding: 0;
  overflow: hidden;
}
.signal-card::before {
  display: none;
}
.signal-art-wrap {
  background: #efefe3;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.signal-art {
  display: block;
  width: 100%;
  aspect-ratio: 885 / 500;
  object-fit: cover;
  object-position: center;
}
.signal-content {
  padding: 30px 34px 34px;
}
.signal-content .signal-dot {
  margin-bottom: 22px;
}
.footer-brand .brand-mark {
  width: 44px;
  height: 40px;
  border-radius: 9px;
}
.footer-brand .brand-mark img {
  width: 72px;
  height: 40px;
}

@media (max-width: 760px) {
  .brand-mark {
    width: 42px;
    height: 38px;
    border-radius: 9px;
  }
  .brand-mark img {
    width: 68px;
    height: 38px;
  }
  .signal-content {
    padding: 26px 24px 28px;
  }
}
