:root {
  --bg: #090909;
  --bg-soft: #101010;
  --surface: #171717;
  --surface-strong: #202020;
  --text: #fffaf4;
  --muted: #c4beb8;
  --soft: #8f8a86;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --coral: #ff7355;
  --coral-light: #ff9a77;
  --amber: #ffae43;
  --mint: #5ce0aa;
  --cyan: #43c8d8;
  --violet: #c87bea;
  --danger: #ff5d68;
  --max: 1240px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: white;
  color: #111;
  font-weight: 800;
}

.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: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(9, 9, 9, 0.18);
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

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

.site-nav a {
  color: rgba(255, 250, 244, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
}

.site-nav .nav-cta {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 6px;
  background: var(--coral);
  color: #120c08;
  font-weight: 900;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--coral-light);
  color: #120c08;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(9, 9, 9, 0.58);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: white;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  height: calc(100svh - 48px);
  max-height: 880px;
  overflow: hidden;
  isolation: isolate;
  background: #0c0b0b url("assets/hero-barapp.webp") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 38%, rgba(5, 5, 5, 0.28) 72%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.44) 0%, transparent 35%);
}

.hero-content {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 66px;
}

.eyebrow,
.kicker {
  margin-bottom: 16px;
  color: var(--coral-light);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 4px;
  font-size: 88px;
  line-height: 0.98;
  font-weight: 950;
}

.hero-statement {
  max-width: 790px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 40px;
  line-height: 1.08;
  font-weight: 850;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

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

.button:focus-visible,
.tab-button:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(92, 224, 170, 0.78);
  outline-offset: 3px;
}

.button-primary {
  background: var(--coral);
  color: #130b07;
}

.button-primary:hover {
  background: var(--coral-light);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(9, 9, 9, 0.48);
  color: white;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

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

.button-secondary:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.button-dark {
  background: #111;
  color: white;
}

.button-dark:hover {
  background: #232323;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 250, 244, 0.7);
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.hero-trust li {
  position: relative;
  padding-left: 15px;
}

.hero-trust li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-scroll {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 244, 0.74);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.hero-scroll span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.origin-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 17px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--coral);
  color: #150b08;
}

.origin-band p {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-heading-wide {
  max-width: 970px;
}

.section-heading h2,
.local-copy h2,
.start-main h2 {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 920;
}

.section-heading > p:last-child,
.local-copy > p,
.start-main > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-section {
  padding-bottom: 72px;
}

.dashboard-figure {
  margin: 0;
}

.dashboard-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.dashboard-figure figcaption {
  margin-top: 12px;
  color: var(--soft);
  font-size: 12px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.workflow li {
  min-height: 210px;
  padding: 28px 30px 30px 0;
}

.workflow li + li {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.step {
  display: block;
  margin-bottom: 28px;
  color: var(--coral-light);
  font-size: 13px;
  font-weight: 900;
}

.workflow h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.workflow p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--muted);
}

.experiences-section {
  width: 100%;
  max-width: none;
  padding: 104px max(22px, calc((100vw - var(--max)) / 2));
  background: #f1eee9;
  color: #171513;
}

.experiences-section .kicker {
  color: #bd371f;
}

.experience-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 44px;
  padding: 4px;
  border: 1px solid rgba(23, 21, 19, 0.18);
  border-radius: 8px;
  background: rgba(23, 21, 19, 0.05);
}

.tab-button {
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #5c5751;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
}

.tab-button.is-active {
  background: #171513;
  color: white;
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(580px, 1.16fr);
  gap: 78px;
  align-items: center;
}

.experience-panel[hidden] {
  display: none;
}

.experience-label {
  margin-bottom: 12px;
  color: #bd371f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-copy h3 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.13;
}

.experience-copy > p:not(.experience-label) {
  color: #5d5852;
  font-size: 17px;
  line-height: 1.65;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 25px;
  color: #393531;
  font-weight: 720;
}

.check-list li::before {
  position: absolute;
  top: 0.49em;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #169669;
  border-left: 2px solid #169669;
  transform: rotate(-45deg);
  content: "";
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: #b93e29;
  font-weight: 900;
  text-decoration: none;
}

.phone-gallery {
  position: relative;
  min-height: 610px;
}

.phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid #171513;
  border-radius: 34px;
  background: #050505;
  box-shadow: 0 26px 70px rgba(20, 17, 14, 0.28);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  z-index: 3;
  top: 8px;
  left: 28%;
  width: 274px;
  aspect-ratio: 0.49 / 1;
}

.phone-secondary,
.phone-tertiary {
  z-index: 2;
  top: 68px;
  width: 230px;
  aspect-ratio: 0.49 / 1;
  opacity: 0.94;
}

.phone-secondary {
  left: 2%;
  transform: rotate(-4deg);
}

.phone-tertiary {
  right: 2%;
  transform: rotate(4deg);
}

.client-gallery .phone img {
  object-fit: cover;
}

