:root {
  --bone: #f4ebdd;
  --bone-light: #fbf7ef;
  --mulberry: #501c2d;
  --mulberry-dark: #32101b;
  --ink: #171514;
  --gold: #d99a2b;
  --gold-light: #f3c96b;
  --glass: #a9d4df;
  --muted: #6f6661;
  --line: #cfc2b1;
  --display: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --shell: min(1320px, calc(100% - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

::selection {
  color: var(--bone-light);
  background: var(--mulberry);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.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;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(80, 28, 45, .18);
  background: rgba(244, 235, 221, .94);
  backdrop-filter: blur(14px);
}

.header-shell,
.section-shell,
.hero-shell,
.fact-shell,
.testimonial-shell,
.closing-shell,
.footer-shell {
  width: var(--shell);
  margin-inline: auto;
}

.header-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 38px;
  color: var(--mulberry);
  flex: 0 0 auto;
}

.brand-mark circle {
  fill: var(--gold);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -1.1px;
}

.brand-copy small {
  color: var(--mulberry);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav > a:not(.header-call) {
  position: relative;
  color: #4e4541;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .45px;
  text-decoration: none;
}

.primary-nav > a:not(.header-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--mulberry);
  transition: right .25s ease;
}

.primary-nav > a:not(.header-call):hover::after {
  right: 0;
}

.header-call {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 20px;
  color: #fff;
  background: var(--mulberry);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.header-call span {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .35px;
}

.header-call:hover {
  background: var(--mulberry-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  padding-top: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 18%, rgba(217, 154, 43, .13) 0 3px, transparent 4px) 0 0 / 21px 21px,
    var(--bone);
}

.hero-sightline {
  position: absolute;
  z-index: 1;
  top: 405px;
  left: -6vw;
  width: 112vw;
  height: 2px;
  background: var(--mulberry);
  transform: rotate(-4deg) scaleX(0);
  transform-origin: left center;
  animation: sightline-in 1s .25s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-sightline::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 8%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-shell {
  position: relative;
  z-index: 3;
}

.hero-kicker,
.eyebrow,
.slab-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--mulberry);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.dot-trail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dot-trail i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.dot-trail i:nth-child(2) { width: 5px; height: 5px; }
.dot-trail i:nth-child(3) { width: 7px; height: 7px; }
.dot-trail i:nth-child(4) { width: 9px; height: 9px; }
.dot-trail i:nth-child(5) { width: 11px; height: 11px; }

.hero h1 {
  max-width: 1080px;
  margin: 32px 0 0;
  font-family: var(--display);
  font-size: clamp(84px, 9.8vw, 160px);
  line-height: .83;
  letter-spacing: -8px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--mulberry);
  font-style: italic;
  font-weight: 900;
}

.hero-copy-grid {
  position: relative;
  z-index: 5;
  width: min(730px, 66%);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 44px;
  margin-top: 38px;
}

.hero-copy-grid > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  min-width: 220px;
  color: #fff;
  background: var(--mulberry);
}

.button-primary:hover {
  background: var(--mulberry-dark);
  transform: translateY(-2px);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: var(--mulberry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-link span {
  font-size: 18px;
  transition: transform .2s ease;
}

.button-link:hover span {
  transform: translate(3px, -3px);
}

.hero-image-band {
  position: absolute;
  z-index: 2;
  left: -3%;
  right: -3%;
  bottom: -36px;
  height: 370px;
  overflow: hidden;
  clip-path: polygon(0 27%, 100% 0, 100% 76%, 0 100%);
  background: var(--mulberry);
  transform: translateY(50px);
  opacity: 0;
  animation: image-band-in .9s .15s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(50, 16, 27, .56), transparent 42%, rgba(23, 21, 20, .1));
  pointer-events: none;
}

.hero-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.86) contrast(1.04);
}

.image-index {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 78px;
  padding: 8px 11px;
  color: var(--bone-light);
  background: rgba(23, 21, 20, .76);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.fact-strip {
  position: relative;
  z-index: 5;
  color: var(--bone-light);
  background: var(--mulberry);
}

.fact-shell {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
}

.fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px 36px;
  border-left: 1px solid rgba(244, 235, 221, .22);
}

.fact:first-child {
  border-left: 0;
  padding-left: 0;
}

.fact:last-child {
  padding-right: 0;
}

.fact span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.fact strong {
  font-size: 15px;
  font-weight: 600;
}

.fact-link {
  text-decoration: none;
  transition: background .2s ease;
}

.fact-link:hover {
  background: rgba(255, 255, 255, .06);
}

.section {
  padding-block: 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, .42fr) 1.58fr;
  gap: 52px;
}

