/* ============================================================
   StayReady — Service Pages: shared additions
   Layered on top of styles.css. Reuses existing tokens & classes.
   ============================================================ */

/* ── Services dropdown (header) ─────────────────────────────── */
.primary-nav .has-dropdown {
  position: relative;
}
.primary-nav .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 0;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color var(--t);
}
.primary-nav .dropdown-trigger:hover,
.primary-nav .dropdown-trigger[aria-expanded="true"] { color: var(--steel); }
.primary-nav .dropdown-trigger svg {
  transition: transform 220ms ease;
  margin-top: 1px;
}
.primary-nav .dropdown-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.primary-nav .dropdown-trigger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 18px;
  height: 1px;
  background: var(--steel);
  width: 0;
  transition: width var(--t);
}
.primary-nav .dropdown-trigger:hover::after { width: calc(100% - 18px); }

.services-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -24px;
  min-width: 360px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--light-stone);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 24px 60px -24px rgba(31, 37, 40, 0.22),
              0 6px 18px -10px rgba(31, 37, 40, 0.08);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 200;
}
.has-dropdown.is-open .services-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.services-dropdown ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.services-dropdown a {
  display: grid;
  grid-template-columns: 32px 1fr 16px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  transition: background var(--t), color var(--t);
}
.services-dropdown a:hover { background: var(--warm-cream); color: var(--steel); }
.services-dropdown a.is-active { background: var(--warm-cream); color: var(--steel); }
.services-dropdown a.is-active .sd-num,
.services-dropdown a:hover .sd-num { color: var(--steel); }
.services-dropdown a.is-active .sd-arrow,
.services-dropdown a:hover .sd-arrow { opacity: 1; transform: translateX(0); }
.sd-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 15px;
  color: var(--warm-stone);
  transition: color var(--t);
}
.sd-arrow {
  color: var(--steel);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity var(--t), transform var(--t);
}
.services-dropdown .sd-foot {
  margin-top: 10px;
  padding: 14px 14px 6px;
  border-top: 1px solid var(--light-stone);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.services-dropdown .sd-foot a {
  display: inline-flex;
  padding: 0;
  background: none;
  grid-template-columns: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel);
  gap: 8px;
}
.services-dropdown .sd-foot a:hover { background: none; gap: 12px; }

/* Active page state in primary nav */
.primary-nav a.is-active,
.primary-nav .dropdown-trigger.is-active {
  color: var(--steel);
}
.primary-nav a.is-active::after,
.primary-nav .dropdown-trigger.is-active::after { width: 100%; }
.primary-nav .dropdown-trigger.is-active::after { right: 18px; width: calc(100% - 18px); }

@media (max-width: 980px) {
  .primary-nav .has-dropdown { display: none; }
}

/* Mobile nav: services group */
.mobile-nav .mn-group {
  border-top: 1px solid var(--light-stone);
  padding-top: 8px;
  margin-top: 4px;
}
.mobile-nav .mn-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 14px 0 6px;
}
.mobile-nav .mn-services {
  display: flex;
  flex-direction: column;
}
.mobile-nav .mn-services a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 12px 0;
  font-size: 15.5px;
  border-bottom: 1px solid rgba(232, 227, 220, 0.55);
}
.mobile-nav .mn-services a.is-active { color: var(--steel); }
.mobile-nav .mn-services .sd-num { font-size: 14px; }
.mobile-nav .mn-services a:last-child { border-bottom: none; }

/* ── Page Hero (service detail) ─────────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 88px);
  background: linear-gradient(180deg, var(--white) 0%, var(--warm-cream) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(247, 242, 234, 0.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12.5px;
  color: var(--slate);
  margin-bottom: 28px;
}
.crumbs a { color: var(--slate); transition: color var(--t); }
.crumbs a:hover { color: var(--steel); }
.crumbs span[aria-current="page"] { color: var(--charcoal); font-weight: 500; }
.crumbs .sep {
  color: var(--slate-light);
  font-weight: 300;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.page-hero h1.display {
  font-size: clamp(36px, 5.2vw, 68px);
}
.page-hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.page-hero-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 18px;
  color: var(--warm-stone);
  letter-spacing: 0.02em;
}
.page-hero .eyebrow { margin-bottom: 0; }
.page-hero .lede {
  margin-top: 26px;
  font-size: clamp(16.5px, 1.35vw, 19px);
  max-width: 54ch;
}
.page-hero .hero-cta { margin-top: 32px; }

.page-hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-image-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero-image-tag .tag-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--steel);
}
.page-hero-image-tag .tag-meta {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-image { aspect-ratio: 5 / 4; max-width: 560px; }
}

/* ── Section head — accent rule under eyebrow (service-page variant) ── */
.section-head .accent-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--warm-stone);
  border-radius: 2px;
  margin: 18px 0 22px;
}
.section-head.centered .accent-rule { margin-left: auto; margin-right: auto; }

/* ── What Is Included — two-column with image + bullets ────── */
.included {
  padding: var(--section-y) 0;
  background: var(--white);
}
.included-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.included-inner.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.included-inner.reverse > * { direction: ltr; }
.included-copy .section-head { margin-bottom: 24px; }
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.included-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--light-stone);
}
.included-list li:first-child { border-top: none; padding-top: 0; }
.included-list .il-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 17px;
  color: var(--warm-stone);
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.included-list h4 {
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.included-list p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
  text-wrap: pretty;
  max-width: 52ch;
}
.included-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
  position: relative;
}
.included-image img { width: 100%; height: 100%; object-fit: cover; }
.included-image-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

@media (max-width: 900px) {
  .included-inner,
  .included-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .included-image { aspect-ratio: 5 / 4; max-width: 560px; }
}

/* ── Numbered cards (3-up or 4-up) ─────────────────────────── */
.num-section {
  padding: var(--section-y) 0;
}
.num-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
.num-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.num-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.num-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 1100px) { .num-grid.cols-6 { grid-template-columns: repeat(3, 1fr); } }

.num-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.num-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--warm-stone-light);
}
.num-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: 28px;
  color: var(--warm-stone);
  letter-spacing: 0;
  display: block;
}
.num-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}
.num-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  text-wrap: pretty;
}

/* Cards on warm background variant */
.num-section.section-warm .num-card {
  background: var(--white);
}

@media (max-width: 900px) {
  .num-grid.cols-3, .num-grid.cols-4, .num-grid.cols-6 { grid-template-columns: 1fr; }
}

/* ── Sequential process steps (How It Works) ───────────────── */
.process {
  padding: var(--section-y) 0;
}
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: pstep;
  margin-top: 8px;
  position: relative;
}
.process-list.cols-3 { grid-template-columns: repeat(3, 1fr); }
.process-step {
  position: relative;
  padding: 26px 24px 26px;
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-step::before {
  counter-increment: pstep;
  content: counter(pstep, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--steel);
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: 999px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-top: 6px;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 900px) {
  .process-list,
  .process-list.cols-3 { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Bullet checklist (two-col text + image) ────────────────── */
.checklist {
  padding: var(--section-y) 0;
  background: var(--warm-off-white);
}
.checklist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--charcoal);
  font-weight: 500;
}
.checklist-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-blue-gray);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.checklist-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.checklist-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .checklist-inner { grid-template-columns: 1fr; }
  .checklist-image { aspect-ratio: 5 / 4; max-width: 560px; }
}

