:root {
  --red: #e20f16;
  --red-deep: #b90c12;
  --green: #61d51b;
  --ink: #111111;
  --cream: #f4f0e7;
  --paper: #fffdfa;
  --line: #d8d2c7;
  --muted: #69645c;
  --content: 1680px;
  --wide: 2600px;
  --page-pad: clamp(24px, 4.25vw, 82px);
  --section-space: clamp(88px, 8vw, 146px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: #fff; background: var(--red); }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: -70px;
  left: 16px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid var(--ink);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.topline {
  height: 34px;
  overflow: hidden;
  color: #fff;
  background: var(--red);
  border-bottom: 2px solid var(--ink);
}
.topline-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  animation: marquee 28s linear infinite;
}
.topline-track i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--green);
  transform: rotate(45deg);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 88px;
  padding-inline: max(24px, calc((100vw - 2100px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: rgba(255, 253, 250, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  width: 228px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}
.brand-mascot {
  width: 72px;
  height: 56px;
  object-fit: contain;
}
.brand-wordmark {
  width: 145px;
  height: 52px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 38px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  transition: color .2s ease, background .2s ease;
}
.nav-cta:hover { color: var(--ink); background: var(--green); }
.menu-toggle { display: none; }

.hero {
  width: min(100%, var(--wide));
  min-height: clamp(720px, 47vw, 890px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(560px, .92fr) minmax(680px, 1.08fr);
  background: var(--cream);
  border-inline: 1px solid rgba(17, 17, 17, .05);
}
.hero-copy {
  min-width: 0;
  padding: clamp(76px, 6.5vw, 126px) clamp(48px, 5.2vw, 104px) clamp(60px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: #fff; opacity: .72; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.055em;
}
h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(64px, 5.35vw, 104px);
  text-transform: uppercase;
}
h1 span { color: var(--red); }
.hero-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: #403c36;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--red);
}
.button-dark { color: #fff; background: var(--ink); }
.text-link {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 2px solid var(--ink);
}
.text-link span { color: var(--red); }
.hero-proof {
  width: 100%;
  max-width: 660px;
  margin-top: clamp(48px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #c8c1b5;
}
.hero-proof div {
  min-width: 0;
  padding: 22px 18px 0 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #c8c1b5;
}
.hero-proof div + div { padding-left: 18px; }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong {
  font-family: "Archivo", Arial, sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}
.hero-proof span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
  background: var(--red);
  isolation: isolate;
}
.hero-red-panel {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .10) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(0, 0, 0, .10) 1px, transparent 1px) 0 0 / 58px 58px,
    var(--red);
}
.hero-photo-wrap {
  position: absolute;
  z-index: 2;
  inset: 6% 7.5% 19% 6%;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, .22);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
}
.photo-label {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 11px 14px;
  color: #fff;
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-mascot {
  position: absolute;
  z-index: 4;
  right: 1.5%;
  bottom: 0;
  width: min(48%, 520px);
  filter: drop-shadow(0 16px 10px rgba(0, 0, 0, .30));
}
.hero-stamp {
  position: absolute;
  z-index: 5;
  left: 3.5%;
  bottom: 4.5%;
  width: 116px;
  height: 116px;
  padding: 17px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--green);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
  transform: rotate(-9deg);
}
.hero-stamp strong {
  font-family: "Archivo", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.intro-band {
  min-height: 82px;
  padding: 18px max(24px, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: var(--ink);
  border-top: 3px solid var(--green);
}
.intro-band p {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 27px);
  font-weight: 900;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.intro-band span { color: #b9b9b9; font-size: 12px; text-align: right; }

.section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: var(--section-space) var(--page-pad);
}
.section-heading {
  margin-bottom: clamp(48px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  align-items: end;
  gap: clamp(42px, 5vw, 88px);
}
h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 4.9vw, 82px);
  text-transform: uppercase;
}
.section-heading > p,
.results-title > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.services { background: var(--paper); }
.service-board {
  width: 100%;
  border-top: 3px solid var(--ink);
}
.service-row {
  min-height: 142px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 220px;
  align-items: stretch;
  border-bottom: 1px solid var(--ink);
  transition: background .2s ease;
}
.service-row:hover { background: var(--cream); }
.service-row.featured { color: #fff; background: var(--red); }
.service-row.featured:hover { background: var(--red-deep); }
.service-number {
  display: grid;
  place-items: center;
  border-right: 1px solid currentColor;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  opacity: .58;
}
.service-name {
  min-width: 0;
  padding: 30px clamp(24px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-name h3 {
  margin-bottom: 8px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(24px, 2vw, 33px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.service-name p {
  max-width: 760px;
  margin: 0;
  color: inherit;
  font-size: 15px;
  opacity: .74;
}
.service-meta {
  min-width: 0;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid currentColor;
}
.service-meta span {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .66;
}
.service-meta strong {
  font-family: "Archivo", Arial, sans-serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}
.service-extras {
  padding: 24px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.service-extras strong {
  color: var(--red);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-extras span::before {
  content: "+";
  margin-right: 7px;
  color: var(--ink);
  font-weight: 800;
}
.pricing-note { margin: 14px 0 0; color: #8a857c; font-size: 10px; }

.results {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-pad), calc((100vw - var(--content)) / 2 + var(--page-pad)));
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.results-title {
  width: min(100%, 1420px);
  margin: 0 auto clamp(52px, 5vw, 72px);
}
.results-title > p:last-child {
  max-width: 660px;
  margin: 26px 0 0 auto;
}
.comparison-grid {
  width: min(100%, 1420px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 58px);
}
.compare { min-width: 0; }
.compare-stage {
  --position: 50%;
  position: relative;
  aspect-ratio: 4 / 4.75;
  overflow: hidden;
  background: #ddd;
  border: 2px solid var(--ink);
}
.compare-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-before { filter: saturate(.85); }
.compare-after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}
.compare-after { width: 100%; max-width: none; }
.compare-line {
  position: absolute;
  z-index: 3;
  left: var(--position);
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  transform: translateX(-1px);
  pointer-events: none;
}
.compare-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
  transform: translate(-50%, -50%);
}
.compare input {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.compare-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(17, 17, 17, .9);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.compare-label.before { left: 16px; }
.compare-label.after { right: 16px; }
.compare-caption {
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
}
.compare-caption strong {
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.compare-caption span {
  max-width: 250px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.about {
  width: min(100%, var(--wide));
  min-height: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(0, 1.12fr);
  color: #fff;
  background: var(--red);
}
.about-mascot-wrap {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .12) 0 3px, transparent 4px) 0 0 / 34px 34px,
    var(--ink);
  border-right: 2px solid var(--ink);
}
.about-mascot-wrap img {
  position: relative;
  z-index: 2;
  width: min(108%, 760px);
  margin-right: -8%;
  filter: drop-shadow(0 20px 14px rgba(0, 0, 0, .42));
}
.about-burst {
  position: absolute;
  z-index: 3;
  left: 8%;
  top: 9%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 3px solid #fff;
  border-radius: 50%;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: .92;
  text-align: center;
  transform: rotate(-8deg);
}
.about-copy {
  padding: clamp(86px, 7.3vw, 138px) clamp(48px, 6.3vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-copy h2 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: clamp(46px, 4.6vw, 78px);
}
.about-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}
.reasons {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .44);
}
.reasons article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .44);
}
.reasons article > span {
  color: var(--green);
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 900;
}
.reasons h3 {
  margin-bottom: 4px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}
.reasons p { margin: 0; color: rgba(255, 255, 255, .73); font-size: 13px; }

.reviews { background: var(--paper); }
.review-heading { align-items: center; }
.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.review-controls button {
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  font-size: 21px;
  transition: color .2s ease, background .2s ease;
}
.review-controls button:hover { color: var(--ink); background: var(--green); }
.review-slider { position: relative; min-height: 360px; overflow: hidden; }
.review-card {
  position: absolute;
  inset: 0;
  padding: clamp(34px, 4.6vw, 66px);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 32px 42px;
  background: var(--cream);
  border: 2px solid var(--ink);
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease;
}
.review-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.stars { color: var(--red); font-size: 19px; letter-spacing: .14em; }
.review-card blockquote {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
}
.review-card footer {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-card footer strong { font-size: 13px; text-transform: uppercase; }
.review-card footer span { color: var(--muted); font-size: 11px; }

.contact {
  width: min(100%, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(470px, .92fr) minmax(0, 1.08fr);
  color: #fff;
  background: var(--red);
  border-top: 3px solid var(--ink);
}
.contact-intro {
  padding: clamp(82px, 7.5vw, 136px) clamp(48px, 6vw, 105px);
  border-right: 2px solid var(--ink);
}
.contact-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 5vw, 84px);
}
.contact-intro > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}
.contact-details {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .55);
}
.contact-details > * {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
}
.contact-details span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .72;
}
.contact-details strong {
  margin-top: 4px;
  font-size: 15px;
  overflow-wrap: anywhere;
}
.contact-details a:hover strong { color: var(--green); }
.contact-form {
  padding: clamp(82px, 7.5vw, 136px) clamp(48px, 6vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  color: var(--ink);
  background: var(--cream);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  outline: none;
  text-transform: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); }
.submit-button { align-self: flex-start; margin-top: 10px; }
.form-note { margin: -6px 0 0; color: var(--muted); font-size: 10px; }

.site-footer {
  min-height: 170px;
  padding: 30px max(24px, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 170px minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  color: #fff;
  background: var(--ink);
  border-top: 3px solid var(--green);
}
.footer-logo img { max-height: 98px; object-fit: contain; }
.site-footer p { margin: 0; color: #aaa; font-size: 11px; }
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--green); }
.demo-credit { padding-left: 24px; border-left: 1px solid #444; }
.mobile-call { display: none; }
.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: 370px;
  padding: 15px 18px;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--green);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .52s ease, transform .52s ease;
}
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }

