/* Shop on Maps — one-page marketing site
   Workhorse UI. Maps in a working shop. No boutique serif. */

:root {
  --white: #ffffff;
  --bg: #eef1f4;
  --paper: #f7f8fa;
  --ink: #111315;
  --charcoal: #1a1d21;
  --muted: #5a616b;
  --line: #d5dae0;
  --line-strong: #b8bfc8;
  --maps-green: #188038;
  --maps-green-dark: #137333;
  --maps-green-soft: #e6f4ea;
  --maps-blue: #1a73e8;
  --maps-blue-dark: #1558c0;
  --pin: #0d3b66;
  --amber: #0e4a8c;
  --amber-hover: #0a3768;
  --star: #f9ab00;
  --danger-soft: #fce8e6;
  --shadow: 0 18px 50px rgba(17, 19, 21, 0.16);
  --shadow-phone: 0 22px 48px rgba(17, 19, 21, 0.22);
  --radius: 14px;
  --header-h: 60px;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Inter Tight", "Inter", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Menlo, Consolas, monospace;
  --map-grid:
    linear-gradient(rgba(26, 115, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 115, 232, 0.07) 1px, transparent 1px);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--maps-blue);
}

a:hover {
  color: var(--maps-blue-dark);
}

:focus-visible {
  outline: 3px solid var(--maps-blue);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.2) blur(10px);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

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

.pin {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: block;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--amber);
  color: #fff;
  font: 700 0.95rem/1.2 var(--sans);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: var(--amber-hover);
  color: #fff;
}

.btn-lg {
  min-height: 54px;
  padding: 14px 22px;
  font-size: 1.02rem;
}

.header-cta {
  min-height: 44px;
  padding: 8px 11px;
  font-size: 0.8rem;
  max-width: 52vw;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .header-cta {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.92rem;
  }
}

/* Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: clip;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(238, 241, 244, 0.88), rgba(238, 241, 244, 0.92)),
    var(--map-grid);
  background-size: auto, 36px 36px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cpath fill='none' stroke='%231a73e8' stroke-opacity='0.07' stroke-width='1.2' d='M-10 70 H250 M-10 150 H250 M40 -10 V250 M170 -10 V250 M0 110 C60 90 90 140 140 120 S210 80 250 100 M20 200 C80 170 120 220 180 190'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 14px 0 0;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.lede-support {
  margin: 0 0 14px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lede {
  margin: 0 0 14px;
  max-width: 34rem;
  color: var(--charcoal);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.secondary {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}

.secondary a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.hero-van {
  margin: 16px 0 0;
  border-radius: 12px;
  overflow: hidden;
  background: #d5dae0;
}
.hero-van img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 60%;
}

@media (min-width: 960px) {
  .hero-van img {
    height: 240px;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.example-label {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.proof {
  display: grid;
  gap: 10px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.proof span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--charcoal);
}

.dot {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--maps-green);
  flex: 0 0 9px;
}

@media (min-width: 720px) {
  .proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .hero .wrap {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    padding: 16px 0 0;
    column-gap: 24px;
  }

  .hero-copy {
    padding-top: 6px;
    padding-bottom: 8px;
  }

  .hero-visual {
    justify-content: flex-end;
    padding-bottom: 0;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .proof {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
}

/* Phone / Maps UI
   ========================================================================== */

.phone {
  width: min(340px, 100%);
  background: #111315;
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
}

.phone-screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  min-height: 0;
}

.hero .phone-screen {
  max-height: 520px;
}

.phone-sm {
  width: min(290px, 100%);
}

.phone-sm .phone-screen {
  min-height: 520px;
}

.status {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
}

.maps-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f3f4;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.cover {
  position: relative;
  height: 118px;
  overflow: hidden;
}

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

.cover.stale img {
  filter: grayscale(0.45) contrast(0.9) brightness(0.92);
}

.cover-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(17, 19, 21, 0.78);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
}

.gbp {
  padding: 10px 12px 14px;
}

