.appleton-static-site {
  --paper: #f4f0e8;
  --surface: #fffdf8;
  --ink: #202321;
  --muted: #656761;
  --line: #d8d1c4;
  --accent: #bd5b2a;
  --state-success: #41694e;
  --state-error: #9f3f2c;
  --shadow: 0 22px 55px var(--line);
  --shadow: 0 22px 55px color-mix(in srgb, var(--ink) 13%, transparent);
  --radius: 18px;
  --max-width: 1400px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

.appleton-static-site, .appleton-static-site *,
.appleton-static-site::before, .appleton-static-site *::before,
.appleton-static-site::after, .appleton-static-site *::after {
  box-sizing: border-box;
}

.appleton-static-site {
  scroll-behavior: smooth;
}

.appleton-static-site {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, Avenir, "Avenir Next", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.appleton-static-site img,
.appleton-static-site svg {
  display: block;
  max-width: 100%;
}

.appleton-static-site a {
  color: var(--ink);
  text-decoration-color: var(--accent);
  text-decoration-thickness: .09em;
  text-underline-offset: .18em;
}

.appleton-static-site a:hover {
  color: var(--ink);
}

.appleton-static-site button,
.appleton-static-site input {
  font: inherit;
}

.appleton-static-site button,
.appleton-static-site .button {
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--surface);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.appleton-static-site button:hover,
.appleton-static-site .button:hover {
  background: var(--ink);
  color: var(--surface);
  opacity: .88;
}

.appleton-static-site button:active,
.appleton-static-site .button:active {
  transform: translateY(1px) scale(.98);
}

.appleton-static-site a:focus-visible,
.appleton-static-site button:focus-visible,
.appleton-static-site input:focus-visible,
.appleton-static-site summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.appleton-static-site [hidden] {
  display: none !important;
}

.appleton-static-site .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;
}

.appleton-static-site .skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}

.appleton-static-site .skip-link:focus {
  color: var(--surface);
  transform: translateY(0);
}

.appleton-static-site .site-header,
.appleton-static-site .section,
.appleton-static-site .site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.appleton-static-site .site-header {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.appleton-static-site .brand {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.025em;
  text-decoration: none;
}

.appleton-static-site .site-header nav ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.appleton-static-site .site-header nav a {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.appleton-static-site .site-header nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.appleton-static-site .nav-toggle {
  justify-self: end;
  min-height: 44px;
  padding: 9px 14px;
}

.appleton-static-site .phone-link {
  justify-self: end;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--accent);
}

.appleton-static-site .hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(350px, .82fr);
  min-height: 670px;
  margin: 0 0 96px;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: var(--surface);
}

.appleton-static-site .hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -32px;
  width: 34%;
  height: 32px;
  background: var(--accent);
}

.appleton-static-site .hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 24px 48px;
  padding: 88px 70px 82px 0;
}

.appleton-static-site .hero h1 {
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.2rem, 6.1vw, 6.7rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .88;
}

.appleton-static-site .hero .button {
  z-index: 1;
  grid-row: 2;
  justify-self: start;
  padding: 16px 24px;
}

.appleton-static-site .hero__figure {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  width: 115%;
  margin: 0 0 58px -18%;
  color: var(--surface);
  opacity: .84;
  transform: rotate(-2deg);
}

.appleton-static-site .hero__figure svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(16px 18px 0 var(--accent));
  filter: drop-shadow(16px 18px 0 color-mix(in srgb, var(--accent) 24%, transparent));
}

.appleton-static-site .quote-card {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 460px);
  margin-left: -42px;
  padding: 38px;
  border-top: 7px solid var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.appleton-static-site .quote-card h2 {
  max-width: 310px;
  margin: 0 0 24px;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.appleton-static-site .quote-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.appleton-static-site .quote-card label {
  align-self: end;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.appleton-static-site .quote-card label:nth-of-type(-n/**/+3),
.appleton-static-site .quote-card input[required],
.appleton-static-site .form-privacy-note,
.appleton-static-site .quote-card button,
.appleton-static-site #form-status {
  grid-column: 1 / -1;
}

.appleton-static-site .form-privacy-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.appleton-static-site .quote-card input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  color: var(--ink);
}

