/* ==========================================================================
   Mom's LaundryMat — momslaundrybk.com
   Design: "Porthole Fresh" — navy subway tile, washing-machine-door circles,
   bubbles, Sansation. Pink reserved for the grand-opening promo only.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subset) ---- */
@font-face {
  font-family: 'Sansation';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sansation-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Sansation';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sansation-700.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  --navy: #082744;
  --navy-dark: #051a2f;
  --navy-soft: #0a3358;
  --cyan: #30b8e2;
  --cyan-light: #5ecced;
  --cyan-pale: #e1f5fe;
  --cyan-deep: #0e7a9e;   /* link-safe cyan on white */
  --pink: #e84393;
  --pink-deep: #c2186b;   /* text-safe pink */
  --white: #ffffff;
  --paper: #f6fafc;
  --ink: #16324a;
  --muted: #51677a;
  --line: #dce8f0;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(8, 39, 68, 0.12);
  --shadow-soft: 0 4px 18px rgba(8, 39, 68, 0.08);
  --wrap: 1140px;
  --font: 'Sansation', 'Trebuchet MS', Verdana, sans-serif;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-deep); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy); margin: 0 0 0.5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); letter-spacing: -0.3px; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 20px; z-index: 200;
  border-radius: 0 0 10px 0; text-decoration: none; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---- Subway-tile texture (navy sections) ---- */
.tile-navy {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 100% 46px, 138px 100%;
  position: relative;
  overflow: hidden;
}

/* ---- Bubbles ---- */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--cyan-light), var(--cyan) 65%);
  opacity: 0.16;
  pointer-events: none;
  animation: drift 9s ease-in-out infinite alternate;
}
.bubble.hollow { background: none; border: 2px solid var(--cyan); opacity: 0.22; }
@keyframes drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-26px); }
}
@media (prefers-reduced-motion: reduce) {
  .bubble { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px 22px; max-width: var(--wrap); margin: 0 auto;
}
.brand img { width: 168px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 6px 2px; border-bottom: 3px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--cyan); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--cyan); }
.btn-call {
  background: var(--navy); color: #fff !important; padding: 11px 20px !important;
  border-radius: 999px; border-bottom: none !important; white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-call:hover { background: var(--cyan-deep); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--navy); border-radius: 10px;
  width: 46px; height: 42px; cursor: pointer; padding: 0; color: var(--navy);
}
.nav-toggle .bars { display: block; width: 20px; height: 2px; background: currentColor; margin: 0 auto; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 15px 30px; border-radius: 999px; font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cyan); color: var(--navy); box-shadow: 0 6px 22px rgba(48, 184, 226, 0.4); }
.btn-primary:hover { background: var(--cyan-light); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.55); color: #fff; }
.btn-ghost:hover { border-color: var(--cyan-light); color: var(--cyan-light); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }

