:root {
  --ground: #E8E0D2;
  --text: #073F43;
  --muted: #5B6F6B;
  --line: #A99D8B;
  --accent: #B65A2A;
  --paper: #eee8dd;
  --measure: 72ch;
  --edge: clamp(1rem, 3.8vw, 4rem);
  --serif: Georgia, Cambria, "Times New Roman", Times, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: var(--text);
  background: var(--ground);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
  text-underline-offset: .18em;
  text-decoration-thickness: .06em;
}

p,
li,
dd,
dt,
td,
th,
h1,
h2,
h3 {
  min-width: 0;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  max-width: var(--measure);
  font-size: clamp(1rem, .96rem + .22vw, 1.13rem);
}

p + p {
  margin-top: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 1.18rem + 3.25vw, 4.25rem);
  max-width: 12.5ch;
}

h3 {
  font-size: clamp(1.25rem, 1.06rem + .75vw, 1.8rem);
  letter-spacing: -.02em;
}

strong {
  font-weight: 600;
}

.sh-shell {
  width: min(100% - (var(--edge) * 2), 1180px);
  margin-inline: auto;
}

.sh-skip {
  position: absolute;
  left: var(--edge);
  top: .7rem;
  z-index: 20;
  padding: .55rem .8rem;
  background: var(--ground);
  border: 1px solid var(--text);
  transform: translateY(-160%);
}

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

.sh-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.1rem, 2vw, 2rem) 0 clamp(2.6rem, 7vw, 7rem);
}

.sh-brand a {
  display: inline-grid;
  line-height: .86;
  font-size: clamp(1.45rem, 1.1rem + 1.3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.055em;
  text-decoration: none;
}

.sh-brand span + span {
  padding-left: .55em;
}

.sh-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem clamp(.8rem, 2vw, 1.55rem);
  padding-top: .1rem;
  max-width: 34rem;
}

.sh-nav a,
.sh-footer nav a {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color .22s ease, transform .22s ease;
}

.sh-nav a:hover,
.sh-nav a:focus-visible,
.sh-nav a[aria-current="page"],
.sh-footer nav a:hover,
.sh-footer nav a:focus-visible {
  color: var(--accent);
  transform: translateX(.22rem);
}

.sh-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: min(760px, calc(100svh - 8rem));
  padding-bottom: clamp(4rem, 10vw, 9rem);
  border-bottom: 1px solid var(--line);
}

.sh-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.sh-kicker {
  margin-bottom: .9rem;
  max-width: none;
  color: var(--accent);
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sh-display {
  max-width: 10.5ch;
  margin-inline: auto;
  font-size: clamp(3.25rem, 1.26rem + 9.4vw, 9.6rem);
  font-weight: 600;
  letter-spacing: -.07em;
}

.sh-wipe {
  overflow: hidden;
}

.sh-wipe span {
  display: inline-block;
}

.sh-ready .sh-wipe span {
  animation: sh-wipe 1.05s cubic-bezier(.2, .78, .18, 1) both;
}

.sh-lede {
  margin: clamp(1.1rem, 2.2vw, 2rem) auto 0;
  max-width: 66ch;
  color: var(--text);
  font-size: clamp(1.2rem, .94rem + 1.1vw, 2rem);
  line-height: 1.34;
}

.sh-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .72rem;
  margin-top: clamp(1.45rem, 2.2vw, 2.2rem);
}

.sh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: .78rem 1rem .72rem;
  border: 1px solid var(--accent);
  color: var(--ground);
  background: var(--accent);
  font-size: .78rem;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .22s ease, border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.sh-button:hover,
.sh-button:focus-visible {
  transform: translateX(.18rem);
  color: #fff7ee;
  border-color: var(--text);
  background: var(--text);
}