.eyebrow {
  align-self: start;
  padding-top: 12px;
}

.eyebrow > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 90px);
  line-height: .98;
  letter-spacing: -4px;
}

.section-intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.service-list {
  margin-top: 78px;
  border-top: 1px solid var(--line);
}

.service-row {
  min-height: 142px;
  display: grid;
  grid-template-columns: 72px minmax(250px, 1fr) minmax(300px, .9fr) 80px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: color .22s ease, background .22s ease, padding .22s ease;
}

.service-row:hover {
  padding-inline: 26px;
  color: var(--bone-light);
  background: var(--mulberry);
}

.service-number {
  color: var(--mulberry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.service-row:hover .service-number {
  color: var(--gold-light);
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 39px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-row:hover p {
  color: rgba(251, 247, 239, .76);
}

.service-row > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--mulberry);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.service-row:hover > a {
  color: var(--gold-light);
}

.service-row > a span {
  font-size: 22px;
  transition: transform .2s ease;
}

.service-row > a:hover span {
  transform: translateX(5px);
}

.call-prep {
  color: var(--bone-light);
  background: var(--ink);
}

.prep-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
}

.eyebrow-light {
  color: var(--gold-light);
}

.prep-heading h2 {
  margin-top: 44px;
  font-size: clamp(53px, 6.2vw, 88px);
}

.prep-heading > p:last-child {
  max-width: 390px;
  margin: 34px 0 0;
  color: rgba(251, 247, 239, .62);
  font-size: 14px;
  line-height: 1.75;
}

.route-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 25px;
  width: 1px;
  background: rgba(169, 212, 223, .35);
}

.route-list li {
  position: relative;
  z-index: 1;
  min-height: 150px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(244, 235, 221, .16);
}

.route-list li:first-child {
  border-top: 1px solid rgba(244, 235, 221, .16);
}

.route-node {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass);
  border-radius: 50%;
  color: var(--ink);
  background: var(--glass);
  font-size: 11px;
  font-weight: 900;
}

.route-list li:nth-child(2) .route-node {
  color: var(--bone-light);
  background: var(--mulberry);
  border-color: var(--mulberry);
}

.route-list li:nth-child(3) .route-node {
  background: var(--gold);
  border-color: var(--gold);
}

.route-list strong {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -1px;
}

.route-list p {
  margin: 9px 0 0;
  color: rgba(251, 247, 239, .62);
  font-size: 13px;
}

.testimonial {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
}

.testimonial::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(80, 28, 45, .25);
  border-radius: 50%;
  box-shadow: inset 0 0 0 55px rgba(80, 28, 45, .05), inset 0 0 0 110px rgba(80, 28, 45, .04);
}

.testimonial-shell {
  position: relative;
  z-index: 1;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 90px;
}

.testimonial .eyebrow {
  padding-top: 0;
  color: var(--ink);
}

.quote-mark {
  position: absolute;
  top: 72px;
  right: 2%;
  color: var(--mulberry);
  font-family: Georgia, serif;
  font-size: 240px;
  line-height: 1;
  opacity: .18;
}

.testimonial blockquote {
  max-width: 1080px;
  margin: 62px 0 58px;
  font-family: var(--display);
  font-size: clamp(55px, 7.4vw, 112px);
  line-height: .98;
  letter-spacing: -5px;
}

.quote-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 21, 20, .32);
}

.quote-meta p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.quote-meta strong {
  font-size: 13px;
}

.quote-meta p span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.quote-meta > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.quote-meta > a span {
  font-size: 19px;
}

.location {
  background: var(--bone-light);
}

.location-heading {
  margin-bottom: 78px;
}

.location-slab {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  color: var(--bone-light);
  background: var(--mulberry);
  box-shadow: 20px 20px 0 var(--glass);
}

.address-block,
.hours-block {
  padding: clamp(44px, 6vw, 82px);
}

.address-block {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(244, 235, 221, .22);
  background:
    radial-gradient(circle at 76% 24%, rgba(217, 154, 43, .85) 0 5px, transparent 6px) 0 0 / 26px 26px,
    var(--mulberry);
}

.slab-label {
  color: var(--gold-light);
}

.address-block address {
  margin-block: 70px;
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 70px);
  font-style: normal;
  line-height: 1.06;
  letter-spacing: -3px;
}

.button-dark {
  width: fit-content;
  color: var(--ink);
  background: var(--gold-light);
}

.button-dark:hover {
  color: var(--bone-light);
  background: var(--ink);
}

.hours-block {
  background: var(--mulberry-dark);
}

.hours-top {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(244, 235, 221, .2);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(217, 154, 43, .14);
}

