:root {
  --paper: #f5f0df;
  --ink: #171717;
  --lime: #c7f43a;
  --coral: #ff654f;
  --blue: #3155ff;
  --white: #fffdf4;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.eyebrow,
.index,
.main-nav,
.ticker {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: .015em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: .93;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  border-radius: 0;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 4px solid var(--coral);
  outline-offset: 4px;
}

section,
footer {
  scroll-margin-top: 100px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border: var(--border);
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--lime);
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 9px 0;
  animation: ticker-scroll 28s linear infinite;
}

.ticker__track span,
.ticker__track b {
  display: inline-block;
}

.ticker__track b {
  font-family: Arial, sans-serif;
  font-size: 14px;
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 86px;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: var(--border);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: .85;
  text-decoration: none;
}

.brand svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  fill: var(--coral);
  stroke: var(--ink);
  stroke-width: 2px;
}

.brand small {
  display: block;
  margin-top: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: .32em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 38px);
  font-size: 14px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 3px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: var(--border);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: var(--ink);
}

.menu-toggle strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 22px;
  border: var(--border);
  background: var(--coral);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(4px, 4px);
}

.button--small {
  min-height: 42px;
  padding: 8px 14px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
}

.button--ghost {
  background: var(--paper);
}

.button--lime {
  background: var(--lime);
}

.hero {
  display: grid;
  min-height: calc(100vh - 120px);
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .45fr);
  border-bottom: var(--border);
  background: var(--blue);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 110px) clamp(20px, 6vw, 90px);
  border-right: var(--border);
}

.eyebrow {
  margin-bottom: 22px;
  font-size: 14px;
  letter-spacing: .1em;
}

.hero h1 {
  max-width: 1100px;
  margin-bottom: 30px;
  font-size: clamp(58px, 9.5vw, 150px);
  letter-spacing: -.035em;
}

.hero__lead {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.32;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__facts {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--paper);
}

.hero__facts div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 54px);
  border-bottom: var(--border);
}

.hero__facts div:nth-child(2) {
  background: var(--lime);
}

.hero__facts div:last-child {
  border-bottom: 0;
  background: var(--coral);
}

.hero__facts strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(50px, 6vw, 88px);
  line-height: 1;
}

.hero__facts span {
  max-width: 240px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: .45fr 1.2fr .75fr;
  align-items: end;
  gap: 34px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 7vw, 105px);
  letter-spacing: -.025em;
}

.section-heading > p:last-child {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.section-heading--wide {
  grid-template-columns: .4fr 1.6fr;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.service-card {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  grid-column: span 2;
  padding: 26px;
  border: var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card--lime { background: var(--lime); }
.service-card--coral { background: var(--coral); }
.service-card--blue { background: var(--blue); }

.index {
  display: block;
  margin-bottom: 44px;
  font-size: 48px;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 44px);
}

.service-card p {
  font-weight: 600;
}

.service-card ul {
  margin: 4px 0 26px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 0;
  border-top: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card li::before {
  margin-right: 9px;
  content: "✓";
}

.service-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: var(--border);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--border);
  border-bottom: var(--border);
}

.about__panel {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(30px, 6vw, 90px);
  border-right: var(--border);
  background: var(--coral);
}

.about__panel svg {
  position: absolute;
  top: 4%;
  left: 10%;
  width: 80%;
  height: auto;
  fill: none;
  stroke: var(--ink);
  stroke-width: 12px;
}

.about__panel strong {
  position: relative;
  z-index: 2;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(70px, 10vw, 160px);
  line-height: .8;
}

.about__copy {
  padding: clamp(54px, 7vw, 110px);
  background: var(--lime);
}

.about__copy h2 {
  max-width: 750px;
  margin-bottom: 34px;
  font-size: clamp(45px, 6vw, 88px);
}

.about__copy > p:not(.eyebrow) {
  max-width: 750px;
  font-size: 19px;
  font-weight: 600;
}

.about__rule {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: var(--border);
}

.about__rule:last-child {
  border-bottom: var(--border);
}

.about__rule span {
  font-size: 12px;
  font-weight: 900;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--border);
  border-left: var(--border);
}

.tile {
  min-height: 290px;
  padding: 28px;
  border-right: var(--border);
  border-bottom: var(--border);
  background: var(--white);
}

.tile--coral { background: var(--coral); }
.tile--lime { background: var(--lime); }
.tile--blue { background: var(--blue); }

.tile span {
  display: block;
  margin-bottom: 66px;
  font-size: 12px;
  font-weight: 900;
}

.tile h3 {
  margin-bottom: 15px;
  font-size: clamp(28px, 3vw, 42px);
}

.tile p {
  margin-bottom: 0;
  font-weight: 600;
}