.sh-button--plain {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.sh-button--plain:hover,
.sh-button--plain:focus-visible {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
}

.sh-hero__drawing {
  position: absolute;
  inset: 7rem 50%;
  z-index: 1;
  width: min(1180px, 100%);
  transform: translateX(-50%);
  opacity: .58;
  pointer-events: none;
}

.sh-drawing {
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
}

.sh-drawing__inner {
  transform-origin: 45% 45%;
  animation: sh-kenburns 22s ease-in-out infinite alternate;
}

.sh-drawing svg,
.sh-small-drawing svg,
.sh-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.svg-lens {
  fill: rgba(232, 224, 210, .36);
  stroke: var(--text);
  stroke-width: 3;
}

.svg-insert {
  fill: none;
  stroke: var(--text);
  stroke-width: 2;
  stroke-dasharray: 12 9;
}

.svg-line {
  fill: none;
  stroke: var(--text);
  stroke-width: 2;
}

.svg-line.pale {
  stroke: var(--muted);
  opacity: .62;
}

.svg-accent {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
}

.svg-dot {
  fill: var(--accent);
}

.svg-ticks path {
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
}

.svg-label {
  fill: var(--muted);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 22px;
  letter-spacing: .16em;
}

.svg-label.muted {
  opacity: .72;
}

.sh-rail {
  border-bottom: 1px solid var(--line);
}

.sh-marquee {
  overflow: hidden;
  padding: .8rem 0;
}

.sh-marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: sh-marquee 24s linear infinite;
}