/* ── Audience cards (Who This Is For) — 3-up ───────────────── */
.audience {
  padding: var(--section-y) 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.audience-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.audience-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.audience-card > p { flex: 1 0 auto; }
.audience-card .ac-fit { margin-top: auto; }
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--warm-stone-light);
}
.audience-card .ac-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: 26px;
  color: var(--warm-stone);
}
.audience-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}
.audience-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
}
@media (max-width: 900px) {
  .audience-grid, .audience-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ── Related Services link cards ──────────────────────────── */
.related {
  padding: var(--section-y) 0;
  background: var(--light-blue-gray);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.related-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.related-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), box-shadow var(--t);
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(31, 37, 40, 0.22);
}
.related-card-img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--warm-cream);
}
.related-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.related-card:hover .related-card-img img { transform: scale(1.04); }
.related-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--warm-stone);
}
.related-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.related-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
}
.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  transition: gap var(--t);
}
.related-card:hover .related-card-link { gap: 12px; }

@media (max-width: 900px) {
  .related-grid, .related-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ── Page CTA — compact "Start the conversation" ──────────── */
.page-cta {
  padding: var(--section-y) 0;
  background: var(--warm-cream);
}
.page-cta-shell {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--steel);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4.5vw, 64px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  color: #fff;
  box-shadow: 0 32px 80px -32px rgba(31, 37, 40, 0.32);
}
.page-cta-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-cta-shell > * { position: relative; z-index: 1; }
.page-cta-copy .eyebrow {
  color: rgba(255,255,255,0.7);
}
.page-cta-copy .eyebrow::before {
  background: rgba(255,255,255,0.55);
}
.page-cta-copy h2 {
  color: #fff;
  margin: 16px 0 16px;
  font-size: clamp(32px, 3.4vw, 44px);
}
.page-cta-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}
.page-cta-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.page-cta-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-cta-details .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.page-cta-details a,
.page-cta-details span {
  font-size: 15.5px;
  color: #fff;
  font-weight: 400;
}
.page-cta-details a:hover { color: var(--warm-cream); }

.page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-cta-actions .btn {
  justify-content: center;
}
.page-cta-actions .btn-primary {
  background: var(--warm-cream);
  color: var(--steel);
  border-color: var(--warm-cream);
}
.page-cta-actions .btn-primary:hover {
  background: #fff;
  border-color: #fff;
}
.page-cta-actions .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.page-cta-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

@media (max-width: 900px) {
  .page-cta-shell { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ── Editorial section (long-form prose blocks) ───────────── */
.editorial {
  padding: var(--section-y) 0;
}
.editorial-inner {
  max-width: 820px;
  margin: 0 auto;
}
.editorial-prose p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--charcoal);
  text-wrap: pretty;
  margin-top: 22px;
  max-width: 62ch;
}
.editorial-prose p:first-of-type { margin-top: 4px; }
.editorial-prose .pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.35;
  color: var(--steel);
  margin: 36px 0;
  padding-left: 24px;
  border-left: 3px solid var(--warm-stone);
  max-width: 56ch;
}

/* ── Two-col overview ──────────────────────────────────────── */
.overview {
  padding: var(--section-y) 0;
  background: var(--white);
}
.overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.overview-copy p {
  margin-top: 18px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
  max-width: 52ch;
}
.overview-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.overview-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .overview-inner { grid-template-columns: 1fr; }
  .overview-image { aspect-ratio: 5 / 4; max-width: 560px; }
}

/* ── Standard / spec list — slim definition rows ──────────── */
.spec-list {
  list-style: none;
  margin-top: 12px;
  border-top: 1px solid var(--light-stone);
}
.spec-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--light-stone);
  align-items: baseline;
}
.spec-list .sl-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.spec-list h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.spec-list p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 60ch;
}
@media (max-width: 760px) {
  .spec-list li { grid-template-columns: 1fr; gap: 6px; }
}

/* ── Coordination diagram (Property Readiness) ─────────────── */
.coord {
  padding: var(--section-y) 0;
  background: var(--white);
}
.coord-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.coord-diagram {
  background: var(--warm-cream);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
}
.coord-center {
  background: var(--steel);
  color: #fff;
  border-radius: 14px;
  padding: 22px 22px;
  text-align: center;
  position: relative;
  margin: 0 auto 22px;
  max-width: 260px;
}
.coord-center .label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-stone);
  margin-bottom: 8px;
}
.coord-center h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
}
.coord-ring {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.coord-ring .pill {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .coord-inner { grid-template-columns: 1fr; }
}

/* ── Hero of cornerstone (Field Operations) — wider headline ── */
.cornerstone .display { font-size: clamp(40px, 6vw, 76px); }

/* ── Pain-point card variant (Field Operations) ─────────────── */
.pain-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-card .pain-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
.pain-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
}

/* ── 8-up service grid (Field Operations cornerstone) ──────── */
.svc-eight {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-stone);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 8px;
}
.svc-eight li {
  background: var(--white);
  padding: 26px 22px;
  transition: background var(--t);
  display: block;
}
.svc-eight a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.svc-eight li:hover { background: var(--warm-cream); }
.svc-eight .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 17px;
  color: var(--warm-stone);
  letter-spacing: 0.02em;
}
.svc-eight h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.svc-eight p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
}
.svc-eight .arrow {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.svc-eight a:hover .arrow { gap: 12px; }

@media (max-width: 1000px) { .svc-eight { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-eight { grid-template-columns: 1fr; } }

/* ── Footer overrides for sub-pages ──────────────────────── */
.site-footer .footer-col.is-active a { color: #fff; }

/* Sticky CTA hide on service pages (use page CTA instead) */
.sticky-cta { display: none !important; }

/* ── Section padding refinements ────────────────────────── */
.included + .num-section,
.included + .process,
.included + .checklist,
.num-section + .process,
.process + .num-section,
.checklist + .num-section,
.num-section + .audience,
.process + .audience,
.checklist + .audience,
.editorial + .num-section,
.overview + .num-section,
.coord + .audience { padding-top: clamp(56px, 7vw, 96px); }

/* ── Reveal-on-scroll for service pages ──────────────────── */
[data-reveal-svc] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 620ms cubic-bezier(.2,.7,.25,1), transform 620ms cubic-bezier(.2,.7,.25,1);
}
[data-reveal-svc].is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal-svc] { opacity: 1 !important; transform: none !important; }
}


/* ════════════════════════════════════════════════════════════
   FIELD OPERATIONS — additional components (v2 redesign)
   ════════════════════════════════════════════════════════════ */

/* Hero badge stack overlay */
.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px -12px rgba(31,37,40,0.22);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  z-index: 2;
}
.hero-badge .hb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.hero-badge .hb-row::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
}
.hero-badge .hb-row:nth-child(2)::before { background: var(--warm-stone); }
.hero-badge .hb-row:nth-child(3)::before { background: var(--steel-soft); }
@media (max-width: 600px) {
  .hero-badge { left: 16px; right: 16px; bottom: auto; top: 16px; padding: 14px 16px; min-width: 0; }
}