.hours-block ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hours-block li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 19px;
  border-bottom: 1px solid rgba(244, 235, 221, .14);
  font-size: 13px;
}

.hours-block li span {
  color: rgba(251, 247, 239, .64);
}

.hours-block li strong {
  font-weight: 600;
}

.closing {
  position: relative;
  overflow: hidden;
  color: var(--bone-light);
  background: var(--mulberry);
}

.closing-shell {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 100px;
}

.closing-shell > p:first-child {
  margin: 0 0 30px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.closing h2 {
  font-size: clamp(68px, 9vw, 135px);
}

.closing-phone {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  padding-block: 24px 30px;
  border-top: 1px solid rgba(244, 235, 221, .25);
  border-bottom: 1px solid rgba(244, 235, 221, .25);
  color: var(--bone-light);
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 88px);
  letter-spacing: -3px;
  text-decoration: none;
}

.closing-phone span {
  color: var(--gold-light);
}

.closing-phone b {
  margin-left: auto;
  color: var(--gold-light);
  font-family: var(--body);
  font-weight: 300;
  transition: transform .2s ease;
}

.closing-phone:hover b {
  transform: translateX(10px);
}

.closing-note {
  margin: 22px 0 0;
  color: rgba(251, 247, 239, .6);
  font-size: 11px;
}

.closing-trail {
  position: absolute;
  top: 84px;
  right: 4vw;
  display: flex;
  gap: 14px;
  transform: rotate(-12deg);
}

.closing-trail i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
}

.closing-trail i:nth-child(2) { width: 14px; height: 14px; opacity: .5; }
.closing-trail i:nth-child(3) { width: 19px; height: 19px; opacity: .62; }
.closing-trail i:nth-child(4) { width: 25px; height: 25px; opacity: .74; }
.closing-trail i:nth-child(5) { width: 31px; height: 31px; opacity: .86; }
.closing-trail i:nth-child(6) { width: 38px; height: 38px; opacity: 1; }

.site-footer {
  color: var(--bone-light);
  background: var(--ink);
}

.footer-shell {
  min-height: 205px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px 60px;
  padding-block: 48px;
}

.footer-brand .brand-mark {
  color: var(--bone-light);
}