/* ---- Hero ---- */
.hero { color: #fff; padding: 72px 0 86px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { color: #fff; margin: 14px 0 18px; }
.hero h1 .cy { color: var(--cyan-light); }
.hero .lede { font-size: 1.13rem; color: rgba(255,255,255,0.85); max-width: 34em; }
.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--cyan-light);
  border: 1px solid rgba(48,184,226,0.4); background: rgba(48,184,226,0.1);
  border-radius: 999px; padding: 7px 16px;
}
.kicker--light { color: var(--cyan-deep); border-color: rgba(14,122,158,0.3); background: var(--cyan-pale); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.open-pill {
  display: inline-block; background: var(--pink); color: #fff; font-weight: 700;
  border-radius: 999px; padding: 8px 18px; font-size: 0.9rem; margin-bottom: 16px;
  transform: rotate(-1.5deg); box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

/* ---- Porthole image ---- */
.porthole { position: relative; width: min(420px, 86vw); margin: 0 auto; }
.porthole .ring {
  border-radius: 50%; overflow: hidden; aspect-ratio: 1;
  border: 10px solid rgba(255,255,255,0.92);
  outline: 3px solid rgba(48,184,226,0.55);
  outline-offset: 10px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}
.porthole .ring img { width: 100%; height: 100%; object-fit: cover; }
.porthole .pb { position: absolute; border-radius: 50%; background: radial-gradient(circle at 32% 28%, var(--cyan-light), var(--cyan) 70%); }
.porthole .pb1 { width: 54px; height: 54px; top: -8px; right: 26px; opacity: 0.9; }
.porthole .pb2 { width: 26px; height: 26px; top: -36px; right: 96px; opacity: 0.7; }
.porthole .pb3 { width: 16px; height: 16px; top: 6px; right: 120px; opacity: 0.55; }

/* ---- Sections ---- */
.section { padding: 84px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.bg-paper { background: var(--paper); }

/* ---- Promo band (pink — grand opening only) ---- */
.promo-band { background: var(--pink-deep); color: #fff; position: relative; overflow: hidden; }
.promo-band::after {
  content: ''; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px;
  border-radius: 50%; border: 28px solid rgba(255,255,255,0.08);
}
.promo-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap; padding: 34px 22px; max-width: var(--wrap); margin: 0 auto;
  position: relative; z-index: 1;
}
.promo-inner h2 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 0 0 4px; }
.promo-inner p { margin: 0; color: rgba(255,255,255,0.92); }
.promo-count { font-weight: 700; background: rgba(255,255,255,0.14); border-radius: 12px; padding: 10px 18px; }
.promo-band .btn-primary { box-shadow: none; }

/* ---- Cards ---- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card-link { font-weight: 700; text-decoration: none; color: var(--cyan-deep); }
.card-link::after { content: ' →'; }
.card-link:hover { text-decoration: underline; }

/* ---- Standards (navy band) ---- */
.standards { color: #fff; }
.standards h2 { color: #fff; }
.standards .section-head p { color: rgba(255,255,255,0.78); }
.std-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 1; }
.std {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius); padding: 26px 24px;
}
.std .dot {
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 16px;
  background: radial-gradient(circle at 32% 28%, var(--cyan-light), var(--cyan) 70%);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-weight: 700; font-size: 1.2rem;
}
.std h3 { color: #fff; font-size: 1.08rem; }
.std p { color: rgba(255,255,255,0.74); font-size: 0.95rem; margin: 0; }

/* ---- Split feature ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.flip > .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-body .checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.split-body .checklist li { padding-left: 34px; position: relative; margin-bottom: 12px; }
.split-body .checklist li::before {
  content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--cyan);
  box-shadow: inset -3px -3px 0 rgba(8,39,68,0.18);
}
.split-body .checklist li::after {
  content: ''; position: absolute; left: 6px; top: 9px; width: 8px; height: 5px;
  border-left: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy);
  transform: rotate(-45deg);
}

/* ---- Steps ---- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.steps li {
  counter-increment: step; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-soft);
}
.steps li::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--cyan-light); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 14px;
}
.steps h3 { font-size: 1.1rem; }
.steps p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---- Neighborhood tiles ---- */
.hood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hood {
  position: relative; border-radius: var(--radius); padding: 30px 26px;
  background: var(--navy); color: #fff; text-decoration: none; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end;
}
.hood::before {
  content: ''; position: absolute; top: -34px; right: -34px; width: 110px; height: 110px;
  border-radius: 50%; border: 14px solid rgba(48,184,226,0.25);
  transition: transform 0.3s ease;
}
.hood:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.hood:hover::before { transform: scale(1.15); }
.hood .h-name { font-weight: 700; font-size: 1.22rem; color: #fff; }
.hood .h-sub { color: var(--cyan-light); font-size: 0.88rem; font-weight: 700; }

/* ---- FAQ ---- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 24px; margin-bottom: 14px; box-shadow: var(--shadow-soft);
}
.faq summary {
  font-weight: 700; color: var(--navy); cursor: pointer; padding: 16px 0;
  list-style: none; position: relative; padding-right: 38px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--cyan-pale);
  color: var(--cyan-deep); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: '–'; transform: translateY(-50%) rotate(180deg); }
.faq details p { color: var(--muted); padding-bottom: 18px; margin: 0; }

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.price-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.price-card .turn { color: var(--muted); font-size: 0.92rem; margin: 0 0 18px; flex: 1; }
.price-card .amount { font-size: 2rem; font-weight: 700; color: var(--navy); margin: 0; line-height: 1; }
.price-card .amount .per { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.price-card.featured { border: 2px solid var(--cyan); }
.price-note { color: var(--muted); font-size: 0.92rem; margin: 24px 0 0; }

/* Specialty pricing table */
.spec-heading { margin-top: 48px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.spec-table th {
  text-align: left; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); padding: 10px 16px;
  border-bottom: 2px solid var(--line);
}
.spec-table th:last-child { text-align: right; }
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.spec-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.spec-table tbody tr:hover { background: rgba(48, 184, 226, 0.04); }

/* ---- Visit / NAP ---- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.nap-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); padding: 34px 34px 30px;
}
.nap-card .nap-row { display: flex; gap: 14px; align-items: baseline; margin-bottom: 16px; }
.nap-card .nap-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan-deep); min-width: 86px;
}
.nap-card .nap-val { font-weight: 700; color: var(--navy); }
.nap-card .nap-val a { color: var(--navy); text-decoration: none; }
.nap-card .nap-val a:hover { color: var(--cyan-deep); }

/* ---- CTA band ---- */
.cta-band { color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 38em; margin: 0 auto 1.6em; }
.cta-band .inner { position: relative; z-index: 1; padding: 84px 22px; max-width: 820px; margin: 0 auto; }

/* ---- Page hero (interior pages) ---- */
.page-hero { color: #fff; padding: 64px 0 70px; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 15em; margin: 14px 0 16px; }
.page-hero .lede { color: rgba(255,255,255,0.84); font-size: 1.1rem; max-width: 36em; }
.breadcrumbs { font-size: 0.85rem; margin: 0 0 6px; padding: 0; list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--cyan-light); text-decoration: none; font-weight: 700; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: rgba(255,255,255,0.4); }
.breadcrumbs [aria-current] { color: rgba(255,255,255,0.75); }

/* ---- Prose ---- */
.prose { max-width: 720px; }
.prose h2 { margin-top: 1.6em; }
.prose ul li { margin-bottom: 8px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding: 64px 22px 40px; max-width: var(--wrap); margin: 0 auto;
}
.site-footer h2 { color: #fff; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
.site-footer a:hover { color: var(--cyan-light); }
.footer-brand img { width: 170px; margin-bottom: 18px; }
.footer-brand p { max-width: 26em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.vis { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero .wrap, .split, .visit-grid { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
  .card-grid, .steps { grid-template-columns: 1fr 1fr; }
  .std-grid, .hood-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 56px 0 64px; }
  .porthole { width: min(340px, 80vw); }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line); padding: 10px 22px 20px;
    box-shadow: 0 18px 30px rgba(8,39,68,0.12);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .site-nav .btn-call { margin-top: 14px; text-align: center; border-radius: 999px; }
  .card-grid, .steps, .std-grid, .hood-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .promo-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 60px 0; }
}

/* ---- Pickup popup (logo image) ---- */
.pickup-pop {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.pickup-pop[hidden] { display: none; }
.pickup-pop-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 26, 47, 0.78);
  backdrop-filter: blur(6px);
}
.pickup-pop-dialog {
  position: relative; text-align: center;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(5, 26, 47, 0.45);
  padding: 40px 36px 28px;
  max-width: 400px; width: 100%;
}
.pickup-pop-link {
  display: block; text-decoration: none; color: inherit;
}
.pickup-pop-logo {
  display: block; margin: 0 auto 20px;
  width: min(280px, 70vw); height: auto;
}
.pickup-pop-cta {
  display: block; margin: 0 auto;
  background: var(--cyan); color: var(--navy);
  font-weight: 700; font-size: 1.15rem;
  padding: 16px 32px; border-radius: 999px;
  box-shadow: 0 6px 22px rgba(48, 184, 226, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pickup-pop-link:hover .pickup-pop-cta {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(48, 184, 226, 0.5);
}
.pickup-pop-call {
  display: block; margin-top: 14px;
  color: var(--cyan-deep); font-size: 0.95rem; font-weight: 700;
  text-decoration: none;
}
.pickup-pop-call:hover { text-decoration: underline; }
.pickup-pop-x {
  position: absolute; top: 8px; right: 10px;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  color: var(--navy); font-size: 1.6rem; line-height: 1;
  opacity: 0.5;
}
.pickup-pop-x:hover { opacity: 1; background: var(--paper); }
.pickup-pop-dismiss {
  display: block; margin: 14px auto 0;
  background: none; border: none; cursor: pointer;
  color: #8a9bb0; font: inherit; font-size: 0.85rem;
  padding: 4px;
}
.pickup-pop-dismiss:hover { color: var(--navy); }
@media (prefers-reduced-motion: no-preference) {
  .pickup-pop-backdrop { animation: pop-fade 0.3s ease both; }
  .pickup-pop-dialog { animation: pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
  @keyframes pop-fade { from { opacity: 0; } }
  @keyframes pop-in {
    from { opacity: 0; transform: scale(0.6); }
    to { opacity: 1; transform: none; }
  }
}
@media (max-width: 540px) {
  .pickup-pop { padding: 16px; }
  .pickup-pop-dialog { padding: 36px 22px 22px; }
  .pickup-pop-cta { font-size: 1.05rem; padding: 14px 24px; }
}
