:root {
  --night: #0b2932;
  --night-deep: #061b22;
  --teal: #0b5f69;
  --teal-light: #dcebea;
  --lime: #d8ff3e;
  --lime-hover: #e4ff77;
  --paper: #f8faf6;
  --white: #ffffff;
  --ink: #102b31;
  --muted: #587076;
  --line: #cbd9d7;
  --mist: #edf3f0;
  --shadow: 0 24px 60px rgba(6, 27, 34, 0.16);
  --wrap: min(1180px, calc(100% - 40px));
  --body-font: "Segoe UI", Helvetica, Arial, sans-serif;
  --display-font: "Arial Black", "Segoe UI Black", "Segoe UI", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--night);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

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

.availability-bar {
  position: sticky;
  z-index: 120;
  top: 0;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.availability-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.availability-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability-bar__divider {
  width: 1px;
  height: 14px;
  margin-inline: 4px;
  background: rgba(255, 255, 255, 0.35);
}

.availability-bar a {
  color: var(--lime);
  font-weight: 800;
  text-underline-offset: 3px;
}

.live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 255, 62, 0.16);
}

.header {
  position: sticky;
  z-index: 110;
  top: 36px;
  background: rgba(248, 250, 246, 0.96);
  border-bottom: 1px solid rgba(16, 43, 49, 0.12);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.logo__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--night);
  color: var(--lime);
  border-radius: 50%;
}

.logo__mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.logo__text {
  display: grid;
  line-height: 1;
}

.logo__text strong {
  font-family: var(--display-font);
  font-size: 1.27rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.logo__text small {
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 170ms ease;
}

.nav > a:not(.button):hover::after,
.nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  display: block;
  background: var(--night);
  transition: opacity 160ms ease, transform 160ms ease;
}

.button {
  min-height: 49px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--large {
  min-height: 58px;
  padding-inline: 29px;
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 0.8rem;
}

.button--lime {
  background: var(--lime);
  color: var(--night);
  box-shadow: 0 13px 30px rgba(119, 151, 7, 0.2);
}

.button--lime:hover {
  background: var(--lime-hover);
  box-shadow: 0 17px 34px rgba(119, 151, 7, 0.26);
}

.button--dark {
  background: var(--night);
  color: var(--white);
}

.button--outline {
  color: var(--night);
  border-color: var(--night);
}

.button--outline:hover {
  background: var(--night);
  color: var(--white);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0 0;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -210px;
  right: -250px;
  width: 740px;
  height: 740px;
  background: var(--teal-light);
  border-radius: 50%;
}

.hero__grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(11, 95, 105, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 105, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 0, #000 42%, #000 100%);
}

.hero__layout {
  min-height: 596px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  align-items: center;
  gap: 76px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-bottom: 50px;
}

.kicker {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--teal-light);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kicker span {
  padding: 5px 8px;
  background: var(--lime);
  color: var(--night);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.hero .kicker,
.kicker--dark {
  color: var(--teal);
}

.hero h1,
.section-title h2,
.prepare h2,
.location h2,
.questions h2,
.contact-banner h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 710px;
  color: var(--night);
  font-size: clamp(4rem, 7vw, 6.5rem);
}

.hero h1 mark {
  padding: 0;
  background: linear-gradient(transparent 68%, var(--lime) 68% 94%, transparent 94%);
  color: inherit;
}

.hero__intro {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  margin: 32px 0 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__facts li {
  display: grid;
}

.hero__facts span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__facts strong {
  margin-top: 2px;
  font-size: 0.92rem;
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-width: 0;
  padding: 20px 0 50px;
  display: flex;
  align-items: center;
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 526px;
  overflow: hidden;
  background: var(--teal-light);
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), calc(100% - 50px) 100%, 0 100%);
}

.hero__photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 27, 34, 0.25), transparent 44%);
  pointer-events: none;
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 506px;
  object-fit: cover;
  object-position: 56% center;
}

.hero__hours {
  position: absolute;
  z-index: 2;
  top: -14px;
  left: -38px;
  width: 142px;
  height: 142px;
  padding: 22px;
  display: grid;
  align-content: center;
  background: var(--night);
  color: var(--white);
  border: 8px solid var(--paper);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 15px 34px rgba(6, 27, 34, 0.22);
}

