:root {
  --ink: #14171c;
  --ink-soft: #5b616b;
  --paper: #f6f4ef;
  --paper-2: #eeeae2;
  --white: #fffcf8;
  --line: #e2ddd3;
  --accent: #b42318;
  --accent-dark: #8f1a12;
  --accent-soft: #f8e8e4;
  --navy: #1b2a4a;
  --navy-2: #24365c;
  --sage: #2f5d50;
  --shadow: 0 20px 50px rgba(20, 23, 28, 0.08);
  --shadow-soft: 0 10px 30px rgba(20, 23, 28, 0.05);
  --serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(180, 35, 24, 0.07), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(27, 42, 74, 0.08), transparent 50%),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; }
a { color: var(--accent); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 20;
}
.skip:focus { left: 0; }
.wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}
.narrow { width: min(760px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 244, 239, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 221, 211, 0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy);
  color: #f6f4ef;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.82rem;
  flex: none;
}
nav {
  display: flex;
  gap: 0.35rem 1.15rem;
  align-items: center;
}
nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  content: "";
}
.menu-toggle span:before { position: absolute; top: -5px; }
.menu-toggle span:after { position: absolute; top: 5px; }

.hero { padding: 5.2rem 0 4.2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 3.2rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1rem;
}
.eyebrow:before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--accent);
}
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0 0 0.85rem; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 560; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); font-weight: 560; }
h3 { letter-spacing: -0.02em; }
.lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.lede-bubble {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.05rem 1.15rem 1.1rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.8rem 0 1.1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(180, 35, 24, 0.22);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.fine-print { font-size: 0.84rem; color: var(--ink-soft); max-width: 34rem; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.7rem 1.55rem 1.5rem;
  border-radius: var(--radius);
  position: relative;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--navy));
  border-radius: var(--radius) var(--radius) 0 0;
}
.hero-card h2 { font-size: 1.28rem; margin-top: 0.4rem; }
.hero-card ul { margin: 0; padding: 0; list-style: none; color: var(--ink-soft); }
.hero-card li {
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  padding-left: 1.15rem;
  position: relative;
}
.hero-card li:last-child { border-bottom: 0; }
.hero-card li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 1.1rem;
}
.card-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--sage);
  background: #eef5f1;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

section { padding: 5rem 0; }
.band { background: rgba(238, 234, 226, 0.7); }
.section-head { max-width: 40rem; margin-bottom: 2.2rem; }
.section-head p, .band p { color: var(--ink-soft); }
.caution {
  background: var(--white);
  border: 1px solid #efd2cc;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  margin: 1.4rem 0;
  box-shadow: var(--shadow-soft);
}
.caution h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.caution p:last-child { margin-bottom: 0; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
  grid-column: span 2;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.steps li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.steps li:nth-child(4),
.steps li:nth-child(5) { grid-column: span 3; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.55rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}
.steps h3 { font-size: 1.18rem; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grid-3 article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.45rem 1.3rem;
  box-shadow: var(--shadow-soft);
}
.grid-3 h3 { font-size: 1.22rem; }
.grid-3 p { margin: 0; color: var(--ink-soft); }
.icon-pill {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  background: var(--accent-soft);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
}
blockquote {
  margin: 0;
  background: linear-gradient(165deg, var(--navy), var(--navy-2));
  color: #f4efe6;
  padding: 2.2rem 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.4;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
blockquote cite {
  font-style: normal;
  font-size: 0.88rem;
  opacity: 0.8;
}

.contact {
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(180, 35, 24, 0.18), transparent 55%),
    var(--ink);
  color: var(--paper);
}
.contact h2, .contact .eyebrow { color: var(--paper); }
.contact .eyebrow { color: #f0b4ad; }
.contact .eyebrow:before { background: #f0b4ad; }
.contact p { color: #d5d0c6; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.email-list { display: grid; gap: 0.85rem; margin: 1.4rem 0; }
.email-block {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9c2b6 !important;
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}
.email-block a {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  word-break: break-all;
  margin: 0.25rem 0 0.3rem;
  text-decoration: none;
}
.email-block a:hover { color: #f0b4ad; }
.email-block span {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.88rem;
  color: #d5d0c6;
}
.tips { padding-left: 1.1rem; color: #d5d0c6; }
.site-footer a { color: #eadfd0; }
.tips li { margin: 0.4rem 0; }

.report-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 1.5rem;
}
.report-form h3 { color: var(--paper); font-size: 1.25rem; }
.form-help, .form-note { font-size: 0.85rem; color: #b8b1a6; }
.report-form label {
  display: block;
  margin: 0.9rem 0 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
}
.report-form input,
.report-form select,
.report-form textarea {
  width: 100%;
  border: 1px solid #3a414c;
  background: #0f1216;
  color: var(--paper);
  border-radius: 12px;
  padding: 0.78rem 0.8rem;
  font: inherit;
}
.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
  outline: 2px solid rgba(240, 180, 173, 0.5);
  border-color: #f0b4ad;
}
.report-form .btn { margin-top: 1.1rem; width: 100%; }

.site-footer {
  background: #0c0e12;
  color: #b8b1a6;
  padding: 2.2rem 0;
  font-size: 0.92rem;
}
.footer-inner p { margin: 0 0 0.65rem; }
.legal { font-size: 0.82rem; }

@media (max-width: 900px) {
  .menu-toggle { display: grid; place-items: center; }
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(246, 244, 239, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.15rem;
  }
  nav.open { display: flex; }
  nav a { padding: 0.7rem 0.4rem; }
  .nav-cta { text-align: center; }
  .hero-grid, .steps, .grid-3, .split, .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps li,
  .steps li:nth-child(4),
  .steps li:nth-child(5) { grid-column: auto; }
  .hero { padding: 2.6rem 0 3rem; }
  h1 { font-size: 2.35rem; }
  section { padding: 3.4rem 0; }
}