/* ── Definition section: split with system diagram ─────────── */
.def-section { padding: var(--section-y) 0; background: var(--white); }
.def-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.def-copy .section-head { margin-bottom: 0; }
.def-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  margin-top: 16px;
  max-width: 48ch;
}
.def-copy p + p { margin-top: 14px; }

/* System diagram: center outcome + ring of 8 categories */
.sys-diagram {
  position: relative;
  background: var(--warm-cream);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--light-stone);
}
.sys-center {
  background: var(--steel);
  color: #fff;
  border-radius: 16px;
  padding: 22px 22px;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 18px 40px -18px rgba(31,37,40,0.32);
}
.sys-center .label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-stone);
  margin-bottom: 6px;
}
.sys-center h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.01em;
}
.sys-divider {
  display: block;
  margin: 22px auto;
  width: 1px;
  height: 24px;
  background: var(--warm-stone);
  opacity: 0.5;
}
.sys-divider-label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin: -10px 0 20px;
}
.sys-ring {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sys-ring .chip {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.005em;
  transition: border-color var(--t), background var(--t);
}
.sys-ring .chip:hover { border-color: var(--warm-stone); background: #fff; }
.sys-ring .chip .n {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 14px;
  color: var(--warm-stone);
  min-width: 22px;
}
@media (max-width: 900px) {
  .def-inner { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .sys-ring { grid-template-columns: 1fr; }
}

/* ── Comparison module: Fragmented vs StayReady ────────────── */
.compare {
  padding: var(--section-y) 0;
  background: var(--warm-off-white);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
  position: relative;
}
.compare-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--warm-stone);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(31,37,40,0.16);
  letter-spacing: 0.02em;
}
.compare-card {
  border-radius: var(--r-lg);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.compare-card.is-bad {
  background: #fff;
  border: 1px dashed rgba(120,90,80,0.32);
}
.compare-card.is-good {
  background: var(--steel);
  color: #fff;
  border: 1px solid var(--steel);
  box-shadow: 0 24px 56px -28px rgba(31,37,40,0.32);
  position: relative;
  overflow: hidden;
}
.compare-card.is-good::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255,255,255,0.08), transparent 55%);
  pointer-events: none;
}
.compare-card > * { position: relative; z-index: 1; }
.compare-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.compare-card.is-bad .compare-label { color: var(--warm-stone); }
.compare-card.is-good .compare-label { color: var(--warm-stone); }
.compare-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.compare-card.is-bad h3 { color: var(--charcoal); }
.compare-card.is-good h3 { color: #fff; }
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
}
.compare-card.is-bad .compare-list li { color: var(--slate); }
.compare-card.is-good .compare-list li { color: rgba(255,255,255,0.88); }
.compare-list .ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.compare-card.is-bad .ico {
  background: rgba(183,169,154,0.18);
  color: var(--slate);
}
.compare-card.is-good .ico {
  background: rgba(255,255,255,0.16);
  color: #fff;
}
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-vs { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}

/* ── Mid-page CTA band ─────────────────────────────────────── */
.mid-cta {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--white);
}
.mid-cta-inner {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.mid-cta-copy h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--charcoal);
}
.mid-cta-copy p {
  font-size: 14.5px;
  color: var(--slate);
  margin-top: 6px;
  max-width: 50ch;
}
@media (max-width: 760px) {
  .mid-cta-inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Failure mode cards (icon + tight copy) ────────────────── */
.failmode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.failmode-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.failmode-card:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone-light);
  box-shadow: var(--shadow-card);
}
.failmode-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.failmode-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.failmode-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
}
.failmode-card .n {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 14px;
  color: var(--warm-stone);
  letter-spacing: 0.02em;
}
.failmode-card { position: relative; }
@media (max-width: 980px) { .failmode-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .failmode-grid { grid-template-columns: 1fr; } }

/* ── Outcome cards (smaller, 3-up) ─────────────────────────── */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.outcome-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outcome-card .o-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--light-blue-gray);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.outcome-card h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.outcome-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
}
@media (max-width: 760px) { .outcome-grid { grid-template-columns: 1fr; } }

/* ── Guest experience: split + outcomes ────────────────────── */
.guest-exp { padding: var(--section-y) 0; background: var(--white); }
.guest-exp-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.guest-exp-copy p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--slate);
  margin-top: 16px;
  max-width: 48ch;
}
.guest-exp-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.guest-exp-image img { width: 100%; height: 100%; object-fit: cover; }
.guest-exp-image .pill-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guest-exp-image .pill-overlay .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.guest-exp-image .pill-overlay .val {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
@media (max-width: 900px) {
  .guest-exp-inner { grid-template-columns: 1fr; }
  .guest-exp-image { aspect-ratio: 5 / 4; }
}

/* ── 8-up service system (improved with icons) ─────────────── */
.svc-system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.svc-system-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.svc-system-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--steel);
  transition: width 360ms cubic-bezier(.2,.7,.25,1);
}
.svc-system-card:hover::before { width: 100%; }
/* Keyboard focus rings for interactive card links (sitewide a11y) */
.svc-system-card:focus-visible,
.related-card:focus-visible,
.market-card:focus-visible,
.partner-card:focus-visible,
.audience-tile:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
}
.svc-system-card:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone-light);
  box-shadow: var(--shadow-card);
}
.svc-system-card .ss-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.svc-system-card .ss-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}
.svc-system-card:hover .ss-icon {
  background: var(--steel);
  color: #fff;
}
.svc-system-card .ss-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 14px;
  color: var(--warm-stone);
  letter-spacing: 0.02em;
}
.svc-system-card h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.svc-system-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  margin-top: -4px;
}
.svc-system-card .ss-link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.svc-system-card:hover .ss-link { gap: 12px; }
@media (max-width: 1000px) { .svc-system-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-system-grid { grid-template-columns: 1fr; } }

/* ── Coordination flow diagram ─────────────────────────────── */
.coord-flow {
  padding: var(--section-y) 0;
  background: var(--steel-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.coord-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}
.coord-flow .container { position: relative; z-index: 1; }
.coord-flow .eyebrow { color: rgba(255,255,255,0.7); }
.coord-flow .eyebrow::before { background: rgba(255,255,255,0.55); }
.coord-flow h2 { color: #fff; }
.coord-flow .section-lede { color: rgba(255,255,255,0.7); }
.cf-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 12px;
}
.cf-node {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-node.cf-center {
  background: var(--steel);
  border-color: var(--warm-stone);
  position: relative;
  overflow: hidden;
}
.cf-node.cf-center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.cf-node .cf-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-stone);
}
.cf-node h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
}
.cf-node p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.cf-node .cf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.cf-node .cf-tags span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.cf-arrow {
  align-self: center;
  color: var(--warm-stone);
  display: inline-flex;
  align-items: center;
  font-size: 22px;
}
@media (max-width: 900px) {
  .cf-flow { grid-template-columns: 1fr; gap: 12px; }
  .cf-arrow { transform: rotate(90deg); justify-self: center; padding: 0; }
}

