:root {
  --ink: #18130d;
  --paper: #f1dfbd;
  --aged: #d7bd87;
  --denim: #17324a;
  --denim-light: #27506c;
  --mustard: #d8aa28;
  --rust: #8e3f25;
  --steel: #c6c0ad;
  --shadow: rgba(16, 12, 8, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #15110d;
  font-family: Georgia, "Times New Roman", serif;
}

body.splash-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.splash-screen {
  position: fixed;
  z-index: 100;
  inset: 0;
  min-height: 100vh;
  overflow: hidden;
  color: #fff2d1;
  background: #16110c;
  isolation: isolate;
}

.splash-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 54%, transparent 0 24%, rgba(10, 7, 4, 0.16) 42%, rgba(10, 7, 4, 0.38) 100%);
}

.splash-screen.is-hidden {
  display: none;
}

.splash-screen img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.025);
  transform-origin: center;
  animation: reveal-image-drift 10s ease-in-out infinite;
}

.splash-hotspot {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(310px, 34vw, 620px);
  aspect-ratio: 1.92;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: 2px solid rgba(255, 239, 184, 0.82);
  background: rgba(216, 170, 40, 0.04);
  box-shadow:
    0 0 0 0 rgba(216, 170, 40, 0.56),
    inset 0 0 28px rgba(255, 239, 184, 0.12);
  animation: sign-pulse 1.45s ease-in-out infinite;
  font: 0/0 a;
}

.splash-hotspot::before,
.splash-hotspot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 239, 184, 0.5);
  opacity: 0;
  animation: sign-ring 1.45s ease-out infinite;
}

.splash-hotspot::after {
  animation-delay: 0.72s;
}

.splash-hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.splash-motion,
.splash-motion span {
  position: absolute;
  pointer-events: none;
}

.splash-motion {
  inset: 0;
  overflow: hidden;
}

.lamp-glow {
  left: 50%;
  top: 7%;
  width: clamp(180px, 28vw, 520px);
  height: clamp(70px, 10vw, 170px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 221, 133, 0.56), rgba(255, 190, 76, 0.2) 42%, transparent 72%);
  mix-blend-mode: screen;
  animation: lamp-breathe 2.8s ease-in-out infinite;
}

.metal-glint {
  width: clamp(34px, 4vw, 72px);
  height: 6px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 222, 0.95), transparent);
  filter: blur(0.2px) drop-shadow(0 0 10px rgba(255, 245, 197, 0.8));
  mix-blend-mode: screen;
  animation: object-glint 4.2s ease-in-out infinite;
}

.glint-clipper {
  right: 20.7%;
  top: 40.5%;
  transform: rotate(-61deg);
}

.glint-razor {
  right: 12.8%;
  top: 63.8%;
  transform: rotate(-46deg);
  animation-delay: 1.25s;
}

.glint-pomade {
  right: 8.3%;
  bottom: 18%;
  transform: rotate(10deg);
  animation-delay: 2.2s;
}

.splash-arrows {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(360px, 45vw, 760px);
  aspect-ratio: 2.35;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.splash-arrow {
  position: absolute;
  width: clamp(54px, 6vw, 92px);
  height: clamp(26px, 3vw, 42px);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.6));
  animation: arrow-nudge 1.15s ease-in-out infinite;
}

.splash-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 72%;
  height: 5px;
  background: #f5cd3d;
  border: 1px solid rgba(62, 37, 8, 0.72);
  transform: translateY(-50%);
}

.splash-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-top: clamp(13px, 1.6vw, 21px) solid transparent;
  border-bottom: clamp(13px, 1.6vw, 21px) solid transparent;
  border-left: clamp(24px, 2.7vw, 40px) solid #f5cd3d;
  transform: translateY(-50%);
}

.arrow-left {
  left: -3%;
  top: 42%;
}

.arrow-right {
  right: -3%;
  top: 42%;
  transform: rotate(180deg);
  animation-name: arrow-nudge-reverse;
}

.arrow-bottom {
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%) rotate(-90deg);
  animation-name: arrow-nudge-up;
}

.splash-hotspot:hover,
.splash-hotspot:focus-visible {
  border-color: #fff3be;
  background: rgba(216, 170, 40, 0.1);
  outline: none;
}

@keyframes sign-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(216, 170, 40, 0.5),
      inset 0 0 28px rgba(255, 239, 184, 0.12);
  }

  50% {
    box-shadow:
      0 0 34px 10px rgba(216, 170, 40, 0.34),
      inset 0 0 38px rgba(255, 239, 184, 0.2);
  }
}

@keyframes lamp-breathe {
  0%,
  100% {
    opacity: 0.66;
    transform: translateX(-50%) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes reveal-image-drift {
  0%,
  100% {
    transform: scale(1.025) translate3d(0, 0, 0);
    filter: saturate(0.98) contrast(1.02);
  }

  35% {
    transform: scale(1.04) translate3d(-10px, -6px, 0);
    filter: saturate(1.03) contrast(1.05);
  }

  70% {
    transform: scale(1.035) translate3d(9px, 5px, 0);
    filter: saturate(1.01) contrast(1.04);
  }
}

@keyframes object-glint {
  0%,
  42%,
  100% {
    opacity: 0;
    translate: -20px 0;
  }

  52% {
    opacity: 0.95;
  }

  64% {
    opacity: 0;
    translate: 36px 0;
  }
}

@keyframes arrow-nudge {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.72;
  }

  50% {
    translate: 12px 0;
    opacity: 1;
  }
}

@keyframes arrow-nudge-reverse {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.72;
  }

  50% {
    translate: -12px 0;
    opacity: 1;
  }
}