.hero__hours small,
.hero__hours span {
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__hours strong {
  margin-block: 4px;
  color: var(--lime);
  font-family: var(--display-font);
  font-size: 2.45rem;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.hero__rating {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 25px;
  min-width: 200px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 13px;
  background: var(--lime);
  color: var(--night);
  box-shadow: var(--shadow);
}

.hero__rating > span {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.hero__rating strong {
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 1;
}

.hero__rating small {
  font-size: 0.73rem;
  font-weight: 800;
}

.hero__bottom-line {
  min-height: 86px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.hero__bottom-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__bottom-line p strong {
  color: var(--ink);
}

.hero__bottom-line a {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.section {
  padding-block: 112px;
}

.services {
  background: var(--white);
}

.section-title--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 88px;
}

.section-title h2,
.prepare h2,
.location h2,
.questions h2 {
  font-size: clamp(3rem, 5.1vw, 4.7rem);
}

.section-title--split > p {
  margin: 0 0 3px;
  color: var(--muted);
}

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

.service-item {
  position: relative;
  min-height: 170px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0 -20px;
  z-index: 0;
  background: var(--mist);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-item:hover {
  padding-inline: 10px;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-item__number {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-item__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--night);
  color: var(--lime);
  border-radius: 50%;
}

.service-item__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-item__copy h3 {
  margin: 0 0 5px;
  font-family: var(--display-font);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.service-item__copy p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-item > a {
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.service-item > a span {
  margin-left: 5px;
}

.prepare {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.prepare__pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.32;
  background-image: repeating-linear-gradient(112deg, transparent 0 110px, rgba(216, 255, 62, 0.09) 111px 112px);
}

.prepare::after {
  content: "213";
  position: absolute;
  z-index: -1;
  right: -55px;
  bottom: -120px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display-font);
  font-size: 22rem;
  font-weight: 900;
  line-height: 1;
}

.prepare__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: 100px;
}

.prepare__intro h2 {
  max-width: 590px;
}

.prepare__intro > p:not(.kicker) {
  max-width: 560px;
  margin: 26px 0 0;
  color: #afc1c5;
}

.prepare__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.prepare__steps li {
  min-height: 112px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.prepare__steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.prepare__steps li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--night);
  border-radius: 50%;
  font-family: var(--display-font);
  font-size: 1.25rem;
}

.prepare__steps h3 {
  margin: 0 0 2px;
  font-family: var(--display-font);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.prepare__steps p {
  margin: 0;
  color: #afc1c5;
  font-size: 0.9rem;
}

.safety-note {
  position: relative;
  z-index: 2;
  min-height: 106px;
  margin-top: 74px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.safety-note__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--night);
  border-radius: 50%;
  font-family: var(--display-font);
  font-size: 1.3rem;
}

.safety-note p {
  margin: 0;
  color: #afc1c5;
  font-size: 0.9rem;
}

.safety-note p strong {
  display: block;
  color: var(--white);
}

.safety-note > a {
  color: var(--lime);
  font-weight: 900;
  text-underline-offset: 4px;
}

.location {
  background: var(--paper);
}

.location__layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 92px;
}

.location__visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--teal-light);
  border: 1px solid #b9d0ce;
  box-shadow: var(--shadow);
}

.location__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 95, 105, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 105, 0.1) 1px, transparent 1px);
  background-size: 38px 38px;
}

.location__route {
  position: absolute;
  display: block;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(11, 95, 105, 0.08);
}

.location__route--one {
  top: -10%;
  left: 31%;
  width: 38px;
  height: 122%;
  transform: rotate(6deg);
}

.location__route--two {
  top: 42%;
  left: -10%;
  width: 120%;
  height: 48px;
  transform: rotate(-8deg);
}

.location__route--three {
  top: -10%;
  right: 17%;
  width: 22px;
  height: 120%;
  transform: rotate(-12deg);
}

.location__pin {
  position: absolute;
  top: 51%;
  left: 53%;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--lime);
  border: 8px solid var(--night);
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 14px 28px rgba(6, 27, 34, 0.26);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.location__pin i {
  width: 16px;
  height: 16px;
  background: var(--night);
  border-radius: 50%;
}