.sh-marquee__track span {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sh-spec,
.sh-long,
.sh-ordering,
.sh-check,
.sh-tableblock,
.sh-process,
.sh-sitebox,
.sh-note-panel,
.sh-service,
.sh-ordergrid {
  padding: clamp(4rem, 9vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
}

.sh-spec__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.sh-spec h2 + p,
.sh-sitebox h2 + p,
.sh-note-panel h2 + p,
.sh-ordergrid h2 + p,
.sh-service h2 + p {
  margin-top: 1.2rem;
}

.sh-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.sh-facts div {
  display: grid;
  grid-template-columns: minmax(8rem, .42fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.sh-facts dt {
  color: var(--text);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sh-facts dd {
  margin: 0;
  color: var(--muted);
}

.sh-quote {
  padding: clamp(4.6rem, 9vw, 8.4rem) 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.sh-quote blockquote {
  margin: 0;
}

.sh-quote p {
  margin-inline: auto;
  max-width: 900px;
  font-size: clamp(2rem, 1.05rem + 4vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.sh-routes,
.sh-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.sh-panel,
.sh-price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.4rem;
  min-width: 0;
  padding: clamp(1.25rem, 2.6vw, 2.2rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sh-panel + .sh-panel,
.sh-price + .sh-price {
  border-left: 1px solid var(--line);
}

.sh-panel h2,
.sh-price h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.8rem, 1.2rem + 2.3vw, 3.5rem);
}

.sh-textlink {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .22s ease, transform .22s ease;
}

.sh-textlink::before {
  content: "→";
  margin-right: .45rem;
  color: var(--accent);
  transition: transform .22s ease, color .22s ease;
}

.sh-textlink:hover,
.sh-textlink:focus-visible {
  color: var(--text);
  transform: translateX(.22rem);
}

.sh-textlink:hover::before,
.sh-textlink:focus-visible::before {
  color: var(--text);
  transform: translateX(.12rem);
}

.sh-long h2 {
  margin-bottom: clamp(1.7rem, 3vw, 3rem);
}

.sh-long__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .88fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.sh-ordering {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.sh-ordering > p,
.sh-ordering .sh-actions {
  grid-column: 2;
}

.sh-list {
  counter-reset: item;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.sh-list li {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.sh-list li::before {
  content: "";
  width: .44rem;
  height: .44rem;
  margin-top: .62rem;
  border-radius: 50%;
  background: var(--accent);
  transition: transform .22s ease, background-color .22s ease;
}

.sh-list--numbered li {
  counter-increment: item;
}

.sh-list--numbered li::before {
  content: counter(item, decimal-leading-zero);
  width: auto;
  height: auto;
  margin-top: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .1em;
}

.sh-list li span {
  display: block;
  transition: color .22s ease, transform .22s ease;
}

.sh-list li:hover span {
  color: var(--text);
  transform: translateX(.22rem);
}

.sh-list li:hover::before {
  transform: translateX(.18rem);
  background: var(--text);
}

.sh-list--numbered li:hover::before {
  background: transparent;
  color: var(--text);
}

.sh-note {
  margin-top: 1.2rem;
  color: var(--muted);
}

.sh-pagehead {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .68fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  border-bottom: 1px solid var(--line);
}

.sh-pagehead .sh-display {
  margin-inline: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 1.36rem + 7.4vw, 8rem);
}

.sh-pagehead .sh-lede {
  margin-inline: 0;
}

.sh-small-drawing {
  align-self: stretch;
  display: grid;
  place-items: center;
}

.sh-price__foot {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.sh-price__foot p {
  color: var(--muted);
}

.sh-price__foot strong {
  color: var(--text);
  font-size: 1.25rem;
}

.sh-tableblock h2,
.sh-check h2,
.sh-process h2,
.sh-sitebox h2,
.sh-note-panel h2,
.sh-service h2,
.sh-ordergrid h2 {
  max-width: 14ch;
  margin-bottom: clamp(1.7rem, 3vw, 3rem);
}

.sh-tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 1.05rem 1rem 1.05rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td:first-child {
  color: var(--text);
}

.sh-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.sh-steps li {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.2rem, 2.4vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
}

.sh-steps li > span {
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .16em;
}

.sh-steps p {
  margin-top: .55rem;
  color: var(--muted);
}

.sh-sitebox {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.sh-sitebox .sh-kicker,
.sh-sitebox h2,
.sh-sitebox > p {
  grid-column: 1;
}

.sh-sitebox .sh-list {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.sh-contact-card {
  padding: clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
}

.sh-contact-card p:not(.sh-kicker) {
  font-size: clamp(1.35rem, 1.02rem + 1.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.sh-contact-card p + p {
  margin-top: 1.1rem;
}

.sh-ordergrid,
.sh-service {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.sh-map {
  border: 1px solid var(--line);
}

.svg-map-radius {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 1069;
  stroke-dashoffset: 0;
  opacity: .9;
}

.sh-ready .sh-map.sh-in .svg-map-radius {
  animation: sh-radius 1.4s cubic-bezier(.2, .78, .18, 1) both;
}

.sh-note-panel {
  max-width: none;
}

.sh-note-panel p:not(.sh-kicker) {
  max-width: 900px;
  font-size: clamp(1.55rem, 1.02rem + 2.1vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.sh-footer {
  padding: clamp(3rem, 7vw, 7rem) 0 1.4rem;
  color: var(--muted);
}

.sh-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.sh-footer__brand {
  margin-bottom: .45rem;
  color: var(--text);
  font-size: clamp(1.6rem, 1.22rem + 1.55vw, 3rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.sh-footer nav {
  display: grid;
  justify-items: end;
  gap: .65rem;
}

.sh-footer__bottom {
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
}

[data-reveal] {
  transition: opacity .65s ease, transform .65s ease;
}

.sh-is-hidden {
  opacity: 1;
  transform: translateY(1.25rem);
}

.sh-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sh-wipe {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateY(.18em);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes sh-kenburns {
  0% {
    transform: scale(1.02) translate(-1.2%, -1%);
  }
  100% {
    transform: scale(1.09) translate(1.6%, 1.3%);
  }
}

@keyframes sh-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-48%);
  }
}

@keyframes sh-radius {
  0% {
    stroke-dashoffset: 1069;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 900px) {
  .sh-top,
  .sh-pagehead,
  .sh-spec__grid,
  .sh-long__columns,
  .sh-ordering,
  .sh-sitebox,
  .sh-ordergrid,
  .sh-service,
  .sh-footer__grid {
    grid-template-columns: 1fr;
  }

  .sh-top {
    display: grid;
    gap: 1.4rem;
  }

  .sh-nav {
    justify-content: flex-start;
  }

  .sh-hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .sh-hero__drawing {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 2rem;
    transform: none;
    opacity: 1;
  }

  .sh-routes,
  .sh-cards {
    grid-template-columns: 1fr;
  }

  .sh-panel + .sh-panel,
  .sh-price + .sh-price {
    border-left: 0;
    border-top: 0;
  }

  .sh-ordering > p,
  .sh-ordering .sh-actions,
  .sh-sitebox .sh-kicker,
  .sh-sitebox h2,
  .sh-sitebox > p,
  .sh-sitebox .sh-list {
    grid-column: auto;
    grid-row: auto;
  }

  .sh-footer nav {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  :root {
    --edge: 1rem;
  }

  .sh-top {
    padding-bottom: 3.2rem;
  }

  .sh-display {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .sh-pagehead .sh-display {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .sh-hero__copy {
    text-align: left;
  }

  .sh-display,
  .sh-lede {
    margin-inline: 0;
  }

  .sh-actions {
    justify-content: flex-start;
  }

  .sh-facts div {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .sh-steps li {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .sh-contact-card p:not(.sh-kicker) {
    font-size: 1.55rem;
  }
}

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

  .sh-is-hidden {
    opacity: 1;
    transform: none;
  }

  .sh-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}