.venue-section {
  padding-bottom: 94px;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.venue-card {
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.venue-card::before {
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 38px;
  background: var(--coral);
  content: "";
}

.venue-restaurant::before {
  background: var(--mint);
}

.venue-takeaway::before {
  background: var(--cyan);
}

.venue-special::before {
  background: var(--violet);
}

.venue-number {
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
}

.venue-card h3 {
  min-height: 58px;
  margin-bottom: 15px;
  font-size: 23px;
  line-height: 1.2;
}

.venue-card > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.feature-index > div {
  padding: 26px 28px 0 0;
}

.feature-index > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.feature-index p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-index .feature-title {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.local-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 70px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 92px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--amber);
  color: #1c1007;
}

.local-story .kicker {
  color: #5f2b0e;
}

.local-copy {
  max-width: 720px;
}

.local-copy h2 {
  font-size: 54px;
}

.local-copy > p {
  color: rgba(28, 16, 7, 0.76);
}

.local-copy .button {
  margin-top: 28px;
}

.demo-device {
  width: min(320px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 8px solid #17110d;
  border-radius: 36px;
  background: #090909;
  box-shadow: 0 28px 70px rgba(75, 38, 12, 0.3);
}

.demo-device video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.start-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 70px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
}

.start-main {
  max-width: 730px;
}

.start-facts {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.start-facts li {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
}

.start-facts li + li {
  border-top: 1px solid var(--line);
}

.start-facts strong {
  color: var(--coral-light);
  font-size: 26px;
}

.start-facts span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.faq-section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 880px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 850;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  content: "+";
  color: var(--coral-light);
  font-size: 26px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 46px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.footer-brand strong {
  display: block;
  font-size: 17px;
}

.footer-brand p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

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

  .hero h1 {
    font-size: 76px;
  }

  .hero-statement {
    font-size: 35px;
  }

  .experience-panel {
    grid-template-columns: minmax(270px, 0.9fr) minmax(500px, 1.1fr);
    gap: 36px;
  }

  .phone-gallery {
    min-height: 550px;
  }

  .phone-main {
    width: 246px;
  }

  .phone-secondary,
  .phone-tertiary {
    width: 200px;
  }

  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-card {
    min-height: 250px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 18px;
    background: rgba(9, 9, 9, 0.78);
    backdrop-filter: blur(16px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(9, 9, 9, 0.98);
    transition: max-height 180ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100svh - 68px);
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    padding: 18px 22px;
    border-top: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav .nav-cta {
    margin: 14px 18px 20px;
    padding: 13px 16px;
    border: 0;
    text-align: center;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - 34px);
    max-height: 820px;
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.84) 60%, rgba(5, 5, 5, 0.36) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.56), transparent 45%);
  }

  .hero-content {
    width: min(100% - 36px, 720px);
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero-statement {
    font-size: 32px;
  }

  .hero-copy {
    max-width: 580px;
    font-size: 17px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    width: min(100% - 36px, var(--max));
    padding: 80px 0;
  }

  .section-heading h2,
  .local-copy h2,
  .start-main h2 {
    font-size: 40px;
  }

  .workflow,
  .feature-index {
    grid-template-columns: 1fr;
  }

  .workflow li {
    min-height: auto;
    padding: 24px 0;
  }

  .workflow li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step {
    margin-bottom: 12px;
  }

  .experiences-section {
    padding: 80px 18px;
  }

  .experience-panel {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 650px;
  }

  .phone-gallery {
    width: min(100%, 620px);
    min-height: 570px;
    margin: 10px auto 0;
  }

  .phone-main {
    left: calc(50% - 123px);
  }

  .local-story,
  .start-section {
    grid-template-columns: 1fr;
  }

  .local-story {
    width: 100%;
    padding: 80px 22px;
  }

  .local-copy h2 {
    font-size: 44px;
  }

  .demo-device {
    width: min(310px, 90%);
  }

  .start-section {
    gap: 50px;
  }

  .feature-index > div {
    padding: 22px 0;
  }

  .feature-index > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 680px;
    height: calc(100svh - 24px);
    max-height: 760px;
    align-items: flex-end;
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 53%, rgba(5, 5, 5, 0.34) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.2));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 108px 0 46px;
  }

  .eyebrow,
  .kicker {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-statement {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .start-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .start-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 7px;
  }

  .origin-band {
    display: grid;
    gap: 4px;
    min-height: 84px;
    padding: 15px 17px;
  }

  .origin-band p:last-child {
    font-size: 12px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .local-copy h2,
  .start-main h2 {
    font-size: 33px;
  }

  .section-heading > p:last-child,
  .local-copy > p,
  .start-main > p {
    font-size: 16px;
  }

  .dashboard-figure {
    width: 100%;
  }

  .dashboard-figure img {
    width: 100%;
    max-width: 100%;
  }

  .experiences-section {
    padding: 66px 16px;
  }

  .experience-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .tab-button {
    padding-inline: 10px;
    font-size: 13px;
  }

  .experience-copy h3 {
    font-size: 29px;
  }

  .phone-gallery {
    min-height: 450px;
  }

  .phone {
    border-width: 5px;
    border-radius: 26px;
  }

  .phone-main {
    left: calc(50% - 91px);
    width: 182px;
  }

  .phone-secondary,
  .phone-tertiary {
    top: 52px;
    width: 152px;
  }

  .phone-secondary {
    left: 0;
  }

  .phone-tertiary {
    right: 0;
  }

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

  .venue-card {
    min-height: auto;
    padding: 23px;
  }

  .venue-card::before {
    margin-bottom: 26px;
  }

  .venue-card h3 {
    min-height: auto;
  }

  .local-story {
    padding: 66px 16px;
  }

  .local-copy h2 {
    font-size: 36px;
  }

  .start-facts li {
    grid-template-columns: 1fr 1fr;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 38px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal {
    grid-column: 1;
  }
}

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

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