:root {
  color-scheme: light;
  --bg: #fffdfb;
  --surface: #ffffff;
  --surface-red: #fff0ef;
  --ink: #111111;
  --muted: #5f5a57;
  --line: #eadfda;
  --red: #ff3036;
  --red-dark: #b90f18;
  --blue: #0d6efd;
  --teal: #0f766e;
  --shadow: 0 22px 70px rgba(120, 20, 25, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 48, 54, 0.08) 0 1px, transparent 1px 100%),
    var(--bg);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: "Avenir Next", "SF Pro Display", "Trebuchet MS", sans-serif;
  line-height: 1.55;
}

a { color: var(--red-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header,
.site-footer,
.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 44px;
  align-items: start;
  padding: 48px 0 34px;
}

.eyebrow {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin: 8px 0 16px;
  font-family: Impact, "Avenir Next Condensed", "Arial Black", sans-serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-family: Impact, "Avenir Next Condensed", "Arial Black", sans-serif;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.direct-answer {
  max-width: 760px;
  margin: 0 0 22px;
  color: #27211f;
  font-size: 19px;
}

.pill-row,
.cta-row,
.related,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #282221;
  font-size: 14px;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  background: var(--surface);
  color: var(--red-dark);
}

.hero-media {
  justify-self: end;
  width: min(100%, 390px);
}

.phone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.copy p {
  margin: 0 0 14px;
  color: #27211f;
  font-size: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 58px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #211b1a;
  font-weight: 700;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shots-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(120, 20, 25, 0.11);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.data-table th,
.data-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--surface-red);
  color: #1f1716;
}

.data-table tr:last-child td { border-bottom: 0; }

.qa-list { display: grid; gap: 12px; }

.qa,
.callout {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.callout {
  border-color: #ffc2c5;
  background: var(--surface-red);
}

.qa p,
.callout p {
  margin: 0;
  color: #27211f;
}

.related a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #211b1a;
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 36px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .page-shell {
    width: min(100% - 24px, 680px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: start;
    width: min(100%, 330px);
  }

  h1 { font-size: 48px; }
  h2 { font-size: 32px; }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .section-grid > *,
  .copy,
  .shots-grid {
    min-width: 0;
  }

  .shots-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 12px 18px 0;
    margin-right: -12px;
    -webkit-overflow-scrolling: touch;
  }

  .shots-grid img {
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    scroll-snap-align: start;
  }
}
