/* ============================================================================
   POOP & PAIL — site styles
   Palette lifted straight off the logo: deep navy, bucket teal, cream, gold.
   ========================================================================== */

:root {
  --navy:       #0E2233;
  --navy-700:   #16334A;
  --navy-600:   #1E4260;
  --teal:       #1A7A8C;
  --teal-600:   #146474;
  --teal-400:   #2E97AB;
  --teal-200:   #A8D6DF;
  --teal-050:   #EAF4F6;
  --cream:      #F7F3EA;
  --cream-dark: #EDE6D8;
  --gold:       #C79A57;
  --gold-600:   #A87F42;
  --gold-050:   #FBF4E8;
  --ink:        #0B1620;
  --body:       #37474F;
  --muted:      #6B7C87;
  --line:       #DFE6EA;
  --white:      #FFFFFF;
  --ok:         #2E7D5B;
  --warn:       #B4611E;
  --err:        #B03A3A;

  --shadow-sm:  0 1px 2px rgba(14,34,51,.06), 0 2px 6px rgba(14,34,51,.06);
  --shadow:     0 4px 12px rgba(14,34,51,.08), 0 12px 28px rgba(14,34,51,.08);
  --shadow-lg:  0 8px 24px rgba(14,34,51,.10), 0 24px 60px rgba(14,34,51,.14);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --sans: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --display: "Archivo Black", "Arial Black", "Segoe UI", Impact, sans-serif;

  --wrap: 1160px;
}

/* ------------------------------------------------------------------ reset -- */

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-600); }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.65rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 900; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 800; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.tiny  { font-size: .78rem; }
.nowrap { white-space: nowrap; }
.hide { display: none !important; }

section { padding: 78px 0; }
section.tight { padding: 52px 0; }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .7rem;
}
.section-head { max-width: 700px; margin: 0 auto 46px; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 30px;
  font-weight: 800; font-size: 1rem; letter-spacing: .005em;
  border: 2px solid transparent; border-radius: var(--r-pill);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(26,122,140,.32); }
.btn-primary:hover { background: var(--teal-600); box-shadow: 0 10px 26px rgba(26,122,140,.40); }
.btn-gold { background: var(--gold); color: #2B1F0C; box-shadow: 0 6px 18px rgba(199,154,87,.34); }
.btn-gold:hover { background: var(--gold-600); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(14,34,51,.22); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-600); background: var(--teal-050); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }

/* ----------------------------------------------------------------- header -- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; gap: 18px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img {
  width: 52px; height: 52px; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(14,34,51,.22);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--display); font-weight: 900; font-size: 1.22rem;
  color: var(--navy); letter-spacing: -.01em;
}
.brand-name em { font-style: normal; color: var(--teal); }
.brand-sub { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: var(--r-sm);
  color: var(--navy); text-decoration: none; font-weight: 700; font-size: .95rem;
}
.nav a:hover { background: var(--teal-050); color: var(--teal-600); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--navy); text-decoration: none; font-size: .98rem;
  padding: 9px 12px; border-radius: var(--r-sm);
}
.header-phone:hover { background: var(--teal-050); color: var(--teal-600); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
  color: var(--navy);
}

/* ------------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(46,151,171,.30), transparent 62%),
    radial-gradient(760px 460px at 4% 108%, rgba(199,154,87,.18), transparent 60%),
    linear-gradient(165deg, #0E2233 0%, #14324A 55%, #103448 100%);
  color: #E9F2F5;
  overflow: hidden;
  padding: 76px 0 90px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.10) 1px, transparent 0);
  background-size: 34px 34px; opacity: .5;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .teal { color: var(--teal-200); }
.hero-lede { font-size: 1.16rem; color: #C4D7DE; max-width: 33em; margin-bottom: 1.5em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(199,154,87,.16);
  border: 1px solid rgba(199,154,87,.45);
  color: #F0D9AE;
  padding: 8px 16px 8px 10px; border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 700; margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(199,154,87,.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.hero-points li { display: flex; align-items: flex-start; gap: 10px; font-size: .97rem; color: #CFE0E6; }
.hero-points svg { flex: none; margin-top: 3px; color: var(--teal-200); }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-logo {
  width: min(390px, 84%); aspect-ratio: 1; border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 0 10px rgba(255,255,255,.06);
  object-fit: cover;
}
.hero-price-tag {
  /* Sits just off the bottom-right of the logo so it never covers the
     "They poop it. We scoop it." lockup inside the badge. */
  position: absolute; right: -5%; bottom: 4%;
  background: #fff; color: var(--navy);
  border-radius: var(--r-lg); padding: 14px 20px;
  box-shadow: var(--shadow-lg); text-align: center;
  border: 3px solid var(--teal);
}
.hero-price-tag .amt {
  font-family: var(--display); font-size: 2rem; line-height: 1; color: var(--teal);
}
.hero-price-tag .lbl { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------------- zip bar -- */

.zipbar {
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 34px 0;
  overflow: hidden;
}
/* Faint paw trail across the band so it reads as part of the brand, not filler. */
.zipbar::before, .zipbar::after {
  content: ""; position: absolute; top: 50%; width: 190px; height: 90px;
  transform: translateY(-50%); pointer-events: none; opacity: .5;
  background-repeat: no-repeat;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='90' viewBox='0 0 190 90'%3E%3Cg fill='%23DCD2BE'%3E%3Cg transform='translate(6 42) rotate(-18) scale(.85)'%3E%3Cellipse cx='7' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='12' cy='6.2' rx='2.1' ry='2.9'/%3E%3Cellipse cx='17' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='20' cy='13' rx='1.9' ry='2.3'/%3E%3Cpath d='M12 11.4c-2.8 0-5.6 2.3-6.4 4.6-.8 2.3.6 4.2 3 4.2 1.2 0 2.3-.5 3.4-.5s2.2.5 3.4.5c2.4 0 3.8-1.9 3-4.2-.8-2.3-3.6-4.6-6.4-4.6z'/%3E%3C/g%3E%3Cg transform='translate(52 16) rotate(-18) scale(1.05)'%3E%3Cellipse cx='7' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='12' cy='6.2' rx='2.1' ry='2.9'/%3E%3Cellipse cx='17' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='20' cy='13' rx='1.9' ry='2.3'/%3E%3Cpath d='M12 11.4c-2.8 0-5.6 2.3-6.4 4.6-.8 2.3.6 4.2 3 4.2 1.2 0 2.3-.5 3.4-.5s2.2.5 3.4.5c2.4 0 3.8-1.9 3-4.2-.8-2.3-3.6-4.6-6.4-4.6z'/%3E%3C/g%3E%3Cg transform='translate(104 50) rotate(-18) scale(.95)'%3E%3Cellipse cx='7' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='12' cy='6.2' rx='2.1' ry='2.9'/%3E%3Cellipse cx='17' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='20' cy='13' rx='1.9' ry='2.3'/%3E%3Cpath d='M12 11.4c-2.8 0-5.6 2.3-6.4 4.6-.8 2.3.6 4.2 3 4.2 1.2 0 2.3-.5 3.4-.5s2.2.5 3.4.5c2.4 0 3.8-1.9 3-4.2-.8-2.3-3.6-4.6-6.4-4.6z'/%3E%3C/g%3E%3Cg transform='translate(150 20) rotate(-18) scale(.8)'%3E%3Cellipse cx='7' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='12' cy='6.2' rx='2.1' ry='2.9'/%3E%3Cellipse cx='17' cy='8' rx='2.1' ry='2.7'/%3E%3Cellipse cx='20' cy='13' rx='1.9' ry='2.3'/%3E%3Cpath d='M12 11.4c-2.8 0-5.6 2.3-6.4 4.6-.8 2.3.6 4.2 3 4.2 1.2 0 2.3-.5 3.4-.5s2.2.5 3.4.5c2.4 0 3.8-1.9 3-4.2-.8-2.3-3.6-4.6-6.4-4.6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.zipbar::before { left: -10px; }
.zipbar::after  { right: -10px; transform: translateY(-50%) scaleX(-1); }

.zipbar-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.zipbar h3 { margin: 0; font-size: 1.24rem; }
.zipbar h3 span { display: block; font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.zip-form { display: flex; gap: 8px; }
.zip-form input {
  width: 158px; padding: 13px 16px; font-size: 1rem; font-weight: 700;
  border: 2px solid var(--line); border-radius: var(--r-pill); background: #fff;
  letter-spacing: .06em;
}
.zip-form input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(26,122,140,.14); }
.zip-result { font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.zip-result.ok  { color: var(--ok); }
.zip-result.bad { color: var(--warn); }

/* --------------------------------------------------------------- features -- */

.features { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature {
  text-align: center; padding: 30px 20px;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-200); }
.feature-icon {
  width: 66px; height: 66px; margin: 0 auto 16px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--teal); color: #fff;
}
.feature h3 { font-size: 1.02rem; margin-bottom: .4em; text-transform: uppercase; letter-spacing: .01em; }
.feature p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------------ steps -- */

.steps { background: var(--cream); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { position: relative; background: #fff; border-radius: var(--r-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); }
.step-num {
  position: absolute; top: -18px; left: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.24rem;
  box-shadow: 0 4px 12px rgba(14,34,51,.3);
}
.step h3 { margin-top: 12px; }
.step p { margin: 0; font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------- pricing -- */

.pricing { background: #fff; }
.plan-toggle {
  display: inline-flex; padding: 5px; background: var(--cream); border-radius: var(--r-pill);
  margin: 0 auto 34px; gap: 4px;
}
.plan-toggle button {
  border: 0; background: transparent; padding: 11px 26px; border-radius: var(--r-pill);
  font-weight: 800; font-size: .96rem; color: var(--muted); cursor: pointer;
  transition: all .18s ease;
}
.plan-toggle button.active { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }

.price-card {
  max-width: 700px; margin: 0 auto;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.price-head { padding: 24px; text-align: center; color: #fff; background: var(--teal); }
.price-head.gold { background: var(--navy); }
.price-head h3 {
  color: #fff; font-family: var(--display); font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin: 0; letter-spacing: .01em; text-transform: uppercase;
}
.price-head span { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; opacity: .85; font-weight: 700; }

.price-rows { background: #fff; }
.price-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 26px; border-bottom: 1px solid var(--line);
  transition: background .15s ease;
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: #FBFCFD; }
/* Sized to the icons rather than a fixed column, so there's no dead gap. */
.price-row .dogs {
  display: flex; gap: 4px; align-items: center; color: var(--teal);
  flex: none; min-width: 120px;
}
.price-row.gold-row .dogs { color: var(--gold); }
.price-row .label { font-weight: 800; color: var(--navy); font-size: 1.06rem; flex: 1; text-transform: uppercase; letter-spacing: .01em; }
.price-row .label small { display: block; text-transform: none; letter-spacing: 0; font-weight: 600; color: var(--muted); font-size: .8rem; }
.price-row .per-visit {
  display: block; text-transform: none; letter-spacing: 0;
  font-weight: 700; color: var(--teal-600); font-size: .8rem; margin-top: 2px;
}
.price-tag {
  flex: none; min-width: 104px; text-align: center;
  background: var(--teal); color: #fff; border-radius: 12px; padding: 8px 14px;
}
.price-row.gold-row .price-tag { background: var(--gold); color: #2B1F0C; }
.price-tag .amt { font-family: var(--display); font-size: 1.55rem; line-height: 1.05; display: block; }
.price-tag .per { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.price-note { padding: 14px 26px; background: var(--cream); font-size: .82rem; color: var(--muted); text-align: center; }

.prepay {
  max-width: 760px; margin: 26px auto 0;
  border: 2px dashed var(--teal-200); border-radius: var(--r-lg);
  background: var(--teal-050); padding: 22px 26px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center;
}
.prepay-title { font-family: var(--display); color: var(--teal-600); font-size: 1.28rem; text-transform: uppercase; }
.prepay-opts { display: flex; gap: 26px; flex-wrap: wrap; }
.prepay-opt { text-align: center; }
.prepay-opt .pct { font-family: var(--display); font-size: 1.6rem; color: var(--navy); line-height: 1; }
.prepay-opt .txt { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* --------------------------------------------------------------- estimate -- */

.estimator { background: var(--navy); color: #D6E4EA; }
.estimator h2 { color: #fff; }
.estimator .section-head p { color: #A9C2CC; }
.est-card {
  max-width: 940px; margin: 0 auto;
  background: #fff; color: var(--body);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden;
}
.est-form { padding: 34px; }
.est-out {
  padding: 34px; background: linear-gradient(160deg, var(--teal) 0%, var(--teal-600) 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: center;
}
.est-out h3 { color: #fff; margin-bottom: .2em; }
.est-price { font-family: var(--display); font-size: 3.2rem; line-height: 1; color: #fff; margin: 8px 0 2px; }
.est-unit { font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.est-lines { list-style: none; padding: 0; margin: 20px 0 0; border-top: 1px solid rgba(255,255,255,.28); }
.est-lines li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.14);
}
.est-lines li span:last-child { font-weight: 800; flex: none; }
.est-lines li.promo { color: #F5DFB4; }
.est-foot { margin-top: 18px; font-size: .82rem; opacity: .88; }

/* ------------------------------------------------------------------ field -- */

.field { margin-bottom: 20px; }
.field > label, .field-label {
  display: block; font-weight: 800; color: var(--navy); font-size: .92rem; margin-bottom: 8px;
}
.field-hint { font-size: .8rem; color: var(--muted); font-weight: 600; margin: -4px 0 8px; }
.input, select.input, textarea.input {
  width: 100%; padding: 13px 15px;
  border: 2px solid var(--line); border-radius: var(--r-sm); background: #fff;
  font-size: 1rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(26,122,140,.13); }
.input.err { border-color: var(--err); }
textarea.input { min-height: 92px; resize: vertical; }
.field-error { color: var(--err); font-size: .82rem; font-weight: 700; margin-top: 6px; display: none; }
.field-error.show { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* dog stepper */
.stepper { display: flex; align-items: center; gap: 14px; }
.stepper button {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--line);
  background: #fff; font-size: 1.4rem; font-weight: 800; color: var(--navy);
  cursor: pointer; line-height: 1; transition: all .15s ease;
}
.stepper button:hover:not([disabled]) { border-color: var(--teal); color: var(--teal); background: var(--teal-050); }
.stepper button[disabled] { opacity: .35; cursor: not-allowed; }
.stepper-val {
  min-width: 62px; text-align: center;
  font-family: var(--display); font-size: 2rem; color: var(--navy); line-height: 1;
}
.stepper-dogs { display: flex; gap: 2px; color: var(--teal); flex-wrap: wrap; max-width: 190px; }

/* choice cards */
.choices { display: grid; gap: 10px; }
.choices.cols-2 { grid-template-columns: 1fr 1fr; }
.choices.cols-3 { grid-template-columns: repeat(3, 1fr); }
.choice {
  position: relative; display: block; cursor: pointer;
  border: 2px solid var(--line); border-radius: var(--r); padding: 15px 17px;
  background: #fff; transition: all .15s ease;
}
.choice:hover { border-color: var(--teal-200); background: var(--teal-050); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-title { font-weight: 800; color: var(--navy); font-size: .98rem; display: block; }
.choice-desc { font-size: .82rem; color: var(--muted); display: block; margin-top: 2px; }
.choice-price { font-weight: 800; color: var(--teal); font-size: .9rem; float: right; }
.choice input:checked ~ .choice-body .choice-title { color: var(--teal-600); }
.choice:has(input:checked) {
  border-color: var(--teal); background: var(--teal-050);
  box-shadow: 0 0 0 3px rgba(26,122,140,.12);
}
.choice.selected {
  border-color: var(--teal); background: var(--teal-050);
  box-shadow: 0 0 0 3px rgba(26,122,140,.12);
}
.choice-flag {
  position: absolute; top: -10px; right: 12px;
  background: var(--gold); color: #2B1F0C; font-size: .66rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-pill);
}

/* ------------------------------------------------- address suggestions -- */

.addr-wrap { position: relative; }
.addr-suggest {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); overflow: hidden; max-height: 330px; overflow-y: auto;
}
.addr-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 2px 12px; padding: 11px 15px; cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.addr-item:last-child { border-bottom: 0; }
.addr-item:hover, .addr-item.active { background: var(--teal-050); }
.addr-main {
  grid-column: 1; grid-row: 1;
  font-weight: 700; color: var(--navy); font-size: .96rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.addr-sub { grid-column: 1; grid-row: 2; font-size: .8rem; color: var(--muted); }
.addr-day, .addr-out {
  grid-column: 2; grid-row: 1 / span 2; align-self: center;
  font-size: .7rem; font-weight: 800; letter-spacing: .03em;
  padding: 5px 11px; border-radius: var(--r-pill); white-space: nowrap;
}
.addr-day { background: var(--teal-050); color: var(--teal-600); }
.addr-out { background: #F3F0E9; color: var(--muted); }

.addr-loading, .addr-empty {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 15px; font-size: .84rem; color: var(--muted);
  background: #FBFCFC; border-top: 1px solid var(--line);
}
.addr-empty { border-top: 0; }
.addr-spinner {
  width: 13px; height: 13px; flex: none; border-radius: 50%;
  border: 2px solid var(--line); border-top-color: var(--teal);
  animation: addr-spin .7s linear infinite;
}
@keyframes addr-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .addr-spinner { animation: none; } }

/* ---------------------------------------------------------------- booking -- */

.book-page { background: var(--cream); min-height: 100vh; }
.book-layout {
  display: grid; grid-template-columns: 1fr 372px; gap: 26px;
  max-width: var(--wrap); margin: 0 auto; padding: 34px 22px 70px;
  align-items: start;
}
.book-main { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }

.progress { display: flex; background: var(--navy); padding: 0; }
.progress-step {
  flex: 1; padding: 14px 8px; text-align: center;
  font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.42); border-bottom: 3px solid transparent; position: relative;
}
.progress-step.done { color: var(--teal-200); border-bottom-color: rgba(168,214,223,.45); }
.progress-step.active { color: #fff; border-bottom-color: var(--gold); background: rgba(255,255,255,.06); }
.progress-step .n {
  display: inline-grid; place-items: center; width: 21px; height: 21px; border-radius: 50%;
  background: rgba(255,255,255,.16); margin-right: 6px; font-size: .72rem; vertical-align: -4px;
}
.progress-step.active .n { background: var(--gold); color: #2B1F0C; }
.progress-step.done .n { background: var(--teal); color: #fff; }

.step-panel { padding: 34px; display: none; }
.step-panel.active { display: block; animation: fadeUp .28s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step-panel h2 { font-size: 1.55rem; margin-bottom: .25em; }
.step-panel .step-lede { color: var(--muted); margin-bottom: 26px; font-size: .98rem; }

.step-nav {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 20px 34px; border-top: 1px solid var(--line); background: #FBFCFC;
}

/* sticky summary */
.summary {
  position: sticky; top: 92px;
  background: var(--navy); color: #D6E4EA;
  border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden;
}
.summary-head { padding: 20px 22px 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.summary-head h3 { color: #fff; margin: 0 0 2px; font-size: 1.05rem; }
.summary-head p { margin: 0; font-size: .8rem; color: #93AEBA; }
.summary-body { padding: 20px 22px; }
.sum-price { text-align: center; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.sum-price .amt { font-family: var(--display); font-size: 2.9rem; line-height: 1; color: #fff; }
.sum-price .unit { font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-200); }
.sum-list { list-style: none; padding: 0; margin: 14px 0 0; }
.sum-list li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: .86rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.sum-list li b { color: #fff; font-weight: 800; flex: none; }
.sum-list li.promo b, .sum-list li.promo { color: #F5DFB4; }
.sum-list li.total { border-bottom: 0; padding-top: 12px; margin-top: 6px; border-top: 2px solid rgba(255,255,255,.2); font-size: 1rem; }
.sum-list li.total b { font-size: 1.24rem; }
.sum-empty { color: #7E99A6; font-size: .88rem; text-align: center; padding: 14px 0; }
.sum-sched {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--r);
  background: rgba(46,151,171,.16); border: 1px solid rgba(168,214,223,.28);
}
.sum-sched .lbl { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-200); }
.sum-sched .val { color: #fff; font-weight: 800; font-size: 1rem; }
.sum-sched .sub { font-size: .8rem; color: #A9C2CC; }

/* schedule preview */
.sched-hero {
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-600) 100%);
  color: #fff; border-radius: var(--r-lg); padding: 26px 28px; margin-bottom: 22px;
}
.sched-hero .lbl { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .82; }
.sched-hero .date { font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.15rem); line-height: 1.1; margin: 4px 0 6px; }
.sched-hero .meta { font-size: .92rem; opacity: .92; }

.sched-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.sched-chip {
  border: 1px solid var(--line); border-radius: 10px; padding: 9px 6px; text-align: center;
  background: #fff;
}
.sched-chip .d { font-weight: 800; color: var(--navy); font-size: .92rem; }
.sched-chip .w { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.sched-chip.holiday { border-color: var(--gold); background: var(--gold-050); }
.sched-chip.holiday .w { color: var(--gold-600); font-weight: 800; }
.sched-chip.first { border-color: var(--teal); background: var(--teal-050); box-shadow: 0 0 0 2px rgba(26,122,140,.14); }

/* alerts */
.alert {
  border-radius: var(--r); padding: 14px 18px; margin-bottom: 20px;
  font-size: .92rem; display: flex; gap: 11px; align-items: flex-start;
  border: 1px solid;
}
.alert svg { flex: none; margin-top: 2px; }
.alert-info { background: var(--teal-050); border-color: var(--teal-200); color: #12525E; }
.alert-warn { background: var(--gold-050); border-color: #E4C58C; color: #7A5518; }
.alert-ok   { background: #EAF6F0; border-color: #B4DFC9; color: #1F5D44; }
.alert-err  { background: #FBEDED; border-color: #E9BEBE; color: #8E2F2F; }
.alert b { font-weight: 800; }

/* confirmation */
.confirm-mark {
  width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--ok); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(46,125,91,.34);
  animation: pop .4s cubic-bezier(.2,1.4,.5,1);
}
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-code {
  display: inline-block; font-family: var(--display); font-size: 1.5rem; letter-spacing: .1em;
  background: var(--cream); border: 2px dashed var(--gold); color: var(--navy);
  padding: 10px 22px; border-radius: var(--r); margin: 6px 0 18px;
}

/* ------------------------------------------------------------------- area -- */

.area { background: var(--cream); }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.area-card {
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;          /* keeps every card equal height */
  transition: transform .18s ease, box-shadow .18s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* The day is the thing people scan for, so it gets a real header band. */
.area-day {
  background: var(--teal); color: #fff;
  font-family: var(--display); font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: .03em;
  padding: 13px 22px; display: flex; align-items: center; gap: 9px;
}
.area-day svg { opacity: .8; flex: none; }
.area-card.z-B .area-day { background: var(--teal-400); }
.area-card.z-C .area-day { background: var(--gold); color: #2B1F0C; }
.area-card.z-D .area-day { background: var(--navy-600); }

.area-body { padding: 20px 22px 0; flex: 1; }
.area-card h3 { font-size: 1rem; margin-bottom: .6em; min-height: 2.4em; }
.area-card ul { list-style: none; padding: 0; margin: 0 0 14px; }
.area-card li { font-size: .9rem; color: var(--body); padding: 3px 0; display: flex; gap: 8px; align-items: center; }
.area-card li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex: none; }

/* Pinned to the bottom so the ZIP blocks line up across all four cards. */
.area-foot { margin-top: auto; padding: 14px 22px 18px; border-top: 1px solid var(--line); }
.area-zips {
  font-size: .72rem; color: var(--muted);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; line-height: 1.75;
}
.area-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-weight: 800; font-size: .85rem; color: var(--teal-600); text-decoration: none;
}
.area-cta:hover { color: var(--navy); gap: 9px; }
.area-cta svg { transition: transform .15s ease; }

/* -------------------------------------------------------------- promise --- */

.promise { background: #fff; }
.promise-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.promise-art { position: relative; }
.promise-art img {
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.promise-art figcaption {
  text-align: center; font-size: .8rem; color: var(--muted); margin-top: 12px;
}
/* The badge from the flyer: a shield holding a paw, not a plain block. */
.promise-shield {
  width: 88px; height: 88px; color: var(--teal);
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 18px rgba(26,122,140,.28));
}
.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.trust-chips li {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal-050); color: var(--teal-600);
  border: 1px solid var(--teal-200);
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 800;
}

/* ----------------------------------------------------------- value strip -- */

.valuestrip { background: var(--navy); padding: 0; }
.valuestrip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-cell {
  padding: 30px 22px; text-align: center;
  border-left: 1px solid rgba(255,255,255,.10);
}
.value-cell:first-child { border-left: 0; }   /* dividers between, not around */
.value-cell .v {
  font-family: var(--display); font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  color: #fff; line-height: 1.05;
}
.value-cell .v em { font-style: normal; color: var(--teal-200); }
.value-cell .k {
  font-size: .76rem; font-weight: 700; color: #93AEBA;
  margin-top: 6px; line-height: 1.4;
}

/* -------------------------------------------------------- scroll reveal -- */

.reveal { opacity: 0; transform: translateY(20px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.7,.3,1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------- sticky mobile CTA -- */

.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: flex; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(14,34,51,.10);
  }
  .mobile-cta .btn { flex: 1; padding: 14px 12px; font-size: .95rem; }
  .mobile-cta .btn-call { flex: 0 0 44%; }
  body { padding-bottom: 76px; }
}
.script {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 2rem; color: var(--navy); line-height: 1.15;
}
.script em { color: var(--teal); font-style: normal; }

/* -------------------------------------------------------------------- faq -- */

.faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--r); margin-bottom: 10px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 22px; font-weight: 800; color: var(--navy); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q:hover { color: var(--teal-600); }
.faq-q .chev { transition: transform .2s ease; flex: none; color: var(--teal); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: .95rem; }

/* --------------------------------------------------------------- cta band -- */

.cta-band {
  background:
    radial-gradient(700px 340px at 82% 0%, rgba(46,151,171,.34), transparent 62%),
    linear-gradient(140deg, var(--navy) 0%, #143247 100%);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #B7CCD5; max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------- footer -- */

.site-footer { background: var(--ink); color: #91A6B2; padding: 56px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 40px; }
.site-footer h4 {
  color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 14px; font-weight: 800;
}
.site-footer a { color: #B7CCD5; text-decoration: none; }
.site-footer a:hover { color: var(--teal-200); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.footer-brand img { width: 62px; height: 62px; border-radius: 50%; }
.footer-tag { font-style: italic; color: var(--teal-200); }
.footer-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: 1.3rem; color: #fff !important; letter-spacing: -.01em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 18px 0; text-align: center;
  font-size: .8rem; color: #6C818D;
}
.fb-link {
  display: inline-flex; align-items: center; gap: 9px;
  background: #1877F2; color: #fff !important; padding: 9px 16px; border-radius: var(--r-sm);
  font-weight: 700; font-size: .9rem;
}
.fb-link:hover { background: #0F63D2; color: #fff !important; }

/* ------------------------------------------------------------- admin page -- */

.admin-body { background: #EEF2F4; }
.admin-header {
  background: var(--navy); color: #fff; padding: 16px 0;
  position: sticky; top: 0; z-index: 40;
}
.admin-header .wrap { display: flex; align-items: center; gap: 16px; }
.admin-header .brand-name { color: #fff; }
.admin-header .brand-name em { color: var(--teal-200); }
.admin-title { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* The global `section` rule adds 78px of vertical padding - the dashboard
   panels are layout containers, not page sections, so opt them out. */
.tab-panel { padding: 0; }

.admin-tabs { display: flex; gap: 6px; padding: 16px 0 0; flex-wrap: wrap; }
.admin-tab {
  border: 0; background: #fff; padding: 10px 20px; border-radius: var(--r-pill);
  font-weight: 800; font-size: .9rem; color: var(--muted); cursor: pointer; box-shadow: var(--shadow-sm);
}
.admin-tab.active { background: var(--teal); color: #fff; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)); gap: 14px; margin: 20px 0; }
.stat {
  background: #fff; border-radius: var(--r); padding: 18px 20px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
}
.stat .v { font-family: var(--display); font-size: 1.85rem; color: var(--navy); line-height: 1.1; }
.stat .k { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.stat.gold { border-left-color: var(--gold); }
.stat.navy { border-left-color: var(--navy); }

.card { background: #fff; border-radius: var(--r); box-shadow: var(--shadow-sm); margin-bottom: 18px; overflow: hidden; }
.card-head {
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.card-head h3 { margin: 0; font-size: 1.05rem; }
.card-head .spacer { margin-left: auto; }
.card-body { padding: 20px 22px; }

table.data { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.data th {
  text-align: left; padding: 11px 16px; background: #F6F8F9;
  font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
table.data td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data tr:last-child td { border-bottom: 0; }
table.data tr:hover td { background: #FAFBFC; }
.pill {
  display: inline-block; padding: 3px 11px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 800; letter-spacing: .03em;
}
.pill-teal { background: var(--teal-050); color: var(--teal-600); }
.pill-gold { background: var(--gold-050); color: var(--gold-600); }
.pill-ok   { background: #EAF6F0; color: var(--ok); }
.pill-grey { background: #EEF1F3; color: var(--muted); }
.pill-warn { background: #FBEDED; color: var(--err); }

.route-day { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.route-stop {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 8px;
  background: #fff;
}
.route-stop.done { opacity: .55; background: #F7FAF8; }
.route-n {
  width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .86rem; flex: none;
}
.route-stop.done .route-n { background: var(--ok); }
.route-info { flex: 1; min-width: 0; }
.route-info .who { font-weight: 800; color: var(--navy); }
.route-info .where { font-size: .86rem; color: var(--muted); }
.route-info .notes { font-size: .84rem; color: var(--warn); margin-top: 4px; }

.empty-state { text-align: center; padding: 48px 20px; color: var(--muted); }
.empty-state svg { color: var(--line); margin-bottom: 12px; }

.login-box {
  max-width: 400px; margin: 90px auto; background: #fff; padding: 34px;
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}

/* ------------------------------------------------------------------ print -- */

@media print {
  .site-header, .admin-header, .admin-tabs, .step-nav, .btn, .no-print { display: none !important; }
  body { background: #fff; }
  .card, .route-stop { box-shadow: none; border: 1px solid #ccc; }
}

/* ----------------------------------------------------------- responsive --- */

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-art { order: -1; }
  .hero-logo { width: min(300px, 70%); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .est-card { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .valuestrip-inner { grid-template-columns: 1fr 1fr; }
  .value-cell { padding: 24px 18px; }
  .value-cell:nth-child(2n+1) { border-left: 0; }
  .value-cell:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.10); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 54px 0; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav.open a { padding: 13px 16px; }
  .nav-toggle { display: block; }
  .header-phone span { display: none; }
  .step-grid { grid-template-columns: 1fr; gap: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .row-2, .row-3 { grid-template-columns: 1fr; }
  .choices.cols-2, .choices.cols-3 { grid-template-columns: 1fr; }
  .price-row { gap: 10px; padding: 14px 16px; }
  .price-row .dogs { width: auto; }
  .price-row .label { font-size: .94rem; }
  .price-tag { min-width: 88px; padding: 6px 10px; }
  .price-tag .amt { font-size: 1.3rem; }
  .step-panel, .est-form, .est-out { padding: 24px 20px; }
  .step-nav { padding: 16px 20px; }
  .progress-step { font-size: 0; padding: 12px 4px; }
  .progress-step .n { margin: 0; font-size: .78rem; width: 26px; height: 26px; }
  /* Keep the header on one tidy line - the tagline lives in the hero anyway. */
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 1.08rem; white-space: nowrap; }
  .brand-sub { display: none; }
  .header-cta .btn { padding: 10px 15px; font-size: .85rem; }

  .hero-logo { width: min(260px, 66%); }
  /* On a phone the badge sits in the empty corner above the logo instead of
     over the "They poop it. We scoop it." lockup inside it. */
  .hero-price-tag { top: 0; right: 0; bottom: auto; padding: 9px 14px; }
  .hero-price-tag .amt { font-size: 1.55rem; }
  .prepay { gap: 16px; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }
}
