:root {
  --paper: #f2efe8;
  --ink: #20201f;
  --muted: #67645f;
  --line: #bcb6ab;
  --red: #ed0016;
  --white: #fffefb;
  --green: #24734b;
  --shadow: 7px 7px 0 var(--ink);
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(237, 0, 22, .08), transparent 24rem),
    linear-gradient(115deg, transparent 0 65%, rgba(32, 32, 31, .035) 65% 66%, transparent 66% 100%),
    var(--paper);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .45;
  pointer-events: none;
  background-image: radial-gradient(rgba(32, 32, 31, .18) .55px, transparent .55px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.brand img {
  display: block;
  width: 126px;
  height: auto;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--ink);
  background: rgba(255, 254, 251, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 115, 75, .14);
}

.hero {
  position: relative;
  padding: clamp(58px, 8vw, 108px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
}

.hero > * {
  animation: rise-in .55s both;
}

.hero > :nth-child(2) { animation-delay: .06s; }
.hero > :nth-child(3) { animation-delay: .12s; }
.hero > :nth-child(4) { animation-delay: .18s; }

.eyebrow {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 116px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .87;
}

.intro {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.hero-mark {
  position: absolute;
  right: 1%;
  bottom: 62px;
  width: clamp(170px, 24vw, 300px);
  height: 74px;
  transform: rotate(-7deg);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 64%);
  background: var(--red);
}

.hero-mark span {
  position: absolute;
  top: 15px;
  left: 27px;
  transform: rotate(7deg);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .32em;
}

.service-section {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: 15px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  min-height: 138px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 254, 251, .9);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  animation: rise-in .45s both;
}

.service-card:nth-child(2) { animation-delay: .05s; }
.service-card:nth-child(3) { animation-delay: .1s; }
.service-card:nth-child(4) { animation-delay: .15s; }
.service-card:nth-child(5) { animation-delay: .2s; }
.service-card:nth-child(6) { animation-delay: .25s; }

.service-card:hover,
.service-card:focus-visible {
  z-index: 2;
  outline: none;
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.card-primary {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

.card-primary:hover,
.card-primary:focus-visible {
  background: #d90014;
  box-shadow: 7px 7px 0 #81000c;
}

.card-dark {
  color: white;
  background: var(--ink);
}

.card-dark:hover,
.card-dark:focus-visible { background: #080808; }

.card-index {
  align-self: start;
  min-width: 31px;
  font: 700 11px/1 "Courier New", monospace;
  opacity: .58;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-right: 20px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.card-copy small {
  max-width: 330px;
  opacity: .68;
  font-size: 13px;
  line-height: 1.4;
}

.arrow {
  margin-left: 18px;
  font-size: 25px;
  transition: transform .18s ease;
}

.service-card:hover .arrow,
.service-card:focus-visible .arrow { transform: translate(3px, -3px); }

.card-status::after {
  position: absolute;
  right: -12px;
  bottom: -14px;
  width: 80px;
  height: 80px;
  border: 13px solid rgba(36, 115, 75, .14);
  border-radius: 50%;
  content: "";
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

footer a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 4px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    translate: 0 14px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 620px); padding-top: 18px; }
  .brand img { width: 105px; }
  .availability { padding: 8px 10px; font-size: 10px; }
  .hero { padding-top: 52px; }
  .hero-mark { right: -46px; bottom: 28px; opacity: .9; }
  .intro { max-width: 86%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 124px; padding: 19px 17px; }
  .icon { width: 45px; height: 45px; margin-right: 14px; }
  .card-copy strong { font-size: 24px; }
  .section-heading p { display: none; }
}

@media (max-width: 430px) {
  h1 { font-size: 52px; }
  .hero-mark { display: none; }
  .intro { max-width: 100%; }
  .service-card { grid-template-columns: auto 1fr auto; }
  .card-index { display: none; }
  .card-copy small { font-size: 12px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
