/* ─────────────────────────────────────────────
   ACP — shared page styles for inner pages
   ───────────────────────────────────────────── */

/* Active nav state */
.nav__links a.is-active { color: var(--blue-900); }
.nav__links a.is-active::after { width: 100%; }

/* ───────── Page hero ───────── */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 0%, rgba(220,38,38,0.10), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(30,58,138,0.10), transparent 40%);
  z-index: -1;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-top: 0.6rem;
  max-width: 22ch;
}
.page-hero h1 em { font-style: italic; color: var(--red-600); }
.page-hero__lede {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  max-width: 60ch;
}
/* Decorative "section" marker (top-right) */
.page-hero .container { position: relative; z-index: 1; }
.page-hero::after {
  content: '';
  position: absolute;
  top: clamp(1.4rem, 4vw, 2.4rem);
  right: clamp(1.4rem, 4vw, 3rem);
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

/* ── Services: halftone dot pattern + blue accent ── */
.page-hero--services {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}
.page-hero--services::after {
  background-image: radial-gradient(circle, rgba(17, 42, 92, 0.35) 1.5px, transparent 1.6px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
}
.page-hero--services .eyebrow { color: var(--blue-700); }

/* ── Popular: red registration cross + bold "#" ── */
.page-hero--popular {
  background: linear-gradient(180deg, var(--paper), #FBF1F2);
}
.page-hero--popular::after {
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    radial-gradient(circle, transparent 28px, currentColor 28px, currentColor 30px, transparent 30px);
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: 2px 80%, 80% 2px, 100% 100%;
  color: rgba(192, 32, 43, 0.45);
  opacity: 0.85;
}
.page-hero--popular .eyebrow { color: var(--red-600); }

/* ── Catalog: paper-stripe pattern + alphabet hint ── */
.page-hero--catalog {
  background: linear-gradient(180deg, var(--paper), var(--white));
}
.page-hero--catalog::after {
  background-image: repeating-linear-gradient(135deg, rgba(11, 30, 63, 0.07) 0 2px, transparent 2px 14px);
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 75%);
  mask-image: linear-gradient(135deg, #000, transparent 75%);
}
.page-hero--catalog .eyebrow { color: var(--blue-700); }

/* ── Design: grid pattern (designer-y) ── */
.page-hero--design {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}
.page-hero--design::after {
  background-image:
    linear-gradient(rgba(11, 30, 63, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 30, 63, 0.18) 1px, transparent 1px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 30%, transparent 70%);
}
.page-hero--design .eyebrow { color: var(--red-600); }

/* ── Contact: navy gradient + crosshair ── */
.page-hero--contact {
  background: linear-gradient(180deg, var(--paper), #EEF1F8);
}
.page-hero--contact::after {
  background-image:
    radial-gradient(circle at center, transparent 22px, rgba(17, 42, 92, 0.45) 23px, rgba(17, 42, 92, 0.45) 24px, transparent 25px),
    linear-gradient(rgba(17, 42, 92, 0.4), rgba(17, 42, 92, 0.4)),
    linear-gradient(rgba(17, 42, 92, 0.4), rgba(17, 42, 92, 0.4));
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: 100% 100%, 1px 100%, 100% 1px;
}
.page-hero--contact .eyebrow { color: var(--blue-700); }

/* ── Process: clock-style numbered ring ── */
.page-hero--process {
  background: linear-gradient(180deg, var(--paper), var(--white));
}
.page-hero--process::after {
  background-image:
    repeating-conic-gradient(from 0deg at center, rgba(11, 30, 63, 0.18) 0deg, rgba(11, 30, 63, 0.18) 1deg, transparent 1deg, transparent 30deg);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle at center, transparent 35px, #000 36px, #000 calc(100% - 4px), transparent calc(100% - 3px));
  mask-image: radial-gradient(circle at center, transparent 35px, #000 36px, #000 calc(100% - 4px), transparent calc(100% - 3px));
}
.page-hero--process .eyebrow { color: var(--blue-700); }

/* On smaller screens, hide the decorative corner so it doesn't crowd copy */
@media (max-width: 720px) {
  .page-hero::after { display: none; }
}

/* ───────── Process page: step list ───────── */
.process-steps { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--white); }
.step-list {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  list-style: none;
  padding: 0;
}
.step-list::before {
  /* vertical perforation rail running the length */
  content: '';
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 1.5px;
  background-image: linear-gradient(180deg, var(--line) 50%, transparent 50%);
  background-size: 100% 12px;
  background-repeat: repeat-y;
  pointer-events: none;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
  position: relative;
}
.step__num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.step__num span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blue-900);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}
.step:hover .step__num {
  border-color: var(--red-600);
  background: var(--red-600);
  transform: rotate(-6deg) scale(1.05);
}
.step:hover .step__num span { color: var(--white); }
.step__body {
  padding: 0.4rem 0;
}
.step__time {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red-600);
  margin-bottom: 0.45rem;
}
.step__title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--blue-900);
  margin: 0 0 0.6rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.step__body p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  max-width: 56ch;
}
.step__body p a {
  color: var(--blue-700);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}