/* ── Timeline (process) ────────────────────────────────────── */
.timeline-section {
  padding: var(--section-y) 0;
  background: var(--white);
}
.timeline {
  position: relative;
  margin-top: 8px;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, var(--warm-stone) 0%, var(--light-stone) 100%);
}
.tl-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 22px;
  padding: 16px 0 24px;
  position: relative;
}
.tl-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--steel);
  color: var(--steel);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
.tl-body {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tl-body h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.tl-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 60ch;
}
.tl-item.is-current .tl-dot {
  background: var(--steel);
  color: #fff;
}

/* ── Markets pills (Field Ops markets band) ───────────────── */
.markets-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0;
  max-width: 920px;
  padding: 0;
}
.markets-pills li {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.005em;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.markets-pills li:hover {
  border-color: var(--warm-stone);
  color: var(--steel);
}

/* ════════════════════════════════════════════════════════════
   NEW PAGE COMPONENTS — visual richness pass
   ════════════════════════════════════════════════════════════ */

/* ── Image market cards (markets.html) ────────────────────── */
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.market-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--warm-cream);
  box-shadow: var(--shadow-card);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), box-shadow var(--t);
}
.market-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px -24px rgba(31, 37, 40, 0.28);
}
.market-card-img {
  position: absolute;
  inset: 0;
}
.market-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.market-card:hover .market-card-img img { transform: scale(1.04); }
.market-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,37,40,0) 30%, rgba(31,37,40,0.78) 100%);
}
.market-card-body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.market-card .mc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.market-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
}
.market-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
  max-width: 38ch;
}
.market-card .mc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  width: max-content;
  transition: gap var(--t);
}
.market-card:hover .mc-tag { gap: 12px; }
@media (max-width: 700px) {
  .market-grid { grid-template-columns: 1fr; }
  .market-card { aspect-ratio: 4 / 3; }
}

/* ── Partner card (redesigned) ────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.partner-card:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone-light);
  box-shadow: var(--shadow-card);
}
.partner-logo {
  width: 120px;
  height: 100px;
  background: var(--warm-cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card-body { display: flex; flex-direction: column; gap: 8px; }
.partner-card .pc-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}
.partner-card h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
.partner-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 46ch;
}
@media (max-width: 760px) {
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { grid-template-columns: 1fr; gap: 16px; padding: 28px; }
  .partner-logo { width: 100%; max-width: 200px; height: 88px; }
}

/* ── Markets-mention bar (service pages) ─────────────────── */
.markets-bar-section {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--warm-cream);
}
.markets-bar {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 32px;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.10);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.markets-bar:hover {
  border-color: var(--warm-stone-light);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.markets-bar .mb-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.markets-bar .mb-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.markets-bar .mb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.markets-bar .mb-text {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.markets-bar .mb-link {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  transition: gap var(--t);
}
.markets-bar:hover .mb-link { gap: 12px; }
@media (max-width: 760px) {
  .markets-bar { grid-template-columns: 40px 1fr; gap: 16px; padding: 22px; }
  .markets-bar .mb-icon { width: 40px; height: 40px; }
  .markets-bar .mb-link { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid var(--light-stone); justify-content: space-between; }
}

/* ── Pain-quote refinement: small left accent + hairline ─── */
.pain-quote {
  border-left: 3px solid var(--warm-stone);
  padding-left: 28px;
}
.pain-quote .pq-text {
  font-size: 19px;
}

/* ── Mid-CTA refinement: stronger visual weight ──────────── */
.mid-cta-inner {
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.10);
  transition: box-shadow var(--t);
}
.mid-cta-copy h3 {
  letter-spacing: -0.015em;
}
.mid-cta-copy h3::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--warm-stone);
  border-radius: 1px;
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 6px;
}

/* ════════════════════════════════════════════════════════════
   TURNOVER CLEANING — page-specific refinement components
   ════════════════════════════════════════════════════════════ */

/* ── Hero capability chips (trust strip below hero CTAs) ── */
.hero-cap-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--light-stone);
}
.hero-cap-strip .cap-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.005em;
  transition: border-color var(--t), background var(--t);
}
.hero-cap-strip .cap-chip:hover { border-color: var(--warm-stone); }
.hero-cap-strip .cap-chip .cap-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--light-blue-gray);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Included: grouped feature rows w/ category markers ─── */
.included-groups {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.included-group {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: border-color var(--t), box-shadow var(--t);
}
.included-group:hover {
  border-color: var(--warm-stone-light);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.08);
}
.included-group-head {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
}
.included-group-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.included-group h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.included-group-items {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 28px;
  margin: 14px 0 0;
  padding: 14px 0 0 56px;
  border-top: 1px solid var(--light-stone);
}
.included-group-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  padding: 4px 0;
}
.included-group-items li::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--warm-stone);
  margin-top: 8px;
}
@media (max-width: 600px) {
  .included-group-items { grid-template-columns: 1fr; padding-left: 0; }
}

/* ── Signature: Turnover Readiness Timeline ─────────────── */
.tr-timeline-section {
  padding: var(--section-y) 0;
  background: var(--warm-cream);
  position: relative;
}
.tr-timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--warm-stone) 50%, transparent 100%);
  opacity: 0.4;
}
.tr-timeline-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}
.tr-timeline-head .section-head { margin-bottom: 0; max-width: 56ch; }
.tr-window-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.10);
}
.tr-window-card .lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.tr-window-card .val {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.tr-timeline {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
}
/* Horizontal connecting line, runs across all step heads */
.tr-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--warm-stone) 0,
    var(--warm-stone) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.55;
  z-index: 0;
}
.tr-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 60px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.tr-step:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.tr-step-badge {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--warm-stone);
  color: var(--steel);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tr-step.is-confirm .tr-step-badge {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}
.tr-step-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tr-step h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.tr-step p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate);
}
.tr-step .tr-step-tag {
  margin-top: auto;
  padding-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}

@media (max-width: 1100px) {
  .tr-timeline { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .tr-timeline::before { display: none; }
}
@media (max-width: 760px) {
  .tr-timeline-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .tr-timeline { grid-template-columns: 1fr; gap: 12px; }
  .tr-step { padding: 22px 22px 22px 64px; min-height: 0; }
  .tr-step-badge { top: 22px; left: 18px; }
  .tr-step-icon { top: 20px; right: 18px; }
}

/* ── QA Verification Dashboard module ───────────────────── */
.qa-dashboard {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 8px;
}
.qa-card {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t);
}
.qa-card:hover {
  border-color: var(--warm-stone-light);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.10);
}
.qa-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.qa-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qa-card-title {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.qa-card .qa-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

/* Photo verification (featured tile, spans wider) */
.qa-photo {
  grid-row: span 2;
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
  position: relative;
  overflow: hidden;
}
.qa-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 80% at 0% 0%, rgba(255,255,255,0.07), transparent 55%),
    radial-gradient(40% 80% at 100% 100%, rgba(183,169,154,0.12), transparent 55%);
  pointer-events: none;
}
.qa-photo > * { position: relative; z-index: 1; }
.qa-photo .qa-card-icon { background: rgba(183,169,154,0.18); color: var(--warm-stone-light); }
.qa-photo .qa-card-title { color: #fff; font-size: 24px; }
.qa-photo .qa-meta { color: var(--warm-stone-light); }
.qa-photo .qa-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.qa-photo .qa-photo-grid .ph {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.qa-photo .qa-photo-grid .ph::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.18);
}
.qa-photo .qa-photo-grid .ph svg {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0.55;
  color: rgba(255,255,255,0.4);
}
.qa-photo p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