@keyframes arrow-nudge-up {
  0%,
  100% {
    translate: -50% 0;
    opacity: 0.72;
  }

  50% {
    translate: -50% -12px;
    opacity: 1;
  }
}

@keyframes sign-ring {
  0% {
    opacity: 0.82;
    transform: scale(0.98);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff5dc;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.brand {
  display: grid;
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand span {
  font-size: 1.28rem;
  font-weight: 900;
}

.brand small {
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 245, 220, 0.42);
  background: rgba(20, 16, 10, 0.34);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(18, 12, 7, 0.92), rgba(18, 12, 7, 0.2) 48%, rgba(18, 12, 7, 0.66)),
    #15110d;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02);
  z-index: -3;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vh, 42px);
  z-index: 1;
  width: 68px;
  height: 68px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.68;
  animation: scroll-cue-bob 1.35s ease-in-out infinite;
}

.scroll-cue span {
  position: absolute;
  inset: 12px;
  border-right: 7px solid rgba(245, 205, 61, 0.84);
  border-bottom: 7px solid rgba(245, 205, 61, 0.84);
  filter:
    drop-shadow(0 0 12px rgba(245, 205, 61, 0.58))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
  transform: rotate(45deg);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(245, 205, 61, 0.34);
  border-radius: 50%;
  animation: scroll-cue-ring 1.35s ease-out infinite;
}

@keyframes scroll-cue-bob {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 12px;
  }
}

@keyframes scroll-cue-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 9, 5, 0.84) 0%, rgba(13, 9, 5, 0.38) 42%, rgba(13, 9, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 9, 5, 0.82) 0%, rgba(13, 9, 5, 0.08) 45%, rgba(13, 9, 5, 0.45) 100%);
}

.hero-content {
  width: min(650px, 100%);
  color: #fff2d1;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.65);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--mustard);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(4.3rem, 10vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.lede {
  max-width: 580px;
  margin-bottom: 28px;
  color: #f7e4be;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button.primary {
  color: #171008;
  background: var(--mustard);
  box-shadow: 0 12px 34px var(--shadow);
}

.button.secondary {
  color: #fff4d7;
  border-color: rgba(255, 244, 215, 0.62);
  background: rgba(23, 15, 8, 0.32);
}

.hours-panel {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 42px;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 16px 18px;
  color: #20160d;
  background: rgba(241, 223, 189, 0.9);
  border: 2px solid rgba(24, 19, 13, 0.28);
  box-shadow: 0 14px 34px var(--shadow);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.hours-panel span {
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 900;
}

.hours-panel strong {
  font-size: 1.5rem;
}

.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 70px);
  background: var(--paper);
  border-top: 8px solid var(--mustard);
}

.feature-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.feature-band p {
  align-self: end;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

.services-image-panel {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 1120px);
  overflow: visible;
  border: 8px solid rgba(255, 248, 225, 0.7);
  box-shadow: 0 18px 42px rgba(74, 48, 20, 0.24);
}

.services-image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.tape-strip {
  position: absolute;
  z-index: 2;
  width: clamp(132px, 15vw, 230px);
  height: clamp(36px, 4.5vw, 62px);
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 68%, rgba(255, 255, 255, 0.09) 0 1px, transparent 3px),
    radial-gradient(circle at 82% 28%, rgba(109, 99, 84, 0.22) 0 4px, transparent 7px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 16% 72%, rgba(255, 255, 255, 0.04)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03), transparent 46%, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(135deg, #0c0907 0 7px, #030202 7px 15px);
  box-shadow:
    0 14px 22px rgba(0, 0, 0, 0.42),
    0 2px 3px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 18px rgba(0, 0, 0, 0.42);
  opacity: 0.98;
  mix-blend-mode: multiply;
}

.tape-strip::before,
.tape-strip::after {
  content: "";
  position: absolute;
  inset: 5px 8px;
  opacity: 0.32;
  background:
    linear-gradient(92deg, transparent 0 10%, rgba(180, 168, 145, 0.26) 10% 12%, transparent 13% 48%, rgba(180, 168, 145, 0.18) 49% 50%, transparent 52% 100%),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.06) 5px 6px);
}

.tape-strip::after {
  inset: auto 10px 7px 14px;
  height: 3px;
  opacity: 0.26;
  background: linear-gradient(90deg, transparent, rgba(218, 207, 180, 0.42), transparent);
}

.tape-top-right {
  top: clamp(-26px, -2.4vw, -14px);
  right: clamp(-32px, -3vw, -18px);
  transform: rotate(14deg);
}