.appleton-static-site .quote-card input:focus {
  border-color: var(--accent);
}

.appleton-static-site .quote-card input[aria-invalid="true"],
.appleton-static-site .quote-card .is-error {
  border-color: var(--state-error);
}

.appleton-static-site .quote-card button {
  margin-top: 12px;
  padding: 14px 20px;
}

.appleton-static-site .quote-card form[aria-busy="true"] button,
.appleton-static-site .quote-card button:disabled {
  cursor: wait;
  opacity: .68;
}

.appleton-static-site #form-status {
  min-height: 1.4em;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.appleton-static-site #form-status.is-success,
.appleton-static-site #form-status[data-state="success"] {
  color: var(--state-success);
}

.appleton-static-site #form-status.is-error,
.appleton-static-site #form-status[data-state="error"] {
  color: var(--state-error);
}

.appleton-static-site .section {
  padding-block: clamp(70px, 9vw, 128px);
}

.appleton-static-site .section h2 {
  max-width: 850px;
  margin: 0 0 44px;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
}

.appleton-static-site .section h3 {
  font-size: 1.35rem;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.appleton-static-site .section p {
  max-width: 68ch;
  color: var(--muted);
}

.appleton-static-site .intro {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.appleton-static-site .section-figure {
  position: relative;
  margin: 0;
  color: var(--accent);
}

.appleton-static-site .section-figure::before {
  content: "";
  position: absolute;
  inset: 12% -10% -10% 14%;
  z-index: -1;
  border: 1px solid var(--line);
}

.appleton-static-site .section-figure svg {
  width: 100%;
  height: auto;
  transform: rotate(1.5deg);
}

.appleton-static-site .intro h2 {
  margin-bottom: 32px;
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
}

.appleton-static-site .intro .button,
.appleton-static-site .benefits > .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 24px;
}

.appleton-static-site .vehicles {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max-width)) / 2));
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.appleton-static-site .vehicles h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.appleton-static-site .vehicle-grid {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-color: var(--accent) var(--paper);
}

.appleton-static-site .vehicle-grid li {
  position: relative;
  flex: 0 0 clamp(180px, 18vw, 260px);
  min-height: 118px;
  padding: 28px 22px 22px;
  border-left: 1px solid var(--line);
  font-size: 1.18rem;
  font-weight: 850;
}