/* Checklist tile */
.qa-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.qa-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--charcoal);
  padding: 8px 12px;
  background: var(--warm-cream);
  border-radius: 8px;
}
.qa-checklist li .check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--steel);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PMS badge tile */
.qa-pms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qa-pms-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--warm-cream);
  border-radius: 8px;
  font-size: 13.5px;
}
.qa-pms-row .lbl { color: var(--charcoal); font-weight: 500; }
.qa-pms-row .status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2c8d4a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.qa-pms-row .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.18);
}

@media (max-width: 1000px) {
  .qa-dashboard { grid-template-columns: 1fr; }
  .qa-photo { grid-row: auto; }
}

/* ── Completion Record Module (Turnover Cleaning signature) ── */
.completion-record {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr;
  gap: 18px;
  margin-top: 8px;
}
.cr-card {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--t), box-shadow var(--t);
}
.cr-card:hover {
  border-color: var(--warm-stone-light);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.10);
}
.cr-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cr-card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.cr-card-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  padding: 4px 10px;
  border-radius: 999px;
}
.cr-card h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.cr-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.cr-photos .ph {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-stone);
  position: relative;
}
.cr-photos .ph img { width: 100%; height: 100%; object-fit: cover; }
.cr-photos .ph::after {
  content: "";
  position: absolute; top: 6px; right: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.20);
}
.cr-photos-meta {
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
}
.cr-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0; margin: 0;
}
.cr-checklist li {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: var(--warm-cream);
  border-radius: 8px;
  font-size: 13px;
}
.cr-checklist .check {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--steel);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cr-checklist .name { color: var(--charcoal); font-weight: 500; }
.cr-checklist .status { font-size: 10px; font-weight: 700; letter-spacing: 0.10em; color: #2c8d4a; text-transform: uppercase; }
.cr-checklist li.is-flag {
  background: rgba(232, 154, 111, 0.10);
  border: 1px solid rgba(232, 154, 111, 0.32);
}
.cr-checklist li.is-flag .check { background: #E89A6F; }
.cr-checklist li.is-flag .status { color: #b8642c; }
.cr-status {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
  position: relative;
  overflow: hidden;
}
.cr-status::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 0% 0%, rgba(255,255,255,0.06), transparent 55%),
              radial-gradient(60% 80% at 100% 100%, rgba(183,169,154,0.12), transparent 55%);
  pointer-events: none;
}
.cr-status > * { position: relative; z-index: 1; }
.cr-status h4 { color: #fff; font-size: 22px; }
.cr-status .cr-card-label { color: var(--warm-stone-light); }
.cr-status .ready-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,203,113,0.12);
  border: 1px solid rgba(78,203,113,0.32);
  color: #4ECB71;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: max-content;
}
.cr-status .ready-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.22);
}
.cr-status-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0; margin: 4px 0 0;
}
.cr-status-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  font-size: 12px;
}
.cr-status-rows .lbl { color: rgba(255,255,255,0.78); }
.cr-status-rows .dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #4ECB71;
}
.cr-status-rows .dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.22);
}
.cr-breezeway-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
.cr-breezeway-badge .lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-stone-light);
  margin-right: 4px;
}
@media (max-width: 1000px) {
  .completion-record { grid-template-columns: 1fr; }
  .cr-photos { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 540px) {
  .cr-photos { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   LINEN & LAUNDRY — page-specific components
   ════════════════════════════════════════════════════════════ */

/* ── Linen Lifecycle Loop (signature) ───────────────────── */
.linen-loop-section {
  padding: var(--section-y) 0;
  background: var(--white);
  position: relative;
}
.linen-loop-wrap {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.linen-loop-wrap::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 50%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(183,169,154,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.linen-loop-wrap > * { position: relative; z-index: 1; }

.linen-loop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.linen-loop::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--warm-stone) 0,
    var(--warm-stone) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.6;
  z-index: 0;
}
.ll-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 78px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.ll-step:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.ll-step-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--warm-stone);
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ll-step-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ll-step h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.ll-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
}
.ll-step .ll-step-tag {
  margin-top: auto;
  padding-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}

.linen-loop-feedback {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  background: #fff;
  border: 1px dashed var(--warm-stone);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.01em;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.linen-loop-feedback .lp-loop-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--warm-stone);
  color: #fff;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  .linen-loop { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .linen-loop::before { display: none; }
}
@media (max-width: 600px) {
  .linen-loop { grid-template-columns: 1fr; gap: 12px; }
  .ll-step { padding: 22px 22px 22px 76px; }
  .ll-step-badge { top: 24px; left: 22px; }
  .ll-step-icon { top: 22px; right: 22px; }
}

/* ── Audience card best-fit chip ─────────────────────────── */
.audience-card .ac-fit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 5px 11px;
  background: var(--light-blue-gray);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  width: max-content;
  max-width: 100%;
}
.audience-card .ac-fit::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   RESTOCKING & SUPPLIES — page-specific components
   ════════════════════════════════════════════════════════════ */

/* ── Inventory category tiles (replaces text list) ──────── */
.inventory-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 8px;
}
.inv-tile {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.inv-tile:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.inv-tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.inv-tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inv-tile-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--warm-stone);
}
.inv-tile h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.inv-tile p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
}
@media (max-width: 900px) {
  .inventory-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .inventory-tiles { grid-template-columns: 1fr; }
}

/* ── Signature: Restocking Operating Flow + Par Tracker ── */
.restock-flow-section {
  padding: var(--section-y) 0;
  background: var(--warm-cream);
  position: relative;
}
.restock-flow-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--warm-stone) 50%, transparent 100%);
  opacity: 0.4;
}
.restock-flow-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  margin-top: 8px;
}
.restock-flow {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.10);
}
.rf-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
}
.rf-step + .rf-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 1px;
  height: 16px;
  background: var(--warm-stone);
  opacity: 0.5;
}
.rf-step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warm-cream);
  border: 2px solid var(--warm-stone);
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  background-clip: padding-box;
}
.rf-step.is-outcome .rf-step-badge {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}
.rf-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 6px;
}
.rf-step h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.rf-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 50ch;
}

