/* ============================================================
   Locksmith365.ca — Modern Mobile-First Stylesheet
   "Midnight Security" — deep navy-black + brass amber
   ============================================================ */

:root {
  --bg:        #0a0e17;
  --bg2:       #0f1521;
  --surface:   #141b2b;
  --surface2:  #1a2336;
  --amber:     #f6a623;
  --amber-lt:  #ffc861;
  --amber-glow: rgba(246,166,35,.35);
  --text:      #eef2f8;
  --text-mut:  #8b97ab;
  --text-dim:  #5d6880;
  --line:      rgba(255,255,255,.07);
  --line2:     rgba(255,255,255,.12);
  --green:     #2dd4a7;
  --radius:    20px;
  --radius-sm: 14px;
  --fd: 'Sora', sans-serif;
  --fb: 'Outfit', sans-serif;
  --maxw: 480px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* App-frame: constrain to phone width, center on desktop */
.app {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  box-shadow: 0 0 80px rgba(0,0,0,.6);
  overflow: hidden;
}

.wrap { padding: 0 20px; }

/* ── Ambient background glow ──────────────────── */
.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── TOP APP BAR ──────────────────────────────── */
.appbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10,14,23,.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.brand .key-badge {
  width: 32px; height: 32px;
  background: linear-gradient(145deg, var(--amber), #d9850f);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px var(--amber-glow);
}
.brand span { color: var(--amber); }

.menu-btn {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line2);
  transition: background .2s;
}
.menu-btn:active { background: var(--surface2); }
.menu-btn span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--text); border-radius: 2px;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

/* ── SLIDE-OUT MENU ───────────────────────────── */
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
  z-index: 90;
}
.drawer-scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(82%, 360px);
  background: var(--bg2);
  border-left: 1px solid var(--line2);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  z-index: 100;
  padding: 24px 22px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.drawer-close {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface);
  display: grid; place-items: center;
  font-size: 1.2rem; color: var(--text-mut);
}
.drawer-group-label {
  font-family: var(--fd);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 22px 0 8px;
}
.drawer a.dlink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mut);
  transition: background .2s, color .2s;
}
.drawer a.dlink:active { background: var(--surface); }
.drawer a.dlink.active { background: rgba(246,166,35,.1); color: var(--amber); }
.drawer a.dlink .di {
  width: 30px; text-align: center; font-size: 1.05rem;
}
.drawer-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: .98rem;
  padding: 16px 24px;
  border-radius: 16px;
  transition: transform .15s, box-shadow .2s, background .2s;
  width: 100%;
}
.btn:active { transform: scale(.97); }
.btn-amber {
  background: linear-gradient(145deg, var(--amber-lt), var(--amber));
  color: #1a1206;
  box-shadow: 0 8px 24px var(--amber-glow);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line2);
}
.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid rgba(246,166,35,.4);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  padding: 36px 20px 48px;
  overflow: hidden;
  z-index: 1;
}
.hero .glow-bg.g1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%);
  top: -80px; right: -120px;
  opacity: .8;
}
.hero .glow-bg.g2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(45,212,167,.18), transparent 70%);
  bottom: -100px; left: -120px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,212,167,.12);
  border: 1px solid rgba(45,212,167,.3);
  color: var(--green);
  font-family: var(--fd);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .03em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-pill .live {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(45,212,167,.6);
  animation: ring 1.8s infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(45,212,167,.5); }
  70% { box-shadow: 0 0 0 8px rgba(45,212,167,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,167,0); }
}
.hero h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--amber-lt), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  color: var(--text-mut);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 90%;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.hstat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
}
.hstat b {
  display: block;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--amber);
  line-height: 1;
}
.hstat span { font-size: .72rem; color: var(--text-dim); display: block; margin-top: 6px; }

/* ── SECTION SHELL ────────────────────────────── */
.section { padding: 48px 20px; position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--fd);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: var(--amber); border-radius: 2px;
}
.h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.lead { color: var(--text-mut); font-size: 1rem; line-height: 1.55; }

/* ── SERVICE CARDS (rich) ─────────────────────── */
.svc-stack { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.svc {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(135deg, var(--surface), var(--bg2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, transform .2s;
}
.svc:active { transform: scale(.98); }
.svc::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 90px; height: 90px;
  background: radial-gradient(circle at top right, var(--amber-glow), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.svc:active::after { opacity: 1; }
.svc-icn {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface2), #0d121d);
  border: 1px solid var(--line2);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.svc-body { flex: 1; min-width: 0; }
.svc-body h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 3px;
}
.svc-body p {
  font-size: .85rem;
  color: var(--text-mut);
  line-height: 1.45;
}
.svc-arrow {
  flex-shrink: 0;
  color: var(--text-dim);
  font-size: 1.3rem;
}

/* ── IMAGE FEATURE BLOCK ──────────────────────── */
.feature-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid var(--line2);
  aspect-ratio: 16/11;
  background: var(--surface);
}
.feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.78) contrast(1.05);
}
.feature-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,23,.95) 8%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.feature-img .overlay h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.feature-img .overlay p { font-size: .9rem; color: var(--text-mut); }
.img-chip {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,14,23,.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line2);
  font-family: var(--fd);
  font-weight: 600;
  font-size: .72rem;
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--amber);
}