.appleton-static-site .vehicle-grid li::before {
  content: counter(list-item, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.appleton-static-site .vehicle-grid li:last-child {
  border-right: 1px solid var(--line);
}

.appleton-static-site .benefits {
  position: relative;
}

.appleton-static-site .benefits > h2 {
  width: 38%;
}

.appleton-static-site .benefit-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 0 8%;
  counter-reset: benefit;
}

.appleton-static-site .benefit-grid article {
  position: relative;
  padding: 38px 0 42px 58px;
  border-top: 1px solid var(--line);
  counter-increment: benefit;
}

.appleton-static-site .benefit-grid article::before {
  content: counter(benefit, decimal-leading-zero);
  position: absolute;
  top: 41px;
  left: 0;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.appleton-static-site .benefit-grid article:nth-child(2) {
  margin-top: -92px;
}

.appleton-static-site .benefit-grid article:nth-child(3),
.appleton-static-site .benefit-grid article:nth-child(6) {
  margin-left: 11%;
}

.appleton-static-site .benefit-grid article:nth-child(5) {
  margin-right: 8%;
}

.appleton-static-site .benefit-grid h3,
.appleton-static-site .benefit-grid p {
  margin-top: 0;
}

.appleton-static-site .process {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: var(--surface);
}

.appleton-static-site .process h2 {
  max-width: 630px;
}

.appleton-static-site .process-list {
  display: grid;
  grid-template-columns: 1.15fr 1fr .85fr;
  margin: 70px 0 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.appleton-static-site .process-list li {
  position: relative;
  min-height: 300px;
  padding: 126px 42px 30px 0;
  border-top: 2px solid var(--accent);
  counter-increment: process;
}

.appleton-static-site .process-list li + li {
  padding-left: 42px;
  border-left: 1px solid var(--muted);
  border-left: 1px solid color-mix(in srgb, var(--surface) 22%, transparent);
}

.appleton-static-site .process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--surface);
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: 1;
}

.appleton-static-site .process-list li + li::before {
  left: 42px;
}

.appleton-static-site .process-list h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.appleton-static-site .process-list p {
  margin: 0;
  color: var(--surface);
  color: color-mix(in srgb, var(--surface) 76%, transparent);
}

.appleton-static-site .testimonials h2 {
  margin-left: 18%;
}

.appleton-static-site .testimonial-track {
  display: grid;
  grid-template-columns: 1.08fr .92fr 1fr;
  border-block: 1px solid var(--line);
}

.appleton-static-site .testimonial {
  padding: 40px clamp(24px, 3vw, 48px);
}

.appleton-static-site .testimonial + .testimonial {
  border-left: 1px solid var(--line);
}

.appleton-static-site .testimonial:nth-child(2) {
  background: var(--surface);
  transform: translateY(28px);
}

.appleton-static-site .testimonial h3 {
  margin: 0 0 20px;
}

.appleton-static-site .testimonial p {
  font-size: .97rem;
}

.appleton-static-site .testimonial .rating {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: .16em;
}

.appleton-static-site .testimonial footer {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  color: var(--muted);
  font-size: .85rem;
}

.appleton-static-site .testimonial footer strong {
  color: var(--ink);
}

.appleton-static-site .testimonial-controls {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 50px;
}

.appleton-static-site .testimonial-controls:not([hidden]) {
  display: flex;
}

.appleton-static-site .testimonial-controls button {
  min-width: 112px;
  padding: 10px 16px;
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.appleton-static-site .testimonial-controls button:hover {
  background: var(--ink);
  color: var(--surface);
}

.appleton-static-site .faq {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 9vw, 140px);
}

.appleton-static-site .faq h2 {
  position: sticky;
  top: 28px;
  align-self: start;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
}

.appleton-static-site .faq-list {
  border-top: 1px solid var(--line);
}

.appleton-static-site .faq details {
  border-bottom: 1px solid var(--line);
}

.appleton-static-site .faq summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.appleton-static-site .faq summary::-webkit-details-marker {
  display: none;
}

.appleton-static-site .faq summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform .25s var(--ease);
}

.appleton-static-site .faq details[open] summary::after {
  transform: rotate(45deg);
}

.appleton-static-site .faq details p {
  margin: 0;
  padding: 0 54px 28px 0;
}

.appleton-static-site .site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 42px;
  align-items: center;
  padding-block: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.appleton-static-site .site-footer p {
  margin: 0;
}

.appleton-static-site .site-footer__address {
  margin: 0;
  font-style: normal;
}

.appleton-static-site .site-footer a {
  font-weight: 750;
}