@media (min-width: 2601px) {
  .hero,
  .about,
  .contact { box-shadow: 0 0 0 1px rgba(17, 17, 17, .05); }
}

@media (max-width: 1450px) {
  :root { --page-pad: clamp(24px, 4vw, 62px); }
  .hero {
    grid-template-columns: minmax(500px, .9fr) minmax(600px, 1.1fr);
    min-height: 740px;
  }
  .hero-copy { padding-left: 54px; padding-right: 48px; }
  h1 { font-size: clamp(62px, 5.6vw, 86px); }
  .hero-mascot { width: min(52%, 500px); }
  .service-row { grid-template-columns: 76px minmax(0, 1fr) 200px; }
  .about-copy { padding-left: 64px; padding-right: 64px; }
  .contact-intro,
  .contact-form { padding-left: 62px; padding-right: 62px; }
}

@media (max-width: 1180px) {
  .site-header { padding-inline: 24px; }
  .hero {
    grid-template-columns: minmax(430px, .9fr) minmax(500px, 1.1fr);
    min-height: 700px;
  }
  .hero-copy { padding: 68px 38px 54px; }
  h1 { font-size: clamp(58px, 6.1vw, 74px); }
  .hero-proof { margin-top: 48px; }
  .hero-proof strong { font-size: 24px; }
  .hero-photo-wrap { inset: 6% 5% 20% 5%; }
  .hero-mascot { right: -2%; width: min(56%, 470px); }
  .hero-stamp { width: 104px; height: 104px; }
  .service-row { grid-template-columns: 68px minmax(0, 1fr) 180px; }
  .about { grid-template-columns: .82fr 1.18fr; }
  .about-copy { padding: 76px 48px; }
  .contact { grid-template-columns: .9fr 1.1fr; }
  .contact-intro,
  .contact-form { padding: 76px 48px; }
}