.step__hints {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}
.step__hints li {
  padding: 0.65rem 0.95rem;
  background: var(--paper);
  border-left: 3px solid var(--blue-700);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.step__hints li strong { color: var(--blue-900); }

@media (max-width: 640px) {
  .step-list::before { display: none; }
  .step { grid-template-columns: 56px 1fr; gap: 1rem; }
  .step__num { width: 50px; height: 50px; }
  .step__num span { font-size: 1.15rem; }
}

/* ───────── Turnaround grid ───────── */
.turnaround {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--paper);
  border-top: 1px dashed var(--line);
}
.turnaround__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.turnaround__item {
  padding: 1.6rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.turnaround__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-700);
}
.turnaround__days {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--red-600);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.turnaround__item h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--blue-900);
  margin: 0 0 0.4rem;
}
.turnaround__item p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; margin: 0; }

/* ───────── Quote calculator ───────── */
.page-hero--quote {
  background: linear-gradient(180deg, var(--paper) 0%, #FFF 100%);
}
.page-hero--quote::after {
  /* receipt-tape vertical stripes */
  background-image: repeating-linear-gradient(0deg, rgba(192, 32, 43, 0.16) 0 1.5px, transparent 1.5px 24px);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 80%);
  mask-image: linear-gradient(180deg, #000 30%, transparent 80%);
}
.page-hero--quote .eyebrow { color: var(--red-600); }

.qc {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--paper);
}
.qc__layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.qc__main { min-width: 0; }
.qc-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.4rem;
}
.qc-section__head { margin-bottom: 1.2rem; }
.qc-section__step {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 0.4rem;
}
.qc-section__head h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 0;
  color: var(--blue-900);
  letter-spacing: -0.005em;
  line-height: 1.15;
}

/* Product grid — large card per product */
.qc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
}
.qc-product {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.3rem;
  padding: 1.2rem 1.1rem 1.1rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.qc-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(192, 32, 43, 0.06));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}
.qc-product:hover {
  transform: translateY(-3px);
  border-color: var(--blue-700);
  box-shadow: 0 10px 24px -8px rgba(11, 30, 63, 0.18);
  background: var(--white);
}
.qc-product:hover::before { opacity: 1; }
.qc-product.is-selected {
  border-color: var(--red-600);
  border-width: 2px;
  background: var(--white);
  padding: calc(1.2rem - 0.5px) calc(1.1rem - 0.5px) calc(1.1rem - 0.5px);
  box-shadow: 0 10px 24px -8px rgba(192, 32, 43, 0.3);
}
.qc-product.is-selected::after {
  content: '✓';
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  width: 22px; height: 22px;
  background: var(--red-600);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.qc-product__icon { font-size: 2rem; line-height: 1; filter: drop-shadow(0 4px 8px rgba(11, 30, 63, 0.15)); }
.qc-product__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--blue-900);
  margin-top: 0.3rem;
}
.qc-product__lede {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Selected-product banner above the option groups */
.qc-product-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: var(--blue-100);
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.qc-product-banner__icon { font-size: 1.7rem; line-height: 1; }
.qc-product-banner strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--blue-900);
  display: block;
}
.qc-product-banner__lede {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}
.qc-product-banner__change {
  margin-left: auto;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue-900);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.qc-product-banner__change:hover { border-color: var(--blue-700); color: var(--red-600); }