.appleton-static-site .policy-page { padding: clamp(64px, 9vw, 132px) 24px; }
.appleton-static-site .policy-content { width: min(100%, 860px); margin-inline: auto; }
.appleton-static-site .policy-header { margin-bottom: clamp(54px, 8vw, 90px); padding-bottom: 34px; border-bottom: 7px solid var(--accent); }
.appleton-static-site .policy-kicker { margin: 0 0 12px; color: var(--muted); font-size: .8rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.appleton-static-site .policy-header h1 { margin: 0; font-size: clamp(3.1rem, 8vw, 6.4rem); letter-spacing: -.065em; line-height: .9; }
.appleton-static-site .current-site-notice { margin-bottom: 34px; padding: 24px; border: 1px solid var(--accent); border-left-width: 7px; background: var(--surface); }
.appleton-static-site .current-site-notice h2 { margin: 0 0 10px; font-size: 1.35rem; line-height: 1.15; }
.appleton-static-site .current-site-notice p { margin: 0; color: var(--muted); }
.appleton-static-site .policy-content section { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 10px 54px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.appleton-static-site .policy-content section h2 { grid-row: 1 / span 8; margin: 0; font-size: clamp(1.45rem, 3vw, 2.15rem); letter-spacing: -.035em; line-height: 1.05; }
.appleton-static-site .policy-content section p { margin: 0; }
.appleton-static-site .policy-content section p + p { margin-top: 14px; }

@media (max-width: 1050px) {
  .appleton-static-site .site-header {
    grid-template-columns: 1fr auto;
  }

  html:not(.js) .appleton-static-site .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    padding-block: 14px;
  }

  html:not(.js) .appleton-static-site .site-header nav {
    order: 3;
    width: 100%;
  }

  html.js .appleton-static-site .site-header {
    position: relative;
  }

  html.js .appleton-static-site .site-header .nav-toggle:not([hidden]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  html.js .appleton-static-site .site-header nav[hidden] {
    display: none;
  }

  html.js .appleton-static-site .site-header nav:not([hidden]) {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 12;
    display: block;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  html.js .appleton-static-site .site-header nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .appleton-static-site .hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  }

  .appleton-static-site .hero__content {
    grid-template-columns: 1fr;
  }

  .appleton-static-site .hero__figure {
    position: absolute;
    right: 3%;
    bottom: 8%;
    width: 48%;
    margin: 0;
    opacity: .55;
  }

  .appleton-static-site .benefit-grid article:nth-child(3),
.appleton-static-site .benefit-grid article:nth-child(6) {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .appleton-static-site .policy-page { padding: 48px 16px 72px; }
  .appleton-static-site .policy-content section { display: block; padding: 30px 0; }
  .appleton-static-site .policy-content section h2 { margin-bottom: 18px; }

  .appleton-static-site {
    scroll-padding-bottom: 72px;
  }

  .appleton-static-site {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  .appleton-static-site .site-header,
.appleton-static-site .section,
.appleton-static-site .site-footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .appleton-static-site .site-header {
    display: flex;
    min-height: 66px;
  }

  .appleton-static-site .brand {
    font-size: 1.05rem;
  }

  .appleton-static-site .site-header .phone-link {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(56px + env(safe-area-inset-bottom));
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--ink);
    box-shadow: 0 -6px 20px var(--line);
    box-shadow: 0 -6px 20px color-mix(in srgb, var(--ink) 16%, transparent);
    color: var(--surface);
    font-size: 1.02rem;
    text-decoration: none;
  }

  .appleton-static-site .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 42px;
    padding: 0 16px 48px;
  }

  .appleton-static-site .hero::after {
    right: 16px;
    bottom: -14px;
    width: 42%;
    height: 14px;
  }

  .appleton-static-site .hero__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 58px 0 32px;
  }

  .appleton-static-site .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 14vw, 4.35rem);
    line-height: .92;
  }

  .appleton-static-site .hero .button,