.location__coordinate {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  background: var(--night);
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.location__coordinate--top {
  top: 22px;
  left: 22px;
}

.location__coordinate--bottom {
  right: 22px;
  bottom: 22px;
}

.location__content h2 {
  max-width: 520px;
}

.location__content address {
  margin: 30px 0 24px;
  display: grid;
  color: var(--muted);
  font-style: normal;
  font-size: 1.02rem;
}

.location__content address strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.08rem;
}

.location__status {
  max-width: 470px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location__status .live-dot {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 95, 105, 0.12);
}

.location__status div {
  display: grid;
}

.location__status small {
  color: var(--muted);
}

.location__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-underline-offset: 5px;
}

.review-section {
  padding-block: 82px;
  background: var(--lime);
  color: var(--night);
}

.review-section__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.review-section__score {
  padding-right: 54px;
  display: grid;
  border-right: 2px solid rgba(11, 41, 50, 0.17);
  text-align: center;
}

.review-section__score > span {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
}

.review-section__score strong {
  font-family: var(--display-font);
  font-size: 4.6rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.review-section__score small {
  margin-top: 3px;
  font-size: 0.76rem;
  font-weight: 750;
}

.review-section figure {
  margin: 0;
}

.review-section blockquote {
  max-width: 770px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.review-section figcaption {
  margin-top: 15px;
  font-size: 0.82rem;
  font-weight: 750;
}

.questions {
  background: var(--white);
}

.questions__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
  gap: 98px;
}

.questions__heading > p:not(.kicker) {
  max-width: 390px;
  margin: 22px 0 28px;
  color: var(--muted);
}

.questions__list details {
  border-top: 1px solid var(--line);
}

.questions__list details:last-child {
  border-bottom: 1px solid var(--line);
}

.questions__list summary {
  position: relative;
  min-height: 82px;
  padding: 20px 54px 20px 0;
  display: flex;
  align-items: center;
  font-family: var(--display-font);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.questions__list summary::-webkit-details-marker {
  display: none;
}

.questions__list summary span,
.questions__list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 19px;
  height: 2px;
  background: var(--teal);
  transition: transform 160ms ease;
}

.questions__list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.questions__list details[open] summary span::after {
  transform: rotate(0);
}

.questions__list details p {
  max-width: 700px;
  margin: -3px 54px 25px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 84px;
  background: var(--teal);
  color: var(--white);
}

.contact-banner__cut {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.55;
  background: repeating-linear-gradient(112deg, transparent 0 105px, rgba(255, 255, 255, 0.08) 106px 107px);
}

.contact-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-banner h2 {
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.9rem);
}

.footer {
  padding: 72px 0 28px;
  background: var(--night-deep);
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.7fr;
  gap: 54px;
}

.logo--footer .logo__mark {
  background: var(--lime);
  color: var(--night);
}

.logo--footer .logo__text small {
  color: #8eabb0;
}

.footer__brand > p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #8eabb0;
  font-size: 0.86rem;
}

.footer__top h2 {
  margin: 4px 0 15px;
  color: #8eabb0;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__top address,
.footer__top > div:not(:first-child) a,
.footer__top > div:not(:first-child) span {
  display: block;
  color: var(--white);
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer__top a {
  text-underline-offset: 4px;
}

.footer__bottom {
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #748f95;
  font-size: 0.76rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--white);
  text-decoration: none;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1060px) {
  .nav {
    gap: 18px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 5.6rem);
  }

  .section-title--split,
  .prepare__layout,
  .location__layout,
  .questions__layout {
    gap: 60px;
  }

  .service-item {
    grid-template-columns: 46px 76px minmax(0, 1fr) auto;
    gap: 20px;
  }

  .footer__top {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
  }
}