/* Option groups */
.qc-step + .qc-step { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px dashed var(--line); }
.qc-step__title {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin: 0 0 0.7rem;
}
.qc-tile-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.qc-tile {
  flex: 0 1 auto;
  min-width: 110px;
  padding: 0.65rem 0.95rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.15s var(--ease), border-color 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease);
}
.qc-tile:hover { border-color: var(--blue-700); transform: translateY(-1px); background: var(--white); }
.qc-tile.is-selected {
  background: var(--blue-900);
  border-color: var(--blue-900);
  color: var(--white);
}
.qc-tile__label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue-900);
}
.qc-tile.is-selected .qc-tile__label { color: var(--white); }
.qc-tile__meta {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}
.qc-tile.is-selected .qc-tile__meta { color: rgba(255,255,255,0.65); }

.qc__disclaimer {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: var(--blue-100);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ── Sticky live summary ── */
.qc__summary {
  position: sticky;
  top: 90px;
  background: var(--blue-900);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 24px 60px -20px rgba(11, 30, 63, 0.5);
  isolation: isolate;
  overflow: hidden;
}
.qc__summary::before {
  /* faint paper-grid background */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 30% 0%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 30% 0%, #000, transparent 75%);
  z-index: -1;
}
.qc-summary__empty { color: rgba(255,255,255,0.7); }
.qc-summary__empty h3 { font-family: var(--display); font-size: 1.25rem; color: var(--paper); margin: 0 0 0.4rem; }
.qc-summary__empty p { font-size: 0.92rem; line-height: 1.5; margin: 0; }

.qc-summary__head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
}
.qc-summary__eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-400);
}
.qc-summary__product { font-family: var(--display); font-size: 1.4rem; color: var(--paper); letter-spacing: -0.005em; }

.qc-summary__price {
  padding: 1.1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.qc-summary__amount {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.qc-summary__per {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-variant-numeric: tabular-nums;
}
.qc-summary__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: grid;
  gap: 0.4rem;
}
.qc-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
}
.qc-summary__list li span {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.qc-summary__list li strong { color: var(--paper); font-weight: 500; text-align: right; }

.qc-summary__cta {
  width: 100%;
  justify-content: center;
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
}
.qc-summary__cta:hover { background: var(--white); color: var(--blue-900); border-color: var(--white); }

.qc-summary__email {
  display: block;
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.qc-summary__email:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.qc-summary__note {
  margin: 1rem 0 0;
  font-size: 0.74rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}

/* Mobile: stack summary below + make it sticky-bottom */
@media (max-width: 980px) {
  .qc__layout { grid-template-columns: 1fr; }
  .qc__summary {
    position: sticky;
    bottom: 0;
    top: auto;
    z-index: 10;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0 calc(-1 * var(--pad));
  }
}

/* ───────── Open-now badge ───────── */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.open-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 0 currentColor;
}
.open-badge.is-open::before {
  background: #16A34A;
  animation: pulse 2.4s var(--ease) infinite;
  color: rgba(22, 163, 74, 0.4);
}
.open-badge.is-closed::before { background: var(--red-500); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 currentColor; }
  70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* ───────── Service detail blocks ───────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-block:last-child { border-bottom: 0; }
.service-block:nth-child(even) {
  grid-template-columns: 1.1fr 1fr;
}
.service-block:nth-child(even) .service-block__art { order: -1; }
@media (max-width: 880px) {
  .service-block, .service-block:nth-child(even) { grid-template-columns: 1fr; }
}
.service-block__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--blue-900);
}
.service-block__copy h2 em { font-style: italic; color: var(--red-600); }
.service-block__lede { color: var(--ink-soft); margin-top: 0.8rem; max-width: 55ch; }
.service-block__list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}
.service-block__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}
.service-block__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-500);
}
.service-block__list strong { color: var(--blue-900); margin-right: 0.3rem; }