/* Par tracker card */
.par-tracker {
  background: var(--steel);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 36px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.32);
}
.par-tracker::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 80% at 0% 0%, rgba(255,255,255,0.07), transparent 55%),
    radial-gradient(40% 80% at 100% 100%, rgba(183,169,154,0.14), transparent 55%);
  pointer-events: none;
}
.par-tracker > * { position: relative; z-index: 1; }
.par-tracker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.par-tracker-head .label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-stone-light);
}
.par-tracker-head .title {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 2px;
}
.par-tracker-head .status-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4ECB71;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(78,203,113,0.10);
  border: 1px solid rgba(78,203,113,0.32);
  padding: 6px 10px;
  border-radius: 999px;
}
.par-tracker-head .status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.20);
}
.par-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.par-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.par-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.par-row-head .name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.par-row-head .ratio {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.62);
  font-variant-numeric: tabular-nums;
}
.par-bar {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.par-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--warm-stone-light);
  border-radius: 999px;
  transition: width 800ms cubic-bezier(.2,.7,.25,1);
}
.par-bar-fill.is-low {
  background: #E89A6F;
}
.par-bar-fill.is-ok {
  background: #4ECB71;
}
.par-row .par-status {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.par-row .par-status.is-replenish { color: #E89A6F; }
.par-row .par-status.is-ready { color: #4ECB71; }

@media (max-width: 1000px) {
  .restock-flow-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   INSPECTIONS — page-specific components
   ════════════════════════════════════════════════════════════ */

/* ── Six-point verification grid (reuses inv-tile pattern, dedicated styling) */
.verify-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.verify-tile {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.verify-tile:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.verify-tile-head { display: flex; align-items: center; justify-content: space-between; }
.verify-tile-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex; align-items: center; justify-content: center;
}
.verify-tile-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2c8d4a;
}
.verify-tile-check::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.18);
}
.verify-tile h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.verify-tile p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
}
@media (max-width: 900px) { .verify-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .verify-tiles { grid-template-columns: 1fr; } }

/* ── Inspection workflow: 4-step horizontal w/ connector arrows ── */
.inspect-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  position: relative;
}
.inspect-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--warm-stone) 0,
    var(--warm-stone) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.55;
  z-index: 0;
}
.if-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 64px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.if-step:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.if-step-badge {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--warm-stone);
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.if-step.is-outcome .if-step-badge {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}
.if-step-icon {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.if-step h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.if-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
}
.if-step-tag {
  margin-top: auto;
  padding-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}
@media (max-width: 1100px) {
  .inspect-flow { grid-template-columns: repeat(2, 1fr); }
  .inspect-flow::before { display: none; }
}
@media (max-width: 600px) {
  .inspect-flow { grid-template-columns: 1fr; }
  .if-step { padding: 22px 22px 22px 76px; }
  .if-step-badge { top: 22px; left: 22px; }
  .if-step-icon { top: 22px; right: 22px; }
}

/* 5-column variant for Issue Routing Flow */
.inspect-flow.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) {
  .inspect-flow.cols-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .inspect-flow.cols-5 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   SEASONAL SERVICES — Four-Season Cycle (signature)
   ════════════════════════════════════════════════════════════ */
.season-cycle-section {
  padding: var(--section-y) 0;
  background: var(--warm-cream);
  position: relative;
}
.season-cycle-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--warm-stone) 50%, transparent 100%);
  opacity: 0.4;
}
.season-cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  position: relative;
}
.season-cycle::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--warm-stone) 0, var(--warm-stone) 6px, transparent 6px, transparent 12px);
  opacity: 0.55;
  z-index: 0;
}
.sc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.sc-card:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.sc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--light-stone);
}
.sc-card-season {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.sc-card-months {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 13px;
  color: var(--warm-stone);
  letter-spacing: 0.02em;
}
.sc-card-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sc-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.sc-card h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.sc-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
}
.sc-card-tag {
  margin-top: auto;
  padding-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}
.season-loop {
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  background: #fff;
  border: 1px dashed var(--warm-stone);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  max-width: 460px;
}
.season-loop .lp-loop-icon {
  display: inline-flex;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--warm-stone);
  color: #fff;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .season-cycle { grid-template-columns: repeat(2, 1fr); }
  .season-cycle::before { display: none; }
}
@media (max-width: 600px) {
  .season-cycle { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   EXTERIOR SERVICES — First 60 Seconds Arrival Timeline
   ════════════════════════════════════════════════════════════ */
.arrival-timeline-section {
  padding: var(--section-y) 0;
  background: var(--warm-cream);
  position: relative;
}
.arrival-timeline-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--warm-stone) 50%, transparent 100%);
  opacity: 0.4;
}
.arrival-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  position: relative;
}
.arrival-timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--warm-stone) 0, var(--warm-stone) 6px, transparent 6px, transparent 12px);
  opacity: 0.55;
  z-index: 0;
}
.at-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 64px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.at-step:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.at-step-time {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--warm-cream);
  border: 1px solid var(--warm-stone);
  color: var(--steel);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.at-step.is-review .at-step-time {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}
.at-step-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--warm-cream);
  color: var(--steel);
  display: inline-flex; align-items: center; justify-content: center;
}
.at-step h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.at-step p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate);
}
.at-step-tag {
  margin-top: auto;
  padding-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}
@media (max-width: 1100px) {
  .arrival-timeline { grid-template-columns: repeat(2, 1fr); }
  .arrival-timeline::before { display: none; }
}
@media (max-width: 600px) {
  .arrival-timeline { grid-template-columns: 1fr; }
  .at-step { padding: 22px 22px 22px 100px; }
  .at-step-time { top: 24px; left: 18px; }
  .at-step-icon { top: 22px; right: 20px; }
}

/* Coordination chip-flow (inline in overview-copy) */
.coord-chip-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.coord-chip-flow .chip {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  white-space: nowrap;
}
.coord-chip-flow .chip.is-outcome {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}
.coord-chip-flow .arrow {
  color: var(--warm-stone);
  display: inline-flex;
  align-items: center;
}

/* ── Signature: Inspection Report Preview (mock deliverable) ─ */
.report-preview {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 8px;
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--light-stone);
  flex-wrap: wrap;
}
.report-head-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.report-head .label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.report-head .title {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.report-head-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.report-head-meta .meta {
  font-size: 12.5px;
  color: var(--slate);
  font-variant-numeric: tabular-nums;
  display: flex; flex-direction: column; gap: 2px;
}
.report-head-meta .meta strong {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 13px;
}
.report-status-pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2c8d4a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(78,203,113,0.10);
  border: 1px solid rgba(78,203,113,0.32);
  padding: 6px 12px;
  border-radius: 999px;
}
.report-status-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 3px rgba(78,203,113,0.20);
}

.report-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}
.report-section {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.report-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.report-section-head .label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.report-section-head .h {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-top: 2px;
}
.report-section-head .count {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--light-stone);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Photo records mini grid */
.report-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.report-photos .photo {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
}
.report-photos .photo::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 0 2px rgba(78,203,113,0.18);
}