/* ── WHY / TRUST GRID ─────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.why {
  padding: 22px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .25s;
}
.why-icn {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(246,166,35,.12);
  border: 1px solid rgba(246,166,35,.25);
  display: grid; place-items: center;
  font-size: 1.25rem;
  margin-bottom: 13px;
}
.why h4 { font-family: var(--fd); font-weight: 700; font-size: 1rem; margin-bottom: 5px; }
.why p { font-size: .82rem; color: var(--text-mut); line-height: 1.45; }

/* ── PROCESS TIMELINE ─────────────────────────── */
.timeline { margin-top: 26px; position: relative; padding-left: 8px; }
.tl-item {
  position: relative;
  padding: 0 0 26px 38px;
  border-left: 2px solid var(--line2);
}
.tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -15px; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--amber-lt), var(--amber));
  color: #1a1206;
  font-family: var(--fd);
  font-weight: 800;
  font-size: .85rem;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px var(--amber-glow);
}
.tl-item h4 { font-family: var(--fd); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.tl-item p { font-size: .87rem; color: var(--text-mut); line-height: 1.5; }

/* ── AREAS ────────────────────────────────────── */
.area-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.area {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .2s, border-color .25s;
}
.area:active { transform: scale(.98); border-color: rgba(246,166,35,.4); }
.area-pin {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--surface2), #0d121d);
  border: 1px solid var(--line2);
  display: grid; place-items: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.area-info { flex: 1; }
.area-info h4 { font-family: var(--fd); font-weight: 700; font-size: 1.02rem; }
.area-info p { font-size: .8rem; color: var(--text-dim); }
.area .area-arrow { color: var(--text-dim); font-size: 1.2rem; }

/* ── REVIEWS (horizontal scroll) ──────────────── */
.review-scroll {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin-right: -20px;
  padding-right: 20px;
  -webkit-overflow-scrolling: touch;
}
.review-scroll::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 84%;
  scroll-snap-align: start;
  background: linear-gradient(135deg, var(--surface), var(--bg2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.review .stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review .quote { font-size: .92rem; line-height: 1.55; color: var(--text); margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--amber), #d9850f);
  color: #1a1206;
  font-family: var(--fd);
  font-weight: 800;
  display: grid; place-items: center;
  font-size: .95rem;
}
.review .who b { font-family: var(--fd); font-size: .9rem; display: block; }
.review .who span { font-size: .76rem; color: var(--text-dim); }

/* ── FAQ ──────────────────────────────────────── */
.faq { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: rgba(246,166,35,.35); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 17px 18px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .98rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q .pm {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(246,166,35,.12);
  color: var(--amber);
  display: grid; place-items: center;
  font-size: 1.1rem;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--amber); color: #1a1206; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 18px 18px;
  font-size: .88rem;
  color: var(--text-mut);
  line-height: 1.6;
}

/* ── CTA BLOCK ────────────────────────────────── */
.cta-block {
  margin: 12px 20px 0;
  padding: 34px 24px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(246,166,35,.22), transparent 55%),
    linear-gradient(150deg, var(--surface2), var(--bg2));
  border: 1px solid var(--line2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block .key-float {
  position: absolute;
  font-size: 6rem;
  opacity: .06;
  top: -10px; right: -10px;
  transform: rotate(-20deg);
}
.cta-block h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 10px;
  position: relative;
}
.cta-block p { color: var(--text-mut); font-size: .95rem; margin-bottom: 22px; position: relative; }
.cta-block .btn { position: relative; }

/* ── PAGE HERO (inner) ────────────────────────── */
.page-hero {
  position: relative;
  padding: 30px 20px 38px;
  overflow: hidden;
  z-index: 1;
}
.page-hero .glow-bg {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%);
  top: -100px; right: -100px;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.page-hero h1 .hl {
  background: linear-gradient(120deg, var(--amber-lt), var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p { color: var(--text-mut); font-size: 1rem; line-height: 1.55; margin-bottom: 24px; }

/* ── CONTACT FORM ─────────────────────────────── */
.fcard {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.fcard h3 { font-family: var(--fd); font-weight: 700; font-size: 1.25rem; margin-bottom: 20px; }
.fg { margin-bottom: 15px; }
.fg label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--text-mut); margin-bottom: 7px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 14px 15px;
  font-family: var(--fb);
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-dim); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(246,166,35,.12);
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b97ab' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-ok {
  display: none;
  background: rgba(45,212,167,.12);
  border: 1px solid rgba(45,212,167,.3);
  color: var(--green);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 14px;
}

/* contact info rows */
.cinfo { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.cinfo-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.cinfo-icn {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(246,166,35,.12);
  border: 1px solid rgba(246,166,35,.25);
  display: grid; place-items: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.cinfo-row b { font-family: var(--fd); font-size: .98rem; display: block; }
.cinfo-row p { font-size: .85rem; color: var(--text-mut); }
.cinfo-row a { color: var(--amber); }

/* ── FOOTER ───────────────────────────────────── */
.footer {
  margin-top: 40px;
  padding: 36px 20px 110px;
  border-top: 1px solid var(--line);
  background: var(--bg2);
}
.footer .brand { font-size: 1.3rem; margin-bottom: 14px; }
.footer .fdesc { font-size: .88rem; color: var(--text-mut); line-height: 1.6; margin-bottom: 22px; }
.footer-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--fd); font-weight: 700; font-size: 1.1rem;
  color: var(--amber); margin-bottom: 26px;
}
.fcols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 16px; }
.fcol h5 {
  font-family: var(--fd); font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 13px;
}
.fcol a {
  display: block; font-size: .88rem; color: var(--text-mut);
  margin-bottom: 10px; transition: color .15s;
}
.fcol a:active { color: var(--amber); }
.fbottom {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .76rem; color: var(--text-dim); text-align: center;
  line-height: 1.6;
}

/* ── STICKY BOTTOM CALL BAR ───────────────────── */
.call-dock {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--maxw);
  z-index: 70;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,14,23,.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--line2);
  display: flex;
  gap: 10px;
}
.call-dock a { flex: 1; }
.call-dock .btn { padding: 15px; font-size: .95rem; }

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-pill .live { animation: none; }
}

