
:root {
  --ink: #171717;
  --charcoal: #242424;
  --muted: #6b6f76;
  --line: #e6e0d8;
  --paper: #fffaf3;
  --soft: #f7f3ec;
  --white: #ffffff;
  --red: #da251d;
  --red-dark: #a81813;
  --gold: #f4b23a;
  --shadow: 0 24px 70px rgba(14, 14, 14, 0.16);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.55;
}

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

a { color: inherit; text-decoration: none; }

p { margin: 0 0 1rem; color: #4d5259; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 { font-size: clamp(2.8rem, 6vw, 6.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 4rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.025em; }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 99;
  background: var(--red);
  color: white;
  padding: .7rem 1rem;
  border-radius: 999px;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 23, 23, .94);
  color: white;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.top-strip {
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: rgba(255,255,255,.76);
}

.strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  min-width: 220px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: #050505;
}

.brand strong { display: block; font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; }
.brand small { color: rgba(255,255,255,.64); }

.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .25rem;
}

.main-nav a {
  padding: .65rem .68rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
  background: rgba(218,37,29,.22);
}

.quote-link,
.btn,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: .8rem 1.15rem;
  font-weight: 900;
  letter-spacing: .01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote-link,
.btn.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 32px rgba(218, 37, 29, .28);
}

.quote-link { min-width: 148px; }

.quote-link:hover,
.btn:hover,
.footer-cta:hover { transform: translateY(-2px); }

.btn.secondary {
  background: white;
  color: var(--ink);
}

.btn.ghost {
  color: white;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}

.btn.ghost.dark {
  color: var(--ink);
  border-color: rgba(0,0,0,.2);
}

.btn.light {
  background: white;
  color: var(--red-dark);
}

.hero {
  position: relative;
  min-height: 780px;
  color: white;
  overflow: hidden;
  background: #111;
}

.hero-bg,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  background:
    radial-gradient(circle at 80% 15%, rgba(218,37,29,.34), transparent 25%),
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 44%, rgba(0,0,0,.22) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 4rem;
  padding: 6rem 0;
}