/* Issue list */
.report-issues {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0; margin: 0;
}
.report-issues li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: 8px;
  font-size: 12.5px;
}
.report-issues .sev {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
}
.report-issues .sev.low { background: #4ECB71; }
.report-issues .sev.med { background: #E89A6F; }
.report-issues .sev.high { background: #D87A52; }
.report-issues .body { color: var(--charcoal); line-height: 1.4; }
.report-issues .route {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .report-body { grid-template-columns: 1fr; }
  .report-photos { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 500px) {
  .report-photos { grid-template-columns: repeat(3, 1fr); }
}
.stat-strip {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 56px) clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  box-shadow: 0 1px 0 rgba(31, 37, 40, 0.02), 0 18px 40px -28px rgba(31, 37, 40, 0.10);
}
.stat-strip.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--light-stone);
  position: relative;
}
.stat::before {
  content: "";
  position: absolute;
  top: -8px;
  left: clamp(20px, 2.5vw, 36px);
  width: 24px;
  height: 2px;
  background: var(--warm-stone);
  border-radius: 1px;
}
.stat:first-child { padding-left: 0; }
.stat:first-child::before { left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat .stat-value {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.05;
  text-wrap: balance;
}
.stat .stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.stat .stat-meta {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
  margin-top: 2px;
  max-width: 26ch;
}
@media (max-width: 900px) {
  .stat-strip, .stat-strip.cols-3 { grid-template-columns: repeat(2, 1fr); padding: 32px; gap: 24px; }
  .stat { padding: 0 0 24px 0; border-right: none; border-bottom: 1px solid var(--light-stone); }
  .stat::before { left: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 540px) {
  .stat-strip, .stat-strip.cols-3 { grid-template-columns: 1fr; }
  .stat { padding-bottom: 20px; border-bottom: 1px solid var(--light-stone); }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ── Lifecycle variant: numbered process steps ─────────────── */
.stat-strip.is-lifecycle .stat { gap: 8px; }
.stat-strip.is-lifecycle .stat-step {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--warm-stone);
  text-transform: none;
}
.stat-strip.is-lifecycle .stat-value {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  text-wrap: balance;
}
.stat-strip.is-lifecycle .stat-meta {
  font-size: 13px;
  line-height: 1.55;
  max-width: 32ch;
}
.stat-strip.is-lifecycle .stat::before {
  background: linear-gradient(90deg, var(--warm-stone), var(--warm-stone-light));
  width: 32px;
}

/* ── Value strip (services.html — why one partner) ──────── */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-card .vc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--light-blue-gray);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.value-card h4 {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.value-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
}
@media (max-width: 900px) { .value-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .value-strip { grid-template-columns: 1fr; } }

/* ── Pain strip (who-we-serve) — quoted operator pain ───── */
.pain-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.pain-quote {
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.pain-quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 380;
  color: var(--warm-stone);
  opacity: 0.4;
  line-height: 1;
}
.pain-quote .pq-text {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.pain-quote .pq-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--light-stone);
}
@media (max-width: 900px) { .pain-strip { grid-template-columns: 1fr; } }

/* ── Timeline horizontal (about.html — milestones) ──────── */
.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
  position: relative;
}
.milestones::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  height: 1px;
  background: var(--light-stone);
  z-index: 0;
}
.milestone {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  padding: 38px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}
.milestone .ms-dot {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--steel);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.milestone h4 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.milestone p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
}
@media (max-width: 900px) {
  .milestones { grid-template-columns: 1fr; }
  .milestones::before { display: none; }
}

/* ── Contact info card refinements (visual upgrade) ────── */
.contact-info-card-v2 {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.contact-info-tile {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--t), transform var(--t);
}
.contact-info-tile:hover {
  border-color: var(--warm-stone);
  transform: translateY(-2px);
}
.contact-info-tile .cit-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--light-blue-gray);
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.contact-info-tile .cit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.contact-info-tile .cit-value {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.contact-info-tile a.cit-value { color: var(--charcoal); transition: color var(--t); }
.contact-info-tile a.cit-value:hover { color: var(--steel); }
.contact-info-tile .cit-meta {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
  margin-top: 2px;
}
@media (max-width: 600px) { .contact-info-grid { grid-template-columns: 1fr; } }

/* ── Final CTA dual button band (replaces page-cta for last section variation) */
.final-cta-band {
  padding: var(--section-y) 0;
  background: var(--warm-cream);
}
.final-cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--steel);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px -32px rgba(31, 37, 40, 0.32);
}
.final-cta-band-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 80% at 0% 0%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(40% 80% at 100% 100%, rgba(183,169,154,0.12), transparent 60%);
  pointer-events: none;
}
.final-cta-band-inner > * { position: relative; z-index: 1; }
.final-cta-band-inner .eyebrow {
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.final-cta-band-inner .eyebrow::before { background: rgba(255,255,255,0.55); }
.final-cta-band-inner h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}
.final-cta-band-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.final-cta-band-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.final-cta-band-actions .btn-primary {
  background: var(--warm-cream);
  color: var(--steel);
  border-color: var(--warm-cream);
}
.final-cta-band-actions .btn-primary:hover {
  background: #fff;
  border-color: #fff;
}
.final-cta-band-actions .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.final-cta-band-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}


/* ── Property Readiness: coord-diagram polish (Option B elevation) ── */
.coord-diagram {
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
  position: relative;
}
.coord-center {
  position: relative;
  overflow: hidden;
}
.coord-center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 0% 0%, rgba(255,255,255,0.06), transparent 55%),
              radial-gradient(60% 80% at 100% 100%, rgba(183,169,154,0.10), transparent 55%);
  pointer-events: none;
}
.coord-center > * { position: relative; z-index: 1; }
.coord-center h4 {
  font-size: 24px;
}
.coord-ring .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 12px 16px;
  transition: border-color var(--t), transform var(--t);
}
.coord-ring .pill:hover {
  border-color: var(--warm-stone);
  transform: translateY(-1px);
}
.coord-ring .pill-icon {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--warm-cream);
  color: var(--steel);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ── Linen "Why It Matters" 2-col editorial layout ──────── */
.why-linen-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.why-linen-copy .section-head { margin-bottom: 0; }
.why-linen-copy p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--slate);
  margin-top: 18px;
  max-width: 50ch;
  text-wrap: pretty;
}
.why-linen-panel {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 18px 40px -28px rgba(31,37,40,0.10);
}
.why-linen-panel-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--light-stone);
  margin-bottom: 6px;
}
.why-linen-outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-linen-outcomes > li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-stone);
}
.why-linen-outcomes > li:last-child { border-bottom: none; padding-bottom: 0; }
.why-linen-outcomes > li:first-child { padding-top: 18px; }
.why-linen-outcomes .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 15px;
  color: var(--warm-stone);
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.why-linen-outcomes h3 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin-bottom: 4px;
  text-wrap: balance;
}
.why-linen-outcomes p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 42ch;
}
@media (max-width: 900px) {
  .why-linen-grid { grid-template-columns: 1fr; gap: 36px; }
}


/* ════════════════════════════════════════════════════════════
   LINEN LAUNDRY — Section redesigns (Lifecycle, Audience, Why)
   ════════════════════════════════════════════════════════════ */