/* ── DESKTOP: show phone frame nicely ─────────── */
@media (min-width: 481px) {
  body {
    background:
      radial-gradient(circle at 20% 10%, rgba(246,166,35,.05), transparent 40%),
      radial-gradient(circle at 80% 90%, rgba(45,212,167,.04), transparent 40%),
      var(--bg);
    padding: 0;
  }
  .app {
    margin: 0 auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
}


/* ── LOGO ─────────────────────────────────────── */
.brand { gap: 10px; }
.logo-mark { flex-shrink: 0; filter: drop-shadow(0 4px 12px var(--amber-glow)); }
.brand-word { font-family: var(--fd); font-weight: 800; letter-spacing: -.02em; }
.brand-word em { font-style: normal; color: var(--amber); }

/* ── SERVICE MAP ──────────────────────────────── */
.map-card {
  margin-top: 26px;
  background: linear-gradient(150deg, var(--surface), var(--bg2));
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 18px 14px 8px;
  overflow: hidden;
  position: relative;
}
.map-card svg { width: 100%; height: auto; display: block; }
.map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 12px;
  font-size: .78rem;
  color: var(--text-dim);
}
.map-legend .pulse-demo {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 var(--amber-glow);
  animation: ring 1.8s infinite;
}
.wait-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.wait-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color .2s, transform .15s;
}
.wait-row:active { transform: scale(.98); border-color: rgba(246,166,35,.4); }
.wait-row .wr-city {
  flex: 1;
  font-family: var(--fd);
  font-weight: 700;
  font-size: .98rem;
}
.wait-row .wr-city small {
  display: block;
  font-family: var(--fb);
  font-weight: 400;
  font-size: .76rem;
  color: var(--text-dim);
}
.wait-chip {
  font-family: var(--fd);
  font-weight: 700;
  font-size: .82rem;
  padding: 6px 13px;
  border-radius: 100px;
  white-space: nowrap;
}
.wait-fast { background: rgba(45,212,167,.13); border: 1px solid rgba(45,212,167,.35); color: var(--green); }
.wait-mid  { background: rgba(246,166,35,.13); border: 1px solid rgba(246,166,35,.35); color: var(--amber); }
.wait-far  { background: rgba(139,151,171,.13); border: 1px solid rgba(139,151,171,.3); color: var(--text-mut); }
@keyframes mapDash { to { stroke-dashoffset: -14; } }
.map-route { stroke-dasharray: 3 4; animation: mapDash 1.6s linear infinite; }
@media (prefers-reduced-motion: reduce) {
  .map-route { animation: none; }
  .map-legend .pulse-demo { animation: none; }
}

/* ── NEIGHBOURHOOD CHIPS ──────────────────────── */
.hood-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.hood-chip {
  font-family: var(--fb);
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-mut);
  background: var(--surface);
  border: 1px solid var(--line2);
  padding: 8px 15px;
  border-radius: 100px;
  transition: border-color .2s, color .2s;
}
.hood-chip:hover { border-color: rgba(246,166,35,.4); color: var(--amber); }