.tape-bottom-left {
  bottom: clamp(-26px, -2.4vw, -14px);
  left: clamp(-32px, -3vw, -18px);
  transform: rotate(-15deg);
}

.denim-patch {
  position: absolute;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 3;
  width: clamp(126px, 16vw, 230px);
  aspect-ratio: 2.45;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%, rgba(0, 0, 0, 0.18)),
    url("./assets/mood_board_tag_i_want_202605030014.jpeg");
  background-size: 365% auto;
  background-position: 50.5% 43.5%;
  border: 3px solid rgba(244, 222, 142, 0.86);
  border-radius: 3px;
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.42),
    inset 0 0 0 2px rgba(18, 31, 46, 0.42),
    inset 0 0 26px rgba(0, 0, 0, 0.34);
  transform: rotate(-4deg);
}

.reviews-marquee {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 1120px;
  overflow: hidden;
  padding-block: 8px;
  border-top: 2px solid rgba(24, 19, 13, 0.16);
  border-bottom: 2px solid rgba(24, 19, 13, 0.16);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: reviews-slide 26s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: clamp(260px, 28vw, 360px);
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 2px solid rgba(24, 19, 13, 0.2);
  background: rgba(255, 248, 225, 0.72);
  box-shadow: 0 10px 24px rgba(74, 48, 20, 0.14);
}

.review-card span {
  color: var(--rust);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card strong {
  color: var(--mustard);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.review-card p {
  margin-bottom: 0;
  color: #23180e;
  font-size: 1rem;
  line-height: 1.42;
}

@keyframes reviews-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 7px));
  }
}

.service-booking {
  display: flex;
  justify-content: center;
  padding: 22px clamp(20px, 5vw, 70px);
  background: #21170f;
  border-bottom: 1px solid rgba(248, 229, 193, 0.16);
}

.service-booking a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #171008;
  background: var(--mustard);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  background: #21170f;
  color: #f8e5c1;
  overflow-x: auto;
}

.services article {
  min-height: 290px;
  padding: clamp(26px, 5vw, 56px);
  border-top: 1px solid rgba(248, 229, 193, 0.22);
  border-right: 1px solid rgba(248, 229, 193, 0.16);
}

.services span {
  display: block;
  margin-bottom: 48px;
  color: var(--mustard);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.services h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  line-height: 1;
}

.services p {
  max-width: 340px;
  margin-bottom: 0;
  color: #dbc6a4;
  font-size: 1rem;
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  align-items: start;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(34px, 5vw, 64px) clamp(20px, 5vw, 70px) clamp(46px, 7vw, 86px);
  color: #fff0cd;
  background: linear-gradient(135deg, var(--denim), #111b20 52%, #27170f);
}

.feature-band > div {
  padding-top: clamp(8px, 2vw, 24px);
}

.feature-image-wrap {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(241, 223, 189, 0.75);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
}

.feature-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 239, 190, 0.22) 48%, transparent 62% 100%);
  transform: translateX(-125%);
  animation: image-sheen 5.8s ease-in-out infinite;
  pointer-events: none;
}

.feature-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 720px;
  object-fit: cover;
  object-position: center center;
  transform-origin: center;
  animation: image-drift 8s ease-in-out infinite;
}

.feature-band h2 {
  margin-bottom: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 28px clamp(20px, 5vw, 70px);
  color: #fff0cd;
  background: #15100b;
  border-top: 2px solid rgba(216, 170, 40, 0.5);
}

.site-footer span {
  color: var(--mustard);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 240, 205, 0.34);
  background: rgba(255, 240, 205, 0.06);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #171008;
  background: var(--mustard);
  outline: none;
}

@keyframes image-drift {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(0.96) contrast(1.02);
  }

  50% {
    transform: scale(1.045) translate3d(0, -8px, 0);
    filter: saturate(1.05) contrast(1.08);
  }
}

@keyframes image-sheen {
  0%,
  54% {
    transform: translateX(-125%);
  }

  78% {
    transform: translateX(125%);
  }

  100% {
    transform: translateX(125%);
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-video {
    object-fit: cover;
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 9, 5, 0.94) 0%, rgba(13, 9, 5, 0.5) 46%, rgba(13, 9, 5, 0.24) 100%),
      linear-gradient(90deg, rgba(13, 9, 5, 0.56), rgba(13, 9, 5, 0.08));
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.6rem, 20vw, 6.2rem);
  }

  .hours-panel {
    left: 20px;
    right: auto;
    bottom: 28px;
  }

  .splash-screen img {
    object-position: center center;
  }

  .splash-hotspot {
    top: 50%;
    width: min(54vw, 360px);
  }

  .lamp-glow {
    top: 8%;
    width: 42vw;
  }

  .splash-arrows {
    top: 50%;
    width: min(72vw, 460px);
  }

  .splash-arrow {
    width: 46px;
    height: 24px;
  }

  .intro,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature-band {
    gap: 24px;
    padding-top: 30px;
  }

  .feature-band > div {
    order: -1;
    padding-top: 0;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .services article {
    min-height: 230px;
  }

  .services span {
    margin-bottom: 28px;
  }

  .site-footer {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 92vh;
  }

  .button {
    width: 100%;
  }
}