.service-block__art {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-block__art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.service-block__art-emoji {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(4rem, 9vw, 7rem);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}
.service-block__art-meta {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ───────── Pricing tiers ───────── */
.pricing-tiers {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}
.pricing-tier {
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.pricing-tier:hover {
  border-color: var(--blue-700);
  transform: translateY(-2px);
}
.pricing-tier__qty { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--blue-900); }
.pricing-tier__price { color: var(--red-600); font-weight: 600; }
.pricing-tier__note { color: var(--muted); font-size: 0.75rem; margin-top: 2px; }

/* ───────── File-format chips ───────── */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.format-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.9rem 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.format-chip:hover { border-color: var(--blue-700); transform: translateY(-2px); }
.format-chip strong { font-family: var(--display); font-weight: 700; color: var(--blue-900); font-size: 1.05rem; letter-spacing: 0.02em; }
.format-chip span { font-size: 0.78rem; color: var(--muted); }

/* ───────── FAQ accordion ───────── */
.faq {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq details[open] { border-color: var(--blue-700); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--blue-900);
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.faq details[open] summary::after {
  content: '−';
  background: var(--red-600);
  color: var(--white);
  transform: rotate(180deg);
}
.faq details > div {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.97rem;
}

/* ───────── Timeline ───────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  counter-reset: t;
  position: relative;
}
.timeline__step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.timeline__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.timeline__step::before {
  counter-increment: t;
  content: counter(t, decimal-leading-zero);
  position: absolute;
  top: -16px; left: 1.4rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(192, 32, 43, 0.3);
}
.timeline__step h3 { color: var(--blue-900); margin-bottom: 0.4rem; }
.timeline__step p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* ───────── Map / location card ───────── */
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.location-card__map {
  width: 100%;
  height: 280px;
  display: block;
  border: 0;
  background: var(--paper-2);
}
.location-card__body {
  padding: 1.4rem 1.5rem;
}
.location-card__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  align-items: baseline;
  border-bottom: 1px dashed var(--line);
}
.location-card__row:last-child { border-bottom: 0; }
.location-card__row strong {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
}
.location-card__row a, .location-card__row span { color: var(--blue-900); font-weight: 500; }
.location-card__row a:hover { color: var(--red-600); }

/* Yelp button — emblem fills the button height edge-to-edge, no white frame */
.yelp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  /* Tight vertical padding so the emblem appears full-bleed top/bottom */
  padding: 0.45rem 1.2rem 0.45rem 0.55rem;
  background: #bf2519;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.yelp-link:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(191, 37, 25, 0.32); background: #a51e15; }
.yelp-link__emblem {
  /* Match the button's content height (1em line-height + a touch); fills edge-to-edge */
  height: clamp(40px, 3em, 56px);
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  /* No background / padding / border — emblem renders straight onto the red pill */
}

/* ───────── Catalog filters ───────── */
.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.7rem;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem 0.45rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
  color: var(--ink-soft);
}
.cat-chip__name { line-height: 1; }
.cat-chip__count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.4rem;
  background: var(--paper);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cat-chip:hover { border-color: var(--blue-700); color: var(--blue-900); transform: translateY(-1px); }
.cat-chip:hover .cat-chip__count { background: var(--blue-100); color: var(--blue-700); }
.cat-chip.is-active {
  background: var(--blue-900);
  color: var(--white);
  border-color: var(--blue-900);
}
.cat-chip.is-active .cat-chip__count {
  background: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
}

/* ───────── Product detail (popular page) ───────── */
.product-details > .container { counter-reset: product; }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px dashed var(--line);
  align-items: start;
  counter-increment: product;
  position: relative;
}
.product-detail:last-child { border-bottom: 0; }
/* Big watermark rank number on each section */
.product-detail::before {
  content: counter(product, decimal-leading-zero);
  position: absolute;
  top: 1.6rem;
  right: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--line);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  opacity: 0.7;
}
.product-detail__copy { position: relative; z-index: 1; }
@media (max-width: 880px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-detail::before { font-size: 3rem; top: 0.8rem; }
}
.product-detail__art {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-2), var(--paper));
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-detail:hover .product-detail__art {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-detail__art-text {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: -0.02em;
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.product-detail__art-tag {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  padding: 0.4rem 0.85rem;
  background: var(--red-600);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-detail__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--blue-900);
}
.product-detail__copy h2 em { font-style: italic; color: var(--red-600); }
.product-detail__lede { color: var(--ink-soft); margin-top: 0.8rem; max-width: 55ch; }

.detail-meta {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.5rem;
}
.detail-meta__row strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red-600);
  margin-bottom: 0.3rem;
}
.detail-meta__row span { color: var(--ink); font-size: 0.92rem; line-height: 1.4; }