.footer-brand .brand-copy small {
  color: var(--gold-light);
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-contact a {
  color: var(--bone-light);
  font-size: 12px;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-shell > p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(251, 247, 239, .58);
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: .4px;
}

.mobile-call {
  display: none;
}

@keyframes sightline-in {
  to { transform: rotate(-4deg) scaleX(1); }
}

@keyframes image-band-in {
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 48px, 920px);
  }

  .primary-nav {
    gap: 22px;
  }

  .primary-nav > a:not(.header-call) {
    font-size: 10px;
  }

  .hero {
    min-height: 800px;
  }

  .hero h1 {
    font-size: clamp(78px, 11.2vw, 118px);
    letter-spacing: -6px;
  }

  .hero-copy-grid {
    width: 76%;
  }

  .service-row {
    grid-template-columns: 54px minmax(210px, 1fr) minmax(250px, .85fr) 66px;
    gap: 20px;
  }

  .location-slab {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }

  .header-shell {
    min-height: 76px;
  }

  .brand-mark {
    width: 43px;
  }

  .brand-copy strong {
    font-size: 22px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--mulberry);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--mulberry);
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 76px 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px 24px 120px;
    color: var(--bone-light);
    background: var(--mulberry);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity .2s ease, visibility .2s ease, transform .28s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .primary-nav > a:not(.header-call) {
    padding: 24px 0;
    border-bottom: 1px solid rgba(244, 235, 221, .24);
    color: var(--bone-light);
    font-size: 17px;
  }

  .header-call {
    min-height: 62px;
    margin-top: 28px;
    color: var(--ink);
    background: var(--gold-light);
    font-size: 11px;
  }

  .header-call span {
    color: var(--ink);
  }

  .hero {
    min-height: 900px;
    padding-top: 62px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(68px, 14.5vw, 110px);
  }

  .hero-copy-grid {
    width: 78%;
    display: block;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 28px;
  }

  .hero-image-band {
    height: 390px;
  }

  .fact-shell {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 100px;
    padding: 24px 0;
    border-top: 1px solid rgba(244, 235, 221, .22);
    border-left: 0;
  }

  .fact:first-child {
    border-top: 0;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

  .service-list {
    margin-top: 56px;
  }

  .service-row {
    grid-template-columns: 46px 1fr 58px;
    gap: 15px 20px;
    padding-block: 28px;
  }

  .service-row h3 {
    font-size: 28px;
  }

  .service-row p {
    grid-column: 2 / -1;
    padding-right: 50px;
  }

  .service-row > a {
    grid-column: 3;
    grid-row: 1;
  }

  .prep-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .location-slab {
    grid-template-columns: 1fr;
    box-shadow: 13px 13px 0 var(--glass);
  }

  .address-block {
    min-height: 460px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 235, 221, .22);
  }

  .location-heading {
    margin-bottom: 58px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 34px);
  }

  body {
    padding-bottom: 66px;
  }

  .header-shell {
    min-height: 70px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 32px;
  }

  .brand-copy strong {
    font-size: 19px;
    letter-spacing: -.8px;
  }

  .brand-copy small {
    font-size: 6px;
    letter-spacing: 2.2px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    inset: 70px 0 0;
  }

  .hero {
    min-height: 860px;
    padding-top: 47px;
    background:
      radial-gradient(circle at 94% 13%, rgba(217, 154, 43, .17) 0 2px, transparent 3px) 0 0 / 17px 17px,
      var(--bone);
  }

  .hero-kicker {
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .hero h1 {
    margin-top: 27px;
    font-size: clamp(60px, 18vw, 92px);
    line-height: .86;
    letter-spacing: -4.5px;
  }

  .hero-copy-grid {
    width: 100%;
    margin-top: 31px;
  }

  .hero-copy-grid > p {
    max-width: 420px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }

  .button {
    min-height: 54px;
  }

  .hero-image-band {
    left: -7%;
    right: -7%;
    bottom: -22px;
    height: 325px;
    clip-path: polygon(0 18%, 100% 0, 100% 85%, 0 100%);
  }

  .hero-image-band img {
    object-position: 58% center;
  }

  .hero-sightline {
    top: 475px;
  }

  .image-index {
    right: 9%;
    bottom: 53px;
    font-size: 7px;
  }

  .fact strong {
    font-size: 13px;
  }

  .section {
    padding-block: 72px;
  }

  h2 {
    font-size: clamp(44px, 13vw, 65px);
    letter-spacing: -2.8px;
  }

  .section-intro {
    margin-top: 25px;
    font-size: 13px;
  }

  .service-list {
    margin-top: 43px;
  }

  .service-row {
    min-height: 0;
    grid-template-columns: 35px 1fr 40px;
    gap: 12px 14px;
    padding-block: 25px;
  }

  .service-row:hover {
    margin-inline: -17px;
    padding-inline: 17px;
  }

  .service-row h3 {
    font-size: 23px;
    letter-spacing: -1px;
  }

  .service-row p {
    padding-right: 0;
    font-size: 12px;
  }

  .service-row > a {
    font-size: 0;
  }

  .service-row > a span {
    font-size: 24px;
  }

  .prep-heading h2 {
    margin-top: 33px;
  }

  .route-list li {
    min-height: 125px;
    grid-template-columns: 46px 1fr;
    gap: 22px;
  }

  .route-list::before {
    left: 22.5px;
  }

  .route-node {
    width: 46px;
    height: 46px;
  }

  .route-list strong {
    font-size: 23px;
  }

  .testimonial-shell {
    min-height: 500px;
    padding-block: 66px;
  }

  .testimonial blockquote {
    margin: 50px 0 45px;
    font-size: clamp(49px, 15vw, 75px);
    letter-spacing: -3.5px;
  }

  .quote-mark {
    top: 57px;
    right: -7%;
    font-size: 180px;
  }

  .quote-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .address-block,
  .hours-block {
    padding: 39px 28px;
  }

  .address-block {
    min-height: 400px;
  }

  .address-block address {
    margin-block: 55px;
    font-size: clamp(37px, 11vw, 54px);
    letter-spacing: -2px;
  }

  .hours-block li {
    padding-block: 16px;
    font-size: 12px;
  }

  .closing-shell {
    min-height: 550px;
    padding-block: 75px;
  }

  .closing h2 {
    font-size: clamp(59px, 17vw, 90px);
  }

  .closing-phone {
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 34px;
    font-size: clamp(35px, 11vw, 55px);
    letter-spacing: -2px;
  }

  .closing-phone b {
    font-size: 36px;
  }

  .closing-trail {
    top: 50px;
    right: -13vw;
    gap: 8px;
  }

  .footer-shell {
    min-height: 245px;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 43px;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-shell > p {
    grid-column: 1;
  }

  .mobile-call {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 17px max(13px, env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--gold-light);
    border-top: 1px solid rgba(23, 21, 20, .2);
    box-shadow: 0 -8px 30px rgba(23, 21, 20, .18);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .6px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-call strong {
    font-size: 13px;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

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

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

  .hero-sightline {
    transform: rotate(-4deg) scaleX(1);
  }

  .hero-image-band {
    transform: none;
    opacity: 1;
  }
}
