:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8de;
  --bg-muted: #e4ddd2;
  --ink: #1a1614;
  --ink-soft: #3a322c;
  --muted: #8a7a6a;
  --faint: #c0b0a0;
  --rule: #d8cfc4;
  --rule-strong: #c8b8a0;
  --red: #8a2010;
  --gold: #7a5a20;
  --green: #2a5a30;

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ff-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shell-max: 1160px;
  --shell-pad: 52px;
  --page-gutter: 0px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-inline: var(--page-gutter);
}

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

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

ul {
  list-style: none;
}

hr {
  border: 0;
}

/* ── Layout primitives ─────────────────────────────────────── */
.container {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-pad);
}

.rule {
  height: 1px;
  background: var(--rule);
  margin: 28px 0;
}

.rule--inset {
  margin: 8px 14px;
}

.rule--center {
  max-width: 400px;
  margin: 0 auto 32px;
}

.kicker {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.visually-hidden {
  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: absolute;
  top: -40px;
  left: 12px;
  z-index: 200;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  border-radius: 2px;
}

.skip-link:focus {
  top: 12px;
}

/* ── Focus styles ──────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
.store-btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ── Env badge ─────────────────────────────────────────────── */
.env-badge {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 150;
  padding: 6px 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(26, 22, 20, 0.18);
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav__inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-pad);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.wordmark--small {
  font-size: 18px;
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.2px;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: background 0.15s ease;
}

.nav__cta:hover {
  background: var(--ink-soft);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 580px;
}

.hero__copy {
  padding: 40px 0;
}

.hero__headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  font-size: clamp(48px, 7.5vw, 82px);
  line-height: 0.9;
  letter-spacing: -1.5px;
  text-wrap: balance;
  margin: 22px 0 0;
}

.hero__line {
  display: block;
}

.hero__line--bold {
  font-weight: 700;
  font-style: normal;
}

.hero__line--italic-light {
  font-weight: 300;
  font-style: italic;
}

.hero__lede {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 30px;
}

.hero__footnote {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 20px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-highlights li {
  border: 1px solid var(--rule-strong);
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink-soft);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 999px;
}

.hero__phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

/* ── Store buttons ─────────────────────────────────────────── */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.store-buttons--center {
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--ink);
  padding: 11px 22px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.store-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

.store-btn:hover svg {
  fill: var(--bg);
}

.store-btn svg {
  width: 17px;
  height: 17px;
  fill: var(--ink);
  transition: fill 0.15s ease;
}

.store-btn--disabled {
  border-color: var(--rule-strong);
  color: var(--muted);
  cursor: not-allowed;
}

.store-btn--disabled:hover {
  background: transparent;
  color: var(--muted);
}

.store-btn--disabled:hover svg {
  fill: var(--muted);
}

.store-btn--disabled svg {
  fill: var(--muted);
}