@media (max-width: 860px) {
  :root {
    --wrap: min(720px, calc(100% - 32px));
  }

  .availability-bar__inner {
    justify-content: center;
  }

  .availability-bar__inner > a,
  .availability-bar__divider,
  .availability-address {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 114px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 114px);
    padding: 26px 24px 34px;
    display: grid;
    gap: 0;
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(6, 27, 34, 0.16);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 190ms ease, visibility 190ms ease;
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav > a:not(.button) {
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav .button {
    margin-top: 22px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero__copy {
    max-width: 650px;
    padding-bottom: 0;
  }

  .hero__media {
    min-height: 520px;
    padding-bottom: 54px;
  }

  .hero__photo-frame {
    min-height: 500px;
  }

  .hero__photo-frame img {
    min-height: 480px;
  }

  .hero__hours {
    top: 0;
    left: -12px;
  }

  .hero__bottom-line {
    margin-top: 4px;
  }

  .section-title--split,
  .prepare__layout,
  .location__layout,
  .questions__layout {
    grid-template-columns: 1fr;
  }

  .section-title--split,
  .prepare__layout,
  .location__layout,
  .questions__layout {
    gap: 42px;
  }

  .service-item {
    grid-template-columns: 42px 72px minmax(0, 1fr);
  }

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

  .location__visual {
    min-height: 420px;
  }

  .review-section__layout {
    grid-template-columns: 190px 1fr;
    gap: 42px;
  }

  .review-section__score {
    padding-right: 36px;
  }

  .contact-banner__inner {
    align-items: flex-end;
  }

  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__top > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 100px;
  }

  body {
    padding-bottom: 62px;
  }

  .availability-bar {
    font-size: 0.72rem;
  }

  .availability-bar__inner {
    min-height: 32px;
  }

  .header {
    top: 32px;
  }

  .header__inner {
    min-height: 68px;
  }

  .logo__mark {
    width: 42px;
    height: 42px;
  }

  .logo__mark svg {
    width: 30px;
    height: 30px;
  }

  .logo__text strong {
    font-size: 1.05rem;
  }

  .logo__text small {
    font-size: 0.62rem;
  }

  .nav {
    top: 100px;
    max-height: calc(100vh - 100px);
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .hero__intro {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__media {
    min-height: 405px;
    padding-top: 22px;
  }

  .hero__photo-frame {
    min-height: 385px;
    border-width: 6px;
  }

  .hero__photo-frame img {
    min-height: 373px;
  }

  .hero__hours {
    top: -8px;
    left: -5px;
    width: 112px;
    height: 112px;
    padding: 16px;
    border-width: 5px;
  }

  .hero__hours strong {
    font-size: 1.9rem;
  }

  .hero__rating {
    right: -4px;
    bottom: 24px;
    min-width: 172px;
    padding: 13px 16px;
  }

  .hero__bottom-line {
    min-height: 105px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .section {
    padding-block: 80px;
  }

  .section-title h2,
  .prepare h2,
  .location h2,
  .questions h2 {
    font-size: clamp(2.7rem, 12vw, 3.65rem);
  }

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

  .service-item {
    padding-block: 28px;
    grid-template-columns: 44px 1fr;
    gap: 14px 18px;
  }

  .service-item__icon {
    width: 62px;
    height: 62px;
  }

  .service-item__number {
    grid-row: 1;
  }

  .service-item__icon {
    grid-column: 2;
    grid-row: 1;
  }

  .service-item__copy {
    grid-column: 1 / -1;
  }

  .service-item > a {
    grid-column: 1 / -1;
  }

  .prepare__steps li {
    grid-template-columns: 60px 1fr;
  }

  .prepare__steps li > span {
    width: 50px;
    height: 50px;
  }

  .safety-note {
    margin-top: 54px;
    grid-template-columns: auto 1fr;
  }

  .safety-note > a {
    grid-column: 2;
  }

  .location__visual {
    min-height: 340px;
  }

  .location__pin {
    width: 58px;
    height: 58px;
    border-width: 6px;
  }

  .location__actions {
    display: grid;
    justify-items: stretch;
  }

  .location__actions .text-link {
    text-align: center;
  }

  .review-section {
    padding-block: 62px;
  }

  .review-section__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-section__score {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 2px solid rgba(11, 41, 50, 0.17);
  }

  .review-section figure {
    text-align: center;
  }

  .questions__list summary {
    min-height: 76px;
    padding-right: 44px;
    font-size: 1.1rem;
  }

  .contact-banner {
    padding-block: 70px;
  }

  .contact-banner__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }

  .contact-banner h2 {
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer__top > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    display: grid;
  }

  .mobile-actions {
    position: fixed;
    z-index: 130;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(6, 27, 34, 0.14);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--night);
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    background: var(--lime);
  }
}

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

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