@media (max-width: 920px) {
  .topline { height: 30px; }
  .site-header { min-height: 76px; padding-inline: 18px; }
  .brand { width: 194px; height: 62px; gap: 5px; }
  .brand-mascot { width: 62px; height: 50px; }
  .brand-wordmark { width: 124px; height: 45px; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--ink);
    border: 0;
  }
  .menu-toggle span {
    width: 23px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 22px 18px 30px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; padding: 15px; text-align: center; }

  .hero {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    border-inline: 0;
  }
  .hero-copy { padding: 72px 24px 52px; }
  h1 { font-size: clamp(58px, 12vw, 84px); }
  .hero-intro { max-width: 680px; }
  .hero-visual { min-height: 610px; }
  .hero-photo-wrap { inset: 5% 5% 23% 5%; }
  .hero-mascot { right: -6%; width: min(66%, 540px); }
  .hero-stamp { left: 5%; bottom: 5%; width: 108px; height: 108px; }
  .intro-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .intro-band span { text-align: left; }

  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .service-row { grid-template-columns: 54px minmax(0, 1fr) 156px; }
  .service-name { padding-inline: 22px; }
  .service-meta strong { font-size: 20px; }
  .comparison-grid { grid-template-columns: 1fr; gap: 62px; }
  .compare-stage { aspect-ratio: 4 / 4.4; }
  .results-title > p:last-child { margin-left: 0; }
  .about { grid-template-columns: 1fr; }
  .about-mascot-wrap {
    min-height: 560px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .about-mascot-wrap img { width: min(100%, 670px); margin-right: -5%; }
  .about-copy { padding: 82px 24px; }
  .review-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
  }
  .review-card footer { grid-column: 1; }
  .review-slider { min-height: 470px; }
  .contact { grid-template-columns: 1fr; }
  .contact-intro { border-right: 0; border-bottom: 2px solid var(--ink); }
  .contact-intro,
  .contact-form { padding: 80px 24px; }
  .site-footer { grid-template-columns: 140px minmax(0, 1fr); }
  .footer-links { justify-self: end; }
  .demo-credit {
    grid-column: 1 / -1;
    padding: 15px 0 0;
    border-left: 0;
    border-top: 1px solid #444;
  }
}