.store-btn__label {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-btn__sub {
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* ── Stats bar ─────────────────────────────────────────────── */
.stats {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.stats__row {
  display: flex;
  margin: 0;
}

.stats__row li {
  flex: 1;
  padding: 22px 12px;
  text-align: center;
  border-right: 1px solid var(--rule);
}

.stats__row li:last-child {
  border-right: 0;
}

.stats__value {
  display: block;
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.stats__label {
  display: block;
  font-family: var(--ff-body);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ── Feature row ───────────────────────────────────────────── */
.feature {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.feature--alt {
  background: var(--bg-alt);
}

.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 96px;
}

.feature--reverse .feature__inner {
  grid-template-areas: "copy phone";
}

.feature--reverse .feature__copy {
  grid-area: copy;
}

.feature--reverse .feature__phone {
  grid-area: phone;
}

.feature__phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature__copy {
  padding: 0 24px;
  max-width: 480px;
}

.feature__headline {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 58px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  margin-top: 18px;
}

.feature__line {
  display: block;
}

.feature__line--bold {
  font-weight: 700;
  font-style: normal;
}

.feature__body {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
}

/* ── Download CTA ──────────────────────────────────────────── */
.download-cta {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}

.download-cta__inner {
  text-align: center;
  padding-block: 100px;
  max-width: var(--shell-max);
  margin: 0 auto;
}

.download-cta__inner > .kicker {
  margin-bottom: 24px;
}

.download-cta__headline {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.download-cta__line {
  display: block;
}

.download-cta__line--bold {
  font-weight: 700;
  font-style: normal;
}

.download-cta__body {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 24px var(--shell-pad);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__domain {
  font-family: var(--ff-body);
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.footer__copy {
  font-family: var(--ff-body);
  font-size: 11px;
  color: var(--faint);
}

/* ── Phone frame ───────────────────────────────────────────── */
.phone-frame {
  --pf-w: 232px;
  --pf-r: 27px;
  width: var(--pf-w);
  height: calc(var(--pf-w) * 2.1);
  background: #1c1814;
  border-radius: var(--pf-r);
  padding: 10px 8px;
  flex-shrink: 0;
  box-shadow: 0 40px 100px rgba(26, 22, 20, 0.22), 0 8px 24px rgba(26, 22, 20, 0.12);
  position: relative;
}

.phone-frame--lg {
  --pf-w: 264px;
  --pf-r: 30px;
}

.phone-frame--md {
  --pf-w: 232px;
  --pf-r: 27px;
}

.phone-frame--tilt {
  transform: perspective(1000px) rotateY(-11deg) rotateX(2.5deg);
}

.phone-frame__btn {
  position: absolute;
  background: #141010;
}

.phone-frame__btn--volA {
  left: -3px;
  top: 22%;
  width: 3px;
  height: 22px;
  border-radius: 2px 0 0 2px;
}

.phone-frame__btn--volB {
  left: -3px;
  top: calc(22% + 30px);
  width: 3px;
  height: 22px;
  border-radius: 2px 0 0 2px;
}

.phone-frame__btn--power {
  right: -3px;
  top: 28%;
  width: 3px;
  height: 34px;
  border-radius: 0 2px 2px 0;
}

.phone-frame__screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: calc(var(--pf-r) - 4px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-frame__statusbar {
  height: 30px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 14px 5px;
}

.phone-frame__time {
  font-family: var(--ff-mono);
  font-size: 8px;
  font-weight: 500;
  color: var(--ink);
}

.phone-frame__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 13px;
  background: #1c1814;
  border-radius: 7px;
}

.phone-frame__signal {
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
}

.phone-frame__signal i {
  display: block;
  width: 2.5px;
  background: var(--ink);
  border-radius: 1px;
}

.phone-frame__signal i.phone-frame__signal-faint {
  background: var(--faint);
}

.phone-frame__battery {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 6px;
  border: 1px solid var(--ink);
  border-radius: 1.5px;
  margin-left: 3px;
  padding: 0 1px;
}

.phone-frame__battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 4px;
  background: var(--ink);
  border-radius: 0 1px 1px 0;
}

.phone-frame__battery-fill {
  display: block;
  width: 75%;
  height: 80%;
  background: var(--ink);
  border-radius: 0.5px;
}

.phone-frame__content {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* ── App screens (mockups inside phone frames) ─────────────── */
.screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--ff-body);
}

/* Browse */
.screen--browse .screen__head {
  padding: 10px 14px 0;
}

.screen__date {
  font-family: var(--ff-mono);
  font-size: 7px;
  color: var(--faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.screen__title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}

.screen__search {
  margin: 8px 14px 6px;
  background: #ede8df;
  border-radius: 5px;
  height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: var(--faint);
}

.screen__search span {
  font-size: 9px;
}

.screen__filters {
  padding: 0 14px 8px;
  display: flex;
  gap: 5px;
}

.chip {
  padding: 3px 9px;
  flex-shrink: 0;
  border: 1px solid var(--rule);
  font-size: 8px;
  font-weight: 500;
  color: var(--muted);
}

.chip--active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.screen__section {
  padding: 3px 14px 5px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--ff-mono);
  font-size: 7px;
  color: var(--faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.screen__list {
  flex: 1;
  overflow: hidden;
}

.screen__list li {
  display: flex;
  gap: 9px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(212, 203, 191, 0.4);
  align-items: center;
}

.screen__list li > div {
  flex: 1;
  min-width: 0;
}

.rest__name {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rest__meta {
  font-size: 8px;
  color: var(--muted);
  margin-top: 1px;
}

.rest__price {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}

.screen__tabs {
  height: 40px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px;
  flex-shrink: 0;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--ff-body);
  font-size: 6px;
  color: var(--faint);
  font-weight: 400;
}

.tab i {
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.tab--active {
  color: var(--ink);
  font-weight: 600;
}

/* Menu */
.screen--menu {
  height: 100%;
}

.menu__hero {
  position: relative;
  height: 72px;
  flex-shrink: 0;
}

.menu__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 20, 0.8), transparent 55%);
}

.menu__hero-text {
  position: absolute;
  bottom: 9px;
  left: 14px;
  z-index: 1;
  color: #faf7f2;
}

.menu__name {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}

.menu__sub {
  font-size: 8px;
  color: rgba(250, 247, 242, 0.65);
  margin-top: 2px;
}

.menu__pricetag {
  padding: 9px 14px 6px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pill {
  background: var(--ink);
  color: var(--bg);
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pill--solid {
  display: block;
  text-align: center;
  padding: 8px 10px;
  font-size: 10px;
  letter-spacing: 0.3px;
}

.menu__detail {
  font-size: 8px;
  color: var(--faint);
}

.menu__courses {
  flex: 1;
  padding: 0 14px;
  overflow: hidden;
}

.course {
  margin-bottom: 6px;
}

.course__label {
  font-family: var(--ff-mono);
  font-size: 7px;
  color: var(--faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.course__title {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.course__desc {
  font-size: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.menu__cta {
  padding: 6px 14px 10px;
  flex-shrink: 0;
}

/* Reserve */
.screen--reserve {
  padding: 0;
}

.reserve__back {
  padding: 8px 14px 6px;
  font-size: 9px;
  color: var(--muted);
}

.reserve__title {
  padding: 0 14px 4px;
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
}

.reserve__sub {
  padding: 0 14px 8px;
  font-size: 8px;
  color: var(--muted);
}

.reserve__label {
  padding: 8px 14px 6px;
  font-family: var(--ff-mono);
  font-size: 7px;
  color: var(--faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.reserve__grid {
  padding: 0 14px;
  display: grid;
  gap: 4px;
}

.reserve__grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.reserve__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.cell {
  padding: 5px 2px;
  text-align: center;
  border: 1px solid var(--rule);
  font-size: 8px;
  font-weight: 500;
  color: var(--muted);
}

.cell--active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  font-weight: 600;
}

.reserve__party {
  margin: 8px 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
}

.reserve__step {
  font-size: 16px;
  color: var(--faint);
}

.reserve__step--ink {
  color: var(--ink);
}

.reserve__count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reserve__count strong {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.reserve__count small {
  font-size: 7px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 400;
}

.reserve__total {
  margin: 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 9px;
  color: var(--muted);
}

.reserve__total strong {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

/* Map */
.screen--map .map__head {
  padding: 8px 14px 6px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.map__title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}

.map__sub {
  font-size: 8px;
  color: var(--muted);
  margin-top: 2px;
}

.map__toggle {
  font-size: 8px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 3px 8px;
}

.map__canvas {
  flex: 1;
  margin: 0 14px 6px;
  background: #e8e3d8;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 100px;
}

.map__grid,
.map__streets {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map__grid line {
  stroke: var(--rule);
  stroke-width: 0.5;
  opacity: 0.5;
}

.map__street--major {
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 4;
}

.map__street--minor {
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2.5;
}

.map__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(26, 22, 20, 0.22);
}

.map__pin--filled {
  background: var(--ink);
  color: var(--bg);
}

.map__me {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: #4a8adc;
  border-radius: 50%;
  border: 2.5px solid white;
  box-shadow: 0 0 0 5px rgba(74, 138, 220, 0.18);
}

.map__list {
  border-top: 1px solid var(--rule);
}

.map__list li {
  display: flex;
  gap: 9px;
  padding: 7px 14px;
  align-items: center;
  border-bottom: 1px solid rgba(212, 203, 191, 0.4);
}

.map__list li:last-child {
  border-bottom: 0;
}

.map__list li > div {
  flex: 1;
  min-width: 0;
}

/* ── Restaurant "dot" thumbnails ───────────────────────────── */
.dot {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  flex-shrink: 0;
  background-color: #b86843;
  background-image: radial-gradient(ellipse 65% 55% at 60% 40%, #d99570, transparent);
}

.map__list .dot,
.screen--map .dot {
  width: 28px;
  height: 28px;
  border-radius: 3px;
}

.dot--terracotta {
  background-color: #b86843;
  background-image: radial-gradient(ellipse 65% 55% at 60% 40%, #d99570, transparent);
}

.dot--slate {
  background-color: #2a3a52;
  background-image: radial-gradient(ellipse 65% 55% at 60% 40%, #5b7090, transparent);
}

.dot--burgundy {
  background-color: #5a1a18;
  background-image: radial-gradient(ellipse 65% 55% at 60% 40%, #b34030, transparent);
}

.dot--amber {
  background-color: #8a6020;
  background-image: radial-gradient(ellipse 65% 55% at 60% 40%, #d8a040, transparent);
}

.dot--olive {
  background-color: #4a5a28;
  background-image: radial-gradient(ellipse 65% 55% at 60% 40%, #8aa050, transparent);
}

.dot--teal {
  background-color: #1f4a4a;
  background-image: radial-gradient(ellipse 65% 55% at 60% 40%, #4d8a8a, transparent);
}

/* When .dot is the menu hero panel, it should fill instead of being a small box */
.menu__hero.dot {
  width: auto;
  height: 72px;
  border-radius: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --shell-pad: 32px;
  }

  .hero__inner,
  .feature__inner {
    gap: 40px;
  }

  .feature__inner {
    padding-block: 72px;
  }
}

@media (max-width: 768px) {
  :root {
    --shell-pad: 24px;
    --page-gutter: clamp(14px, 4vw, 22px);
  }

  .feature,
  .download-cta {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
  }

  .nav__inner {
    height: 56px;
  }

  .nav__links {
    display: none;
  }

  .hero__inner,
  .feature__inner,
  .feature--reverse .feature__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "phone" "copy";
    gap: 32px;
    padding-block: 56px;
    min-height: 0;
  }

  .feature--reverse .feature__copy,
  .feature__copy {
    grid-area: copy;
    padding: 0;
    text-align: left;
  }

  .feature--reverse .feature__phone,
  .feature__phone {
    grid-area: phone;
  }

  .hero__phone-wrap {
    padding: 0;
  }

  .hero__copy {
    padding: 0;
  }

  .stats__row {
    flex-wrap: wrap;
  }

  .stats__row li {
    flex: 1 1 50%;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .stats__row li:nth-child(odd) {
    border-right: 1px solid var(--rule);
  }

  .stats__row li:nth-child(n + 3) {
    border-bottom: 0;
  }

  .download-cta__inner {
    padding-block: 72px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .nav__cta {
    padding: 0 12px;
    font-size: 11px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .store-buttons--center .store-btn {
    justify-content: center;
  }

  .stats__row li {
    padding: 18px 8px;
  }

  .stats__value {
    font-size: 22px;
  }

  .phone-frame--lg {
    --pf-w: 220px;
    --pf-r: 25px;
  }

  .phone-frame--md {
    --pf-w: 200px;
    --pf-r: 23px;
  }
}

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

  .phone-frame--tilt {
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