.appleton-static-site .intro .button,
.appleton-static-site .benefits > .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .appleton-static-site .hero__figure {
    position: static;
    order: 2;
    width: 100%;
    margin: -10px 0 0;
    opacity: .72;
    transform: none;
  }

  .appleton-static-site .quote-card {
    align-self: stretch;
    width: 100%;
    margin: 0;
    padding: 28px 20px;
  }

  .appleton-static-site .quote-card form {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .appleton-static-site .quote-card label:not(:first-of-type) {
    margin-top: 6px;
  }

  .appleton-static-site .quote-card input,
.appleton-static-site .quote-card button {
    width: 100%;
  }

  .appleton-static-site .section {
    padding-block: 72px;
  }

  .appleton-static-site .section h2 {
    margin-bottom: 32px;
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .appleton-static-site .intro,
.appleton-static-site .faq {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .appleton-static-site .section-figure {
    width: 100%;
  }

  .appleton-static-site .section-figure::before {
    inset: 9% 0 -5% 10%;
  }

  .appleton-static-site .vehicles,
.appleton-static-site .process {
    width: 100%;
    padding-inline: 16px;
  }

  .appleton-static-site .vehicle-grid {
    margin-right: -16px;
    padding-right: 16px;
  }

  .appleton-static-site .vehicle-grid li {
    flex-basis: 72vw;
  }

  .appleton-static-site .benefits > h2 {
    width: 100%;
  }

  .appleton-static-site .benefit-grid,
.appleton-static-site .process-list,
.appleton-static-site .testimonial-track {
    display: flex;
    flex-direction: column;
  }

  .appleton-static-site .benefit-grid article,
.appleton-static-site .benefit-grid article:nth-child(2),
.appleton-static-site .benefit-grid article:nth-child(3),
.appleton-static-site .benefit-grid article:nth-child(5),
.appleton-static-site .benefit-grid article:nth-child(6) {
    margin: 0;
    padding: 30px 0 34px 46px;
  }

  .appleton-static-site .benefit-grid article::before {
    top: 33px;
  }

  .appleton-static-site .process-list {
    margin-top: 40px;
  }

  .appleton-static-site .process-list li,
.appleton-static-site .process-list li + li {
    min-height: 0;
    padding: 96px 0 38px;
    border-left: 0;
  }

  .appleton-static-site .process-list li::before,
.appleton-static-site .process-list li + li::before {
    top: 14px;
    left: 0;
    font-size: 3.8rem;
  }

  .appleton-static-site .testimonials h2 {
    margin-left: 0;
  }

  .appleton-static-site .testimonial {
    padding: 30px 0;
  }

  .appleton-static-site .testimonial + .testimonial {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .appleton-static-site .testimonial:nth-child(2) {
    padding-inline: 18px;
    transform: none;
  }

  .appleton-static-site .testimonial-controls:not([hidden]) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .appleton-static-site .testimonial-controls button {
    width: 100%;
  }

  .appleton-static-site .faq h2 {
    position: static;
  }

  .appleton-static-site .faq summary {
    padding-block: 22px;
  }

  .appleton-static-site .faq details p {
    padding-right: 0;
  }

  .appleton-static-site .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-block: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .appleton-static-site {
    scroll-behavior: auto;
  }

  .appleton-static-site, .appleton-static-site *,
.appleton-static-site::before, .appleton-static-site *::before,
.appleton-static-site::after, .appleton-static-site *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Simple supporting pages */
.appleton-static-site .simple-page {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.appleton-static-site .simple-page__header {
  max-width: 780px;
  padding-bottom: clamp(32px, 5vw, 56px);
  border-bottom: 7px solid var(--accent);
}

.appleton-static-site .simple-page__header h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.appleton-static-site .simple-page__header p,
.appleton-static-site .simple-page__content p {
  color: var(--muted);
  max-width: 65ch;
}

.appleton-static-site .simple-page__content {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: 28px 64px;
  padding-top: clamp(44px, 7vw, 82px);
}

.appleton-static-site .simple-page__content article,
.appleton-static-site .simple-page__content section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.appleton-static-site .simple-page__content h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1;
}

.appleton-static-site .simple-page__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.appleton-static-site .simple-page__list li {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
}

.appleton-static-site .simple-page__cta {
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.appleton-static-site .site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.appleton-static-site .hero__figure,
.appleton-static-site .section-figure {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.appleton-static-site .hero__figure {
  width: 100%;
  margin: 0;
  opacity: 1;
  transform: none;
}

.appleton-static-site .section-figure {
  transform: none;
}

.appleton-static-site .hero__figure img,
.appleton-static-site .section-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appleton-static-site .location {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.appleton-static-site .location address {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: normal;
}

.appleton-static-site .location__map {
  width: 100%;
  min-height: 440px;
  border: 1px solid var(--line);
}

@media (max-width: 767px) {
  .appleton-static-site .simple-page { padding: 56px 0 92px; }
  .appleton-static-site .simple-page__content { grid-template-columns: 1fr; gap: 8px; }
  .appleton-static-site .simple-page__list { grid-template-columns: 1fr; }
  .appleton-static-site .location { grid-template-columns: 1fr; }
  .appleton-static-site .location__map { min-height: 340px; }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .appleton-static-site .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 18px;
  }

  .appleton-static-site .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .appleton-static-site .site-header .phone-link {
    grid-column: 2;
    grid-row: 1;
  }

  .appleton-static-site .site-header .nav-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  html:not(.js) .appleton-static-site .site-header .brand {
    flex: 1 1 260px;
  }

  .appleton-static-site .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    padding-left: 24px;
    overflow: hidden;
  }

  .appleton-static-site .hero__content {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    padding-right: 34px;
  }

  .appleton-static-site .hero__figure {
    position: absolute;
    right: 3%;
    bottom: 8%;
    grid-column: 1;
    grid-row: 1;
    width: 48%;
    margin: 0;
    opacity: .55;
  }

  .appleton-static-site .quote-card {
    width: min(100%, 420px);
    margin-left: -24px;
  }
}