@media (max-width: 640px) {
  body { padding-bottom: 58px; }
  .hero-copy { padding-top: 58px; }
  h1 { font-size: clamp(50px, 14vw, 62px); }
  h2 { font-size: clamp(42px, 12vw, 54px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div,
  .hero-proof div + div {
    padding: 14px 0;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid #c8c1b5;
  }
  .hero-proof div:last-child { border-bottom: 0; }
  .hero-visual { min-height: 480px; }
  .hero-photo-wrap { inset: 4% 4% 25% 4%; box-shadow: 10px 10px 0 rgba(0, 0, 0, .22); }
  .hero-mascot { right: -13%; bottom: -1%; width: 80%; }
  .hero-stamp { left: 4%; bottom: 3%; width: 90px; height: 90px; font-size: 8px; }
  .hero-stamp strong { font-size: 15px; }
  .section { padding-inline: 18px; }
  .results { padding-inline: 18px; }

  .service-row {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
  }
  .service-number { grid-row: 1 / 3; }
  .service-name { padding: 25px 18px 8px; }
  .service-name h3 { font-size: 22px; }
  .service-name p { font-size: 13px; }
  .service-meta {
    grid-column: 2;
    padding: 0 18px 24px;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
    border-left: 0;
  }
  .service-meta span { margin: 0; }
  .service-meta strong { font-size: 18px; }
  .service-extras { align-items: flex-start; flex-direction: column; gap: 8px; }
  .compare-caption { align-items: flex-start; flex-direction: column; }
  .compare-caption span { text-align: left; }
  .about-mascot-wrap { min-height: 420px; }
  .about-burst { width: 102px; height: 102px; font-size: 16px; }
  .review-heading { grid-template-columns: 1fr auto; }
  .review-heading > div:first-child { grid-column: 1 / -1; }
  .review-controls { justify-content: flex-start; }
  .review-slider { min-height: 540px; }
  .review-card { padding: 25px; }
  .review-card blockquote { font-size: 27px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form,
  .contact-intro { padding-inline: 20px; }
  .site-footer {
    padding: 28px 18px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo { margin: 0 auto; }
  .footer-links { justify-self: center; }
  .demo-credit { grid-column: 1; width: 100%; }
  .mobile-call {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ink);
    border-top: 3px solid var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .toast { left: 14px; right: 14px; bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .topline-track { animation: none; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 2400px) {
  :root {
    --content: 2400px;
    --wide: 3000px;
    --page-pad: 100px;
    --section-space: 160px;
  }
  .site-header {
    min-height: 92px;
    padding-inline: max(30px, calc((100vw - 2600px) / 2));
  }
  .brand { width: 260px; }
  .brand-mascot { width: 82px; height: 62px; }
  .brand-wordmark { width: 166px; height: 58px; }
  .site-nav { font-size: 13px; gap: 42px; }
  .hero {
    min-height: 980px;
    grid-template-columns: minmax(760px, .92fr) minmax(900px, 1.08fr);
  }
  .hero-copy { padding: 118px 110px 92px; }
  h1 { max-width: 920px; font-size: 124px; }
  .hero-intro { max-width: 700px; font-size: 20px; }
  .hero-proof { max-width: 760px; }
  .hero-proof strong { font-size: 31px; }
  .hero-photo-wrap { inset: 5.5% 6.5% 18% 5.5%; }
  .hero-mascot { width: min(48%, 620px); }
  .hero-stamp { width: 132px; height: 132px; font-size: 10px; }
  .hero-stamp strong { font-size: 21px; }
  h2 { font-size: 96px; }
  .section-heading { gap: 110px; }
  .section-heading > p,
  .results-title > p { font-size: 18px; }
  .service-row { min-height: 162px; grid-template-columns: 94px minmax(0, 1fr) 250px; }
  .service-name { padding-inline: 52px; }
  .service-name h3 { font-size: 38px; }
  .service-name p { font-size: 16px; }
  .service-meta strong { font-size: 27px; }
  .results-title,
  .comparison-grid { width: min(100%, 2000px); }
  .about-copy h2 { font-size: 92px; }
  .about-copy > p:not(.eyebrow) { font-size: 19px; }
  .review-card blockquote { font-size: 54px; }
  .contact-intro h2 { font-size: 94px; }
}