/* Lifecycle: circular node flow */
.lifecycle-panel {
  background: var(--warm-cream);
  border: 1px solid var(--light-stone);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.lifecycle-panel::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 50%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(183,169,154,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.lifecycle-panel > * { position: relative; z-index: 1; }
.lifecycle-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  align-items: start;
}
.lifecycle-step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
}
.lifecycle-step::after {
  content: "";
  position: absolute;
  top: 42px;
  left: calc(50% + 48px);
  right: calc(-50% + 48px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--warm-stone) 0, var(--warm-stone) 6px, transparent 6px, transparent 12px);
  opacity: 0.55;
  z-index: 0;
}
.lifecycle-step:last-child::after { display: none; }
.lifecycle-node {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--warm-stone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  z-index: 1;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 14px 28px -16px rgba(31,37,40,0.18);
}
.lifecycle-step:hover .lifecycle-node {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 44px -20px rgba(31,37,40,0.24);
}
.lifecycle-node .ln-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--warm-stone);
}
.lifecycle-node .ln-verb {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.lifecycle-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 24ch;
  margin: 0 auto;
  text-wrap: pretty;
}
.lifecycle-return {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  background: #fff;
  border: 1px dashed var(--warm-stone);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  width: max-content;
  max-width: 100%;
}
@media (max-width: 900px) {
  .lifecycle-flow { grid-template-columns: 1fr; gap: 28px; }
  .lifecycle-step::after {
    top: auto;
    bottom: -22px;
    left: 50%;
    right: auto;
    width: 2px;
    height: 22px;
    background: repeating-linear-gradient(180deg, var(--warm-stone) 0, var(--warm-stone) 6px, transparent 6px, transparent 12px);
    transform: translateX(-50%);
  }
}

/* Audience: differentiated tiles with split body */
.audience-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.audience-tile {
  background: #fff;
  border: 1px solid var(--light-stone);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.audience-tile:hover {
  transform: translateY(-2px);
  border-color: var(--warm-stone-light);
  box-shadow: 0 1px 0 rgba(31,37,40,0.02), 0 22px 48px -28px rgba(31,37,40,0.14);
}
.audience-tile-head {
  padding: 26px 26px 18px;
  border-bottom: 1px solid var(--light-stone);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audience-tile-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--warm-stone);
}
.audience-tile h3 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  text-wrap: balance;
}
.audience-tile-body {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 0 auto;
}
.audience-block { display: flex; flex-direction: column; gap: 4px; }
.audience-block-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-stone);
}
.audience-block p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  text-wrap: pretty;
}
.audience-tile-foot {
  margin-top: auto;
  padding: 16px 26px;
  background: var(--warm-cream);
  border-top: 1px solid var(--light-stone);
}
.audience-tile-fit {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.audience-tile-fit .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 0 3px rgba(55, 80, 101, 0.14);
}
@media (max-width: 900px) {
  .audience-tiles { grid-template-columns: 1fr; }
}

/* Why It Matters panel header refinement */
.why-linen-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--light-stone);
  margin-bottom: 6px;
}
.why-linen-panel-marker {
  display: inline-block;
  width: 3px;
  height: 18px;
  background: var(--warm-stone);
  border-radius: 2px;
}
.why-linen-panel-header .why-linen-panel-label {
  padding: 0;
  border: none;
  margin: 0;
}

/* ── Global reduced-motion guard ─────────────────────────────
   Honors the user's OS "reduce motion" setting across every
   transition, animation, and scaled hover on the service pages. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .related-card:hover .related-card-img img,
  .market-card:hover .market-card-img img,
  .audience-tile:hover,
  .related-card:hover,
  .market-card:hover {
    transform: none !important;
  }
}

/* ── Sitewide arrow-nudge micro-interaction (service + interior pages) ── */
@media (prefers-reduced-motion: no-preference) {
  .btn svg,
  .link-arrow svg,
  .ss-link svg,
  .rc-link svg,
  .mb-link svg,
  .mc-tag svg {
    transition: transform 240ms cubic-bezier(.2, .7, .25, 1);
  }
  .btn:hover svg,
  .link-arrow:hover svg,
  .svc-system-card:hover .ss-link svg,
  .related-card:hover .rc-link svg,
  .markets-bar:hover .mb-link svg,
  .market-card:hover .mc-tag svg {
    transform: translateX(3px);
  }
}


/* ── FAQ accordion (ported for service pages) ── */
.faq { padding: var(--section-y) 0; background: var(--white); }
.faq-inner { max-width: 880px; }
.faq-head { margin-bottom: 40px; }
.faq-head h2 { margin: 0; }
.faq-list { list-style: none; border-top: 1px solid var(--light-stone); margin: 0; padding: 0; }
.faq-item-wrap { list-style: none; }
.faq-item { border-bottom: 1px solid var(--light-stone); }
.faq-item > summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 48px 1fr 28px; gap: 18px; align-items: center; padding: 26px 0; outline: none; user-select: none; transition: color 320ms cubic-bezier(.4,0,.2,1); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ""; }
.faq-num { font-family: var(--font-display); font-weight: 380; font-style: italic; font-size: 18px; letter-spacing: 0.02em; color: var(--warm-stone); transition: color 320ms cubic-bezier(.4,0,.2,1); }
.faq-q { font-family: var(--font); font-size: clamp(17px,1.5vw,19.5px); font-weight: 500; line-height: 1.35; letter-spacing: -0.005em; color: var(--charcoal); transition: color 320ms cubic-bezier(.4,0,.2,1); }
.faq-toggle { position: relative; width: 22px; height: 22px; flex-shrink: 0; justify-self: end; transition: transform 380ms cubic-bezier(.2,.7,.25,1); }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 1.5px; background: var(--steel); border-radius: 2px; transform-origin: center; transition: background 320ms cubic-bezier(.4,0,.2,1); }
.faq-toggle::before { transform: translate(-50%,-50%); }
.faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item > summary:hover .faq-num, .faq-item > summary:hover .faq-q { color: var(--steel); }
.faq-item > summary:focus-visible { outline: 2px solid var(--steel); outline-offset: 4px; border-radius: 4px; }
.faq-item[open] > summary .faq-num, .faq-item[open] > summary .faq-q { color: var(--steel); }
.faq-item[open] > summary .faq-toggle { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-columns: 48px 1fr 28px; gap: 18px; padding-bottom: 26px; }
.faq-answer-inner { grid-column: 2 / 3; background: var(--warm-cream); border-radius: 14px; padding: 22px 26px; max-width: 62ch; }
.faq-answer-inner p { font-size: 15.5px; line-height: 1.7; color: var(--slate); text-wrap: pretty; }
.faq-item .faq-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 380ms cubic-bezier(.2,.7,.25,1); }
.faq-item[open] .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-clip { overflow: hidden; }
.faq-item .faq-answer { opacity: 0; transition: opacity 380ms cubic-bezier(.2,.7,.25,1); }
.faq-item[open] .faq-answer { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .faq-toggle, .faq-toggle::before, .faq-toggle::after, .faq-item .faq-answer-wrap, .faq-item .faq-answer { transition: none !important; } }
@media (max-width: 600px) { .faq-item > summary { grid-template-columns: 32px 1fr 22px; gap: 14px; padding: 22px 0; } .faq-answer { grid-template-columns: 32px 1fr 22px; gap: 14px; padding-bottom: 22px; } .faq-num { font-size: 16px; } .faq-q { font-size: 16.5px; line-height: 1.4; } .faq-answer-inner { padding: 18px 20px; border-radius: 12px; } }

/* ── Eyebrow cleanup: remove gold accent-rule dash + fix centered-eyebrow strikethrough ── */
.accent-rule { display: none !important; }
.section-head.centered .eyebrow::before,
.section-head.centered .eyebrow::after { display: none !important; }