.gbp h3 {
  margin: 0 0 4px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.meta,
.hours,
.review-meta,
.post-meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.stars {
  color: var(--star);
  letter-spacing: 0.02em;
}

.hours.open {
  margin: 6px 0 10px;
  color: var(--maps-green);
  font-weight: 700;
}

.hours.dead {
  margin: 6px 0 10px;
  color: #b3261e;
  font-weight: 700;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 52px;
  border-radius: 12px;
  background: #e8f0fe;
  color: var(--maps-blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.action.call {
  background: var(--maps-blue);
  color: #fff;
}

.action.ghost {
  background: #f1f3f4;
  color: var(--muted);
}

.block-title {
  margin: 0 0 8px;
  padding-top: 10px;
  border-top: 1px solid #e8eaed;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.post,
.review,
.reply {
  padding: 8px 0 2px;
}

.post p,
.review p,
.reply p {
  margin: 6px 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
}

.who {
  font-size: 0.78rem;
  font-weight: 700;
}

.reply {
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  background: var(--paper);
}

.reply .who {
  color: var(--maps-green-dark);
}

.empty-note {
  margin: 0;
  padding: 8px;
  border-radius: 8px;
  background: #f1f3f4;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Photos
   ========================================================================== */

.photos {
  padding: 28px 0 8px;
  background: var(--white);
}

.photo-grid {
  display: grid;
  gap: 12px;
}

.photo-card {
  margin: 0;
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.photo-card figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

@media (min-width: 800px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-card img {
    height: 240px;
  }
}

/* Problem + compare
   ========================================================================== */

.problem {
  padding: 40px 0 20px;
}

.problem h2,
.offer h2,
.how h2,
.pricing h2,
.faq h2,
.close h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.lead {
  margin: 0 0 22px;
  max-width: 42rem;
  color: var(--charcoal);
}

.compare {
  padding: 8px 0 48px;
}

.compare-grid {
  display: grid;
  gap: 22px;
}

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

.badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge.bad {
  background: var(--danger-soft);
  color: #8c1d18;
}

.badge.good {
  background: var(--maps-green-soft);
  color: var(--maps-green-dark);
}

@media (min-width: 860px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Offer
   ========================================================================== */

.offer {
  padding: 20px 0 40px;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.jobs {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: job;
}

.jobs li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.jobs li::before {
  counter-increment: job;
  content: counter(job);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.jobs h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.jobs p {
  margin: 0;
  color: var(--charcoal);
}

.fine-print {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--maps-green);
  background: #fff;
  font-size: 0.98rem;
}

.samples {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.sample {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.sample h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.sample .example-label {
  text-align: left;
  margin: 0 0 10px;
}

.sample-post,
.sample-reply {
  border: 1px solid #e8eaed;
  border-radius: 10px;
  padding: 12px;
  background: var(--paper);
}

.sample-post p,
.sample-reply p {
  margin: 8px 0 0;
}

@media (min-width: 800px) {
  .jobs {
    grid-template-columns: 1fr;
  }

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

/* How
   ========================================================================== */

.how {
  padding: 44px 0;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps li::before {
  counter-increment: step;
  content: "Step " counter(step);
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.steps p {
  margin: 0;
  color: var(--charcoal);
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing / invoice
   ========================================================================== */

.pricing {
  padding: 20px 0 48px;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.invoice-grid {
  display: grid;
  gap: 16px;
}

.invoice {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(17, 19, 21, 0.06);
}

.invoice.hero-price {
  border-color: var(--charcoal);
  box-shadow: var(--shadow);
}

.invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 12px;
  border-bottom: 2px solid var(--ink);
}

.invoice-head strong {
  display: block;
  font-size: 1.05rem;
}

.invoice-head span {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.lines {
  margin: 0;
  padding: 8px 18px 12px;
}

.lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dotted var(--line-strong);
  font-size: 0.95rem;
}

.lines dt {
  color: var(--charcoal);
}

.lines dd {
  margin: 0;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 18px 8px;
  background: #111315;
  color: #fff;
}

.total b {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 2.6rem);
  letter-spacing: -0.03em;
}

.invoice-note {
  margin: 0;
  padding: 12px 18px 16px;
  font-size: 0.92rem;
}

.invoice.hero-price .invoice-note {
  background: #fff8ef;
}

@media (min-width: 800px) {
  .invoice-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}

/* FAQ
   ========================================================================== */

.faq {
  padding: 44px 0;
}

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

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 2px;
  font-weight: 750;
  font-size: 1.05rem;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 16px;
  max-width: 42rem;
  color: var(--charcoal);
}

/* Close
   ========================================================================== */

.close {
  padding: 48px 0;
  background: var(--charcoal);
  color: #fff;
}

.close h2,
.close .lead,
.close .kicker {
  color: #fff;
}

.close .lead {
  opacity: 0.92;
}

.close .secondary {
  color: #fff;
}

.close .secondary a {
  color: #fff;
}

.close-need {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #d7dbe0;
  font-size: 0.95rem;
}

.close-need li {
  padding: 3px 0;
}

.close-need li::before {
  content: "→ ";
  color: #f3b06a;
}


/* Lead form (close section)
   ========================================================================== */

.close .lead-form {
  margin-top: 22px;
  max-width: 34rem;
}

.form-success {
  margin: 0 0 18px;
  max-width: 34rem;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--maps-green-soft);
  color: #0f3d1f;
  border: 1px solid #a8d5b5;
  font-weight: 600;
}

.lead-form .hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
  }
}

.form-row {
  margin: 0 0 14px;
}

.form-row label {
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f3f5f7;
}

.form-row .hint {
  font-weight: 500;
  color: #c5cad1;
  font-size: 0.88rem;
}

.form-row input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #3a4048;
  border-radius: 10px;
  background: #1f2429;
  color: #fff;
  font: 500 1rem/1.3 var(--sans);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-row input::placeholder {
  color: #8b929b;
}

.form-row input:hover {
  border-color: #5a616b;
}

.form-row input:focus {
  outline: none;
  border-color: #7eb6ff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.35);
}

.maps-help {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7dbe0;
  font-size: 0.92rem;
}

.maps-help summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
}

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

.maps-help summary::before {
  content: "▸ ";
  color: #f3b06a;
}

.maps-help[open] summary::before {
  content: "▾ ";
}

.maps-help ol {
  margin: 10px 0 2px;
  padding-left: 1.25rem;
}

.maps-help li {
  margin: 0 0 6px;
  line-height: 1.45;
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
}

@media (min-width: 560px) {
  .lead-form .btn {
    width: auto;
    min-width: 16rem;
  }
}

.close .form-secondary {
  margin-top: 18px;
}

/* Footer
   ========================================================================== */

.site-footer {
  padding: 22px 0;
  background: #111315;
  color: #c5cad1;
  font-size: 0.92rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
}

.site-footer a {
  color: #fff;
}

.credits {
  margin: 0;
  color: #8b929b;
  font-size: 0.8rem;
}

.legal {
  max-width: 44rem;
  margin: 0 auto;
  padding: 24px 0 64px;
  font-size: 1.02rem;
  line-height: 1.6;
}
.legal h1 { font-size: 2rem; margin: 0 0 12px; }
.legal h2 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 12px; padding-left: 1.2rem; }
.legal li { margin: 0 0 6px; }
.legal .lede-block { color: var(--charcoal); }