.testimonials {
  border-top: var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-grid figure {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 30px;
  border: var(--border);
  background: var(--coral);
  box-shadow: var(--shadow);
}

.testimonial-grid figure:nth-child(3) {
  background: var(--blue);
}

.testimonial-grid .testimonial--lime {
  background: var(--lime);
}

.testimonial-grid blockquote {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-grid figcaption {
  padding-top: 18px;
  border-top: var(--border);
}

.testimonial-grid figcaption strong,
.testimonial-grid figcaption span {
  display: block;
}

.testimonial-grid figcaption span {
  font-size: 14px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(66px, 8vw, 120px) clamp(20px, 5vw, 72px) 24px;
  border-top: var(--border);
  background: var(--ink);
  color: var(--paper);
}

.footer__intro h2 {
  margin-bottom: 30px;
  font-size: clamp(60px, 8vw, 120px);
  color: var(--coral);
}

.footer__intro > p:last-child {
  max-width: 640px;
  font-size: 20px;
  font-weight: 700;
}

.contact-form {
  padding: clamp(22px, 4vw, 44px);
  border: 3px solid var(--paper);
  background: var(--blue);
  box-shadow: 9px 9px 0 var(--lime);
  color: var(--paper);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 4px 4px 0 var(--coral);
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
}

.contact-form .consent input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--lime);
}

.form-status {
  min-height: 26px;
  margin: 18px 0 0;
  font-weight: 800;
}

.footer__details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border-top: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
}

.footer__details > div {
  padding: 24px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
}

.footer__details h3 {
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 18px;
}

.footer__details p,
.footer__details address {
  margin: 0;
  font-style: normal;
}

.footer__details a {
  display: block;
  overflow-wrap: anywhere;
}

.social-links {
  display: grid;
  gap: 6px;
}

.footer__bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer--compact {
  display: block;
  padding-top: 52px;
}

.footer--compact .footer__details {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.privacy-hero {
  padding: clamp(55px, 9vw, 130px) clamp(20px, 6vw, 90px);
  border-bottom: var(--border);
  background: var(--coral);
}

.privacy-hero h1 {
  margin-bottom: 30px;
  font-size: clamp(64px, 11vw, 160px);
  letter-spacing: -.04em;
}

.privacy-hero > p:last-child {
  margin-bottom: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-layout {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 300px minmax(0, 1fr);
  margin: 0 auto;
  padding: clamp(50px, 8vw, 110px) clamp(20px, 5vw, 72px);
  gap: clamp(34px, 7vw, 100px);
}

.privacy-index {
  position: sticky;
  top: 110px;
  align-self: start;
  border: var(--border);
  background: var(--lime);
  box-shadow: var(--shadow);
}

.privacy-index strong,
.privacy-index a {
  display: block;
  padding: 13px 16px;
  border-bottom: 2px solid var(--ink);
}

.privacy-index a:last-child {
  border-bottom: 0;
}

.privacy-content section {
  margin-bottom: 30px;
  padding: clamp(24px, 4vw, 44px);
  border: var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-content section:nth-child(3n + 2) {
  background: var(--lime);
}

.privacy-content section:nth-child(3n) {
  background: var(--coral);
}

.privacy-content .index {
  margin-bottom: 22px;
}

.privacy-content h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 60px);
}

.privacy-content p {
  max-width: 850px;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    border-right: 0;
    border-bottom: var(--border);
  }

  .hero__facts {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .hero__facts div {
    min-height: 250px;
    border-right: var(--border);
    border-bottom: 0;
  }

  .hero__facts div:last-child {
    border-right: 0;
  }

  .section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card:nth-child(5) {
    grid-column: 2 / span 4;
  }

  .about {
    grid-template-columns: .8fr 1.2fr;
  }

  .about__panel {
    min-height: 680px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid figure:last-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer__details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 12px;
    padding: 8px 16px;
  }

  .brand {
    font-size: 17px;
  }

  .brand svg {
    width: 42px;
    height: 42px;
  }

  .site-header > .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav:not(.main-nav--simple) {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 72px);
    align-content: start;
    justify-content: stretch;
    padding: 24px;
    border-bottom: var(--border);
    background: var(--lime);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav:not(.main-nav--simple) a {
    padding: 18px 0;
    border-bottom: var(--border);
    font-size: 30px;
  }

  .main-nav--simple {
    display: none;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 100px);
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    min-height: 190px;
    border-right: 0;
    border-bottom: var(--border);
  }

  .section-heading,
  .section-heading--wide {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    margin-bottom: 24px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    min-height: 400px;
    grid-column: auto;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__panel {
    min-height: 540px;
    border-right: 0;
    border-bottom: var(--border);
  }

  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid figure:last-child {
    min-height: 390px;
    grid-column: auto;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-index {
    position: static;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .ticker__track {
    gap: 18px;
    font-size: 13px;
  }

  .hero__copy {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 250px;
  }

  .about__panel {
    min-height: 410px;
  }

  .about__copy {
    padding-right: 22px;
    padding-left: 22px;
  }

  .about__rule {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__details,
  .footer--compact .footer__details {
    grid-template-columns: 1fr;
  }

  .privacy-content section {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker__track {
    animation: none;
  }

  .button,
  .main-nav a::after {
    transition: none;
  }
}