.hero-copy { max-width: 760px; }
.hero-copy .lead { max-width: 720px; color: rgba(255,255,255,.78); font-size: 1.18rem; }

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--red);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-panel .eyebrow,
.inner-hero .eyebrow,
.contact-hero .eyebrow { color: var(--gold); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.hero-panel {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(20,20,20,.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-kicker {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: .8rem;
}

.hero-panel h2 { font-size: 1.7rem; margin-bottom: 1rem; }
.hero-panel ul { margin: 0; padding: 0; list-style: none; }
.hero-panel li { padding: .75rem 0 .75rem 1.8rem; position: relative; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.82); }
.hero-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.trust-bar {
  background: var(--charcoal);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}

.trust-grid div {
  padding: 1.5rem;
  background: var(--charcoal);
}

.trust-grid strong { display: block; color: white; font-size: 1.05rem; }
.trust-grid span { color: rgba(255,255,255,.62); font-size: .92rem; }

.section { padding: 6.5rem 0; }
.section.muted { background: var(--soft); }

.section-head {
  max-width: 820px;
  margin-bottom: 2.4rem;
}

.section-head.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  max-width: none;
  align-items: end;
}

.section-head p:last-child { font-size: 1.05rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.product-grid.three { grid-template-columns: repeat(3, 1fr); }

.product-card {
  min-height: 100%;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 38px rgba(38,31,22,.06);
}

.product-image {
  display: block;
  aspect-ratio: 1.45 / 1;
  background: #ddd;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-body { padding: 1.35rem; }
.product-body .eyebrow { color: var(--red); margin-bottom: .5rem; }
.product-body h3 { margin-bottom: .65rem; }

.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1.1rem;
}

.card-actions a,
.text-link,
.doc-card a,
.note-card a {
  color: var(--red-dark);
  font-weight: 900;
}

.feature-band {
  background: var(--ink);
  color: white;
  padding: 6.5rem 0;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.feature-grid p { color: rgba(255,255,255,.72); }

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.process-grid article {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: rgba(255,255,255,.06);
}

.feature-list span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 950;
  margin-bottom: 1rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.doc-grid.compact .doc-card:nth-child(n+4) { display: none; }

.doc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
}

.doc-card span {
  display: inline-block;
  color: var(--red);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.doc-card h3 { margin-bottom: .65rem; }

.cta-panel {
  background:
    linear-gradient(135deg, rgba(218,37,29,.96), rgba(120,12,8,.98)),
    var(--red);
  color: white;
  padding: 4rem 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-inner p { color: rgba(255,255,255,.82); }

.inner-hero,
.contact-hero {
  color: white;
  background:
    radial-gradient(circle at 88% 16%, rgba(218,37,29,.35), transparent 24%),
    linear-gradient(135deg, #151515, #2c2a28);
  padding: 5rem 0;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 3rem;
  align-items: center;
}

.inner-hero p,
.contact-hero p { color: rgba(255,255,255,.76); font-size: 1.05rem; }

.inner-hero img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.15);
}

.compare-table,
.policy {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th, td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--red-dark);
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.detail-main,
.detail-card,
.note-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.detail-card {
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow);
}

.detail-card .btn { width: 100%; margin-top: .7rem; }

.check-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: .7rem 0 .7rem 1.8rem;
  border-bottom: 1px solid var(--line);
  color: #4d5259;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .7rem;
  color: var(--red);
  font-weight: 950;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.history-copy p { font-size: 1.05rem; }

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child { border-bottom: 0; }
.timeline strong { color: var(--red-dark); }
.timeline span { color: #4d5259; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-grid article {
  background: white;
  border-color: var(--line);
}

.process-grid p { margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-cards a {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}

.contact-cards span {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-cards strong { display: block; margin-top: .2rem; font-size: 1.2rem; }

.form-card {
  background: white;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-card p { color: #4d5259; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
  scroll-margin-top: 145px;
}

.contact-form label {
  display: grid;
  gap: .45rem;
  font-weight: 850;
  color: #333;
}

.contact-form .full,
.contact-form .hp { grid-column: 1 / -1; }

.contact-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #d8d3cb;
  border-radius: 14px;
  padding: .9rem 1rem;
  font: inherit;
  background: #fffdf9;
  color: var(--ink);
}

textarea { resize: vertical; }

.contact-form button { grid-column: 1 / -1; justify-self: start; cursor: pointer; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: .8rem 1rem;
  border-radius: 14px;
  font-weight: 850;
}

.form-status.success { display: block; background: #e9f8eb; color: #176b2c; }
.form-status.error { display: block; background: #feeceb; color: #9c1913; }

.contact-hero.short { min-height: 55vh; display: grid; align-items: center; }
.narrow { max-width: 760px; }

.policy h2 { margin: 2rem 0 .7rem; font-size: 1.6rem; }
.policy h2:first-child { margin-top: 0; }

.site-footer {
  background: #111;
  color: white;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr;
  gap: 2rem;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 14px;
  background: black;
  margin-bottom: 1rem;
}

.site-footer h2 {
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-footer p { color: rgba(255,255,255,.62); }
.site-footer a { display: block; color: rgba(255,255,255,.78); margin-bottom: .55rem; }
.site-footer a:hover { color: white; }
.fineprint { font-size: .82rem; color: rgba(255,255,255,.48) !important; }
.footer-cta { background: var(--red); color: white !important; display: inline-flex !important; margin-top: .4rem; }

@media (max-width: 980px) {
  .nav-shell { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  .quote-link { display: none; }
  .main-nav { justify-content: flex-start; }
  .hero-grid,
  .inner-hero-grid,
  .feature-grid,
  .section-head.split,
  .product-detail,
  .two-col,
  .contact-grid,
  .cta-inner,
  .footer-grid { grid-template-columns: 1fr; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { padding: 5rem 0; }
  .hero-panel { max-width: 480px; }
  .trust-grid,
  .product-grid,
  .doc-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-card { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .strip-inner { align-items: flex-start; flex-direction: column; padding: .65rem 0; }
  .brand { min-width: 0; }
  .main-nav a { font-size: .75rem; padding: .6rem .68rem; }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-actions, .card-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section { padding: 4rem 0; }
  .trust-grid,
  .product-grid,
  .product-grid.three,
  .doc-grid,
  .process-grid,
  .contact-form { grid-template-columns: 1fr; }
  .contact-form button { width: 100%; }
  .inner-hero { padding: 3.5rem 0; }
  .form-card { padding: 1.2rem; }
}