.detail-cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ───────── Logo wall ───────── */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.logo-wall__cell {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  border-right: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.logo-wall__cell:hover { background: var(--paper); color: var(--blue-900); }

/* ───────── Configure / mini-form ───────── */
.mini-form {
  margin-top: 1rem;
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.mini-form .field { display: flex; flex-direction: column; gap: 0.3rem; }
.mini-form .field--full { grid-column: 1 / -1; }
.mini-form label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted);
}
.mini-form input, .mini-form select {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mini-form input:focus, .mini-form select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.12);
}
.mini-form__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.mini-form__ok {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.6rem 0.8rem;
  background: rgba(30, 58, 138, 0.06);
  border-left: 3px solid var(--blue-700);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--blue-900);
}
.mini-form__ok.is-error {
  background: rgba(191, 37, 25, 0.08);
  border-left-color: var(--red-600, #bf2519);
  color: #8a1810;
}

/* ───────── End-of-page CTA ───────── */
.cta-band {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800) 60%, var(--blue-700));
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(220,38,38,0.22), transparent 42%),
    radial-gradient(circle at 20% 80%, rgba(30,58,138,0.5), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle paper-grid pattern */
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.cta-band .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Stamp-style decorative tag */
.cta-band__stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-band__stamp::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-400);
  box-shadow: 0 0 0 4px rgba(233, 75, 82, 0.22);
  animation: stampPulse 2.4s ease-in-out infinite;
}
@keyframes stampPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.25); }
}
.cta-band .eyebrow {
  color: var(--red-400) !important;
  margin-bottom: 0.4rem;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--paper);
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.cta-band h2 em { font-style: italic; color: var(--red-400); }
.cta-band p {
  color: rgba(255,255,255,0.78);
  margin-top: 1.1rem;
  max-width: 52ch;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.55;
}
.cta-band__buttons {
  margin-top: 2.2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn--primary {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
}
.cta-band .btn--primary:hover {
  background: var(--white);
  color: var(--blue-900);
  border-color: var(--white);
}
.cta-band .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,0.4); }
.cta-band .btn--ghost:hover { background: var(--paper); color: var(--blue-900); }
/* Tiny "trust" stat row under the buttons */
.cta-band__trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.6rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
}
.cta-band__trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.cta-band__trust span::before {
  content: '✓';
  width: 16px; height: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  font-size: 0.62rem;
  color: var(--red-400);
  font-weight: 700;
}
