/* Mega Cleaners & Alterations
   Locked brand system: 5 colors. All-greens family.
   Greens: Pure Mint, Jade, Emerald.
   Supports: Off-White (page base), Ink (type only).

   Emerald is the universal CTA color AND the deep surface color.
   Every primary CTA = Emerald bg, Off-White text. One exception:
   on the Specialty page Emerald hero, the CTA flips to Pure Mint
   bg with Emerald text so it pops against the dark hero.

   Caprasimo wink rule:
     On Off-White, Mint, or Jade backgrounds -> wink is Emerald.
     On Emerald background                    -> wink is Pure Mint.
   No text-shadows. Contrast is naturally high.
*/

:root {
  --mint:      #98FF98;    /* Pure Mint, lightest green. Dry Cleaning + Linen tiles, Three-Diff card 1 */
  --jade:      #5BC07A;    /* Medium green. Alterations + Hosts tiles, Three-Diff card 2, final CTA band */
  --emerald:   #064E3B;    /* Deepest green. CTA color, footer, trust band, Specialty tile, ghost border */
  --emerald-hover: #0A6B52;
  --off-white: #FAFAFA;    /* page base everywhere */
  --ink:       #0A0A0A;    /* type ONLY, never a background or button */

  --ink-60: rgba(10, 10, 10, 0.6);
  --ink-15: rgba(10, 10, 10, 0.15);
  --ink-08: rgba(10, 10, 10, 0.08);
  --ink-06: rgba(10, 10, 10, 0.06);

  --emerald-08: rgba(6, 78, 59, 0.08);
  --emerald-15: rgba(6, 78, 59, 0.15);
  --emerald-30: rgba(6, 78, 59, 0.30);
  --emerald-shadow:    0 6px 20px rgba(6, 78, 59, 0.10);
  --emerald-shadow-lg: 0 12px 32px rgba(6, 78, 59, 0.14);

  --accent: var(--emerald);

  --font-sans: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-wink: "Caprasimo", Georgia, serif;

  --maxw:        1180px;
  --gutter:      clamp(1rem, 3vw, 2rem);
  --section-y:   clamp(3rem, 7vw, 6rem);
  --card-radius: 16px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--emerald);
  color: var(--off-white);
  padding: 12px 16px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Container */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Typography. Ink on light surfaces, Off-White on Emerald. */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
p  { margin: 0 0 1em; }
p.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink); text-wrap: pretty; }

/* Caprasimo wink. All-greens locked rule:
   - On Off-White, Mint, Jade backgrounds: wink is Emerald.
   - On Emerald backgrounds: wink is Pure Mint.
*/
.wink {
  font-family: var(--font-wink);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--emerald);
}
.wink--on-emerald { color: var(--mint); }

/* Eyebrows */
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--emerald);
}

/* Buttons. Emerald is the universal CTA color. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
              color 160ms cubic-bezier(0.23, 1, 0.32, 1),
              border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 120ms cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--emerald);
  color: var(--off-white);
  border-color: var(--emerald);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--emerald-hover);
  border-color: var(--emerald-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--emerald);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--emerald);
  color: var(--off-white);
}
/* Specialty hero exception: the page hero is Emerald, so the standard
   Emerald button would disappear. Flip it to Mint with Emerald text. */
.btn-on-emerald {
  background: var(--mint);
  color: var(--emerald);
  border-color: var(--mint);
}
.btn-on-emerald:hover, .btn-on-emerald:focus-visible {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--emerald);
}

/* Header (Off-White, matches page base) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--off-white);
  border-bottom: 1px solid var(--ink-08);
}
.site-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.85rem;
}
.brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}
.brand-tag {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-wink);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--emerald);
}
.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.primary-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0.25rem;
  transition: color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--emerald);
}
.header-cta,
.primary-nav a.header-cta {
  color: var(--off-white);
  margin-left: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-width: 2px;
  box-shadow: 0 0 0 0 rgba(91, 192, 122, 0.7);
  animation: ctaPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  position: relative;
}
.primary-nav a.header-cta:hover,
.primary-nav a.header-cta:focus-visible {
  color: var(--off-white);
}
.header-cta::before {
  content: "\1F4CD"; /* 📍 pin */
  margin-right: 0.45rem;
  font-size: 1.05em;
  vertical-align: -1px;
  filter: hue-rotate(0deg) saturate(1.2);
}
@media (hover: hover) and (pointer: fine) {
  .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 78, 59, 0.25);
    animation-play-state: paused;
  }
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0   rgba(91, 192, 122, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(91, 192, 122, 0); }
  100% { box-shadow: 0 0 0 0   rgba(91, 192, 122, 0); }
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 2px solid var(--emerald);
  color: var(--ink);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
}

/* Award sub-bar (under header, Off-White). Pill is Off-White with 1px Emerald border. */
.award-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--ink-08);
}
.award-bar-inner {
  display: flex;
  justify-content: center;
  padding-block: 0.55rem;
}
.award-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--off-white);
  color: var(--ink);
  border: 1px solid var(--emerald);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem 0.3rem 0.4rem;
  border-radius: 999px;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
              border-width 160ms cubic-bezier(0.23, 1, 0.32, 1),
              border-color 160ms cubic-bezier(0.23, 1, 0.32, 1);
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .award-pill:hover {
    transform: translateY(-1px);
    border-width: 2px;
    padding: calc(0.3rem - 1px) calc(0.7rem - 1px) calc(0.3rem - 1px) calc(0.4rem - 1px);
  }
}
.award-pill .award-cover {
  width: 32px;
  height: 42px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--ink-15);
  flex-shrink: 0;
}
.award-pill .award-star {
  color: var(--mint);
  font-size: 1.1rem;
  line-height: 1;
  width: 32px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald);
  border-radius: 3px;
}
.award-ribbon {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--emerald);
}
.award-ribbon .wink {
  font-family: var(--font-wink);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

/* Sections */
section { padding-block: var(--section-y); }
.section-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-header.left { text-align: left; margin-inline: 0; }
.section-header h2 { margin-bottom: 0.5rem; color: var(--ink); }
.section-header p { color: var(--ink); font-size: 1.05rem; }

/* Hero (Off-White base) */
.hero {
  position: relative;
  background: var(--off-white);
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: clamp(280px, 38vw, 460px);
  height: clamp(280px, 38vw, 460px);
  background: radial-gradient(circle, rgba(91, 192, 122, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1rem; color: var(--ink); }
.hero h1 .wink { color: var(--emerald); }
.hero .lead { max-width: 600px; margin-bottom: 2rem; color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Trust band (Phoenix New Times). Emerald background, Off-White text, Mint accents. */
.bestof-band {
  background: var(--emerald);
  color: var(--off-white);
}
.bestof-band .eyebrow { color: var(--mint); }
.bestof-band h1, .bestof-band h2, .bestof-band h3 { color: var(--off-white); }
.bestof-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}
.bestof-grid .badge-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bestof-cover {
  width: clamp(140px, 18vw, 180px);
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(250, 250, 250, 0.20);
  background: rgba(250, 250, 250, 0.04);
}
.bestof-cover-fallback {
  width: clamp(140px, 18vw, 180px);
  aspect-ratio: 32 / 42;
  border-radius: 6px;
  border: 1px solid rgba(250, 250, 250, 0.20);
  background: rgba(250, 250, 250, 0.04);
  color: var(--mint);
  font-size: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bestof-grid .badge {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--off-white);
}
.bestof-grid .badge .wink { color: var(--mint); }
.bestof-grid blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--off-white);
}
.bestof-grid blockquote .wink { color: var(--mint); }
.bestof-grid blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-wink);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--mint);
}
.bestof-grid .read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--mint);
  border-bottom: 2px solid var(--mint);
  padding-bottom: 2px;
}
.bestof-grid .yelp-pointer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--mint);
}
.bestof-grid .yelp-pointer::before {
  content: "\2605";
  color: var(--mint);
}
@keyframes yelpPulse {
  0%   { box-shadow: 0 0 0 0   rgba(211, 35, 35, 0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(211, 35, 35, 0); }
  100% { box-shadow: 0 0 0 0   rgba(211, 35, 35, 0); }
}

/* Three Differentiators: Mint + Jade + Emerald cards on Off-White base. */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.diff-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 220px;
}
.diff-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.1vw, 1.6rem);
  line-height: 1.15;
}
.diff-card p { margin: 0; }
.diff-card .eyebrow { opacity: 0.78; }

.diff-mint    { background: var(--mint);    color: var(--ink); }
.diff-mint    h3, .diff-mint    p, .diff-mint    .eyebrow { color: var(--ink); }
.diff-mint    .wink { color: var(--emerald); }

.diff-jade    { background: var(--jade);    color: var(--ink); }
.diff-jade    h3, .diff-jade    p, .diff-jade    .eyebrow { color: var(--ink); }
.diff-jade    .wink { color: var(--emerald); }

.diff-emerald { background: var(--emerald); color: var(--off-white); }
.diff-emerald h3, .diff-emerald p, .diff-emerald .eyebrow { color: var(--off-white); }
.diff-emerald .wink { color: var(--mint); }

/* Service tile grid (5 service tiles + Walk-in CTA card)
   Mint tiles never adjacent. Standard layout:
     Row 1: Dry Cleaning (Mint), Alterations (Jade), Linen (Mint)
     Row 2: Specialty (Jade),    Hosts & Teams (Mint), Walk in (Jade) */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(1.75rem, 3vw, 2rem);
  border-radius: var(--card-radius);
  min-height: 220px;
  background: var(--tile-bg);
  color: var(--tile-text);
  outline: 0 solid var(--emerald);
  outline-offset: 0;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
              outline-width 220ms cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}
.service-tile:focus-visible {
  transform: scale(1.02);
  outline-width: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .service-tile:hover {
    transform: scale(1.02);
    outline-width: 2px;
  }
}
.service-tile .tile-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--tile-text);
  opacity: 0.95;
}
.service-tile h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  line-height: 1.15;
  color: var(--tile-text);
}
.service-tile p { margin: 0; font-size: 0.97rem; line-height: 1.45; color: var(--tile-text); }
.service-tile .wink {
  color: var(--tile-wink);
  font-family: var(--font-wink);
  font-style: italic;
}
.service-tile .tile-cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tile-text);
}

[data-service="dry-cleaning"].service-tile { --tile-bg: var(--mint);    --tile-text: var(--ink);       --tile-wink: var(--emerald); }
[data-service="alterations"].service-tile  { --tile-bg: var(--jade);    --tile-text: var(--ink);       --tile-wink: var(--emerald); }
[data-service="linen"].service-tile        { --tile-bg: var(--mint);    --tile-text: var(--ink);       --tile-wink: var(--emerald); }
[data-service="specialty"].service-tile    { --tile-bg: var(--jade);    --tile-text: var(--ink);       --tile-wink: var(--emerald); }
[data-service="business"].service-tile     { --tile-bg: var(--mint);    --tile-text: var(--ink);       --tile-wink: var(--emerald); }

/* Walk-in CTA card (6th cell of the services grid until Rush returns).
   Filled jade tile so it matches the rest of the services grid. */
.walk-in-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(1.75rem, 3vw, 2rem);
  border-radius: var(--card-radius);
  background: var(--jade);
  color: var(--ink);
  outline: 0 solid var(--emerald);
  outline-offset: 0;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
              outline-width 220ms cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 220px;
  text-decoration: none;
}
.walk-in-card:focus-visible {
  transform: scale(1.02);
  outline-width: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .walk-in-card:hover {
    transform: scale(1.02);
    outline-width: 2px;
  }
}
.walk-in-card .tile-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.95;
}
.walk-in-card h3 { margin: 0; color: var(--ink); font-size: clamp(1.3rem, 2.1vw, 1.65rem); line-height: 1.15; }
.walk-in-card p  { margin: 0; color: var(--ink); font-size: 0.97rem; line-height: 1.45; }
.walk-in-card .wink { color: var(--emerald); font-family: var(--font-wink); font-style: italic; }
.walk-in-card .tile-cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

/* Generic card (Off-White on Off-White: needs an edge) */
.card {
  background: var(--off-white);
  border: 1px solid var(--ink-08);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 4px 16px var(--ink-06);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card h3 { margin-bottom: 0.25rem; color: var(--ink); }
.card p  { color: var(--ink); margin: 0; }
.card-icon-strip {
  height: 6px;
  width: 56px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.strip-mint    { background: var(--mint); }
.strip-jade    { background: var(--jade); }
.strip-emerald { background: var(--emerald); }

/* Testimonial trio: 3 Off-White cards on Off-White base, Emerald accent rule. */
.trust-tag {
  text-align: center;
  margin-bottom: 1.75rem;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
}
.trust-tag .wink,
.trust-tag em {
  font-family: var(--font-wink);
  font-style: italic;
  font-weight: 400;
  color: var(--emerald);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--off-white);
  border: 1px solid var(--ink-08);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 16px var(--ink-06);
}
.testimonial blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  border-top: 2px solid var(--emerald);
  padding-top: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.yelp-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 1.75rem auto 0;
  padding: 0.9rem 1.6rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  background: #D32323;
  border: 2px solid #D32323;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(211, 35, 35, 0.7);
  animation: yelpPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  transition: transform 120ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1);
}
.yelp-link-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.yelp-link::before {
  content: "\2605 \2605 \2605 \2605 \2605";
  color: #FFD93D;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  line-height: 1;
}
.yelp-link span {
  text-decoration: none;
  color: #FFFFFF;
}
@media (hover: hover) and (pointer: fine) {
  .yelp-link:hover,
  .yelp-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(211, 35, 35, 0.45);
    color: #FFFFFF;
    animation-play-state: paused;
  }
}

/* Pull-quote default (Off-White card with Emerald accent rule) */
.pullquote {
  background: var(--off-white);
  border: 1px solid var(--ink-08);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem 1.75rem;
  margin-block: 2.5rem;
  color: var(--ink);
  box-shadow: 0 4px 16px var(--ink-06);
}
.pullquote blockquote { margin: 0 0 0.75rem; font-size: 1.15rem; line-height: 1.45; color: var(--ink); }
.pullquote cite { font-style: normal; font-weight: 600; font-size: 0.92rem; color: var(--ink); border-top: 2px solid var(--emerald); padding-top: 0.5rem; display: inline-block; }
.pullquote .wink { color: var(--emerald); }

/* Service-detail-page pullquote becomes the mid-page color reprise. */
[data-service="dry-cleaning"] .pullquote { background: var(--mint); border-color: var(--mint); }
[data-service="dry-cleaning"] .pullquote blockquote { color: var(--ink); }
[data-service="dry-cleaning"] .pullquote cite { color: var(--ink); border-top-color: var(--emerald); }
[data-service="dry-cleaning"] .pullquote .wink { color: var(--emerald); }

[data-service="alterations"] .pullquote { background: var(--jade); border-color: var(--jade); }
[data-service="alterations"] .pullquote blockquote { color: var(--ink); }
[data-service="alterations"] .pullquote cite { color: var(--ink); border-top-color: var(--emerald); }
[data-service="alterations"] .pullquote .wink { color: var(--emerald); }

[data-service="linen-service"] .pullquote { background: var(--emerald); border-color: var(--emerald); color: var(--off-white); }
[data-service="linen-service"] .pullquote blockquote { color: var(--off-white); }
[data-service="linen-service"] .pullquote cite { color: var(--mint); border-top-color: var(--mint); }
[data-service="linen-service"] .pullquote .wink { color: var(--mint); }

/* Specialty: Off-White callout card on the Emerald body, Mint hairline, Mint attribution rule */
[data-service="specialty"] .pullquote {
  background: var(--off-white);
  border: 1px solid var(--mint);
  color: var(--ink);
}
[data-service="specialty"] .pullquote blockquote { color: var(--ink); }
[data-service="specialty"] .pullquote cite { color: var(--ink); border-top-color: var(--mint); }
[data-service="specialty"] .pullquote .wink { color: var(--emerald); }

[data-service="business"] .pullquote { background: var(--jade); border-color: var(--jade); }
[data-service="business"] .pullquote blockquote { color: var(--ink); }
[data-service="business"] .pullquote cite { color: var(--ink); border-top-color: var(--emerald); }
[data-service="business"] .pullquote .wink { color: var(--emerald); }

/* Service-detail-page heroes (full-bleed service color). */
[data-service="dry-cleaning"] .hero { background: var(--mint); }
[data-service="dry-cleaning"] .hero::before { background: radial-gradient(circle, rgba(6, 78, 59, 0.12) 0%, transparent 70%); }
[data-service="dry-cleaning"] .hero h1,
[data-service="dry-cleaning"] .hero .lead { color: var(--ink); }
[data-service="dry-cleaning"] .hero .eyebrow { color: var(--emerald); }
[data-service="dry-cleaning"] .hero h1 .wink { color: var(--emerald); }
[data-service="dry-cleaning"] .hero .btn-ghost { color: var(--ink); border-color: var(--emerald); }
[data-service="dry-cleaning"] .hero .btn-ghost:hover { background: var(--emerald); color: var(--off-white); }

[data-service="alterations"] .hero { background: var(--jade); }
[data-service="alterations"] .hero::before { background: radial-gradient(circle, rgba(6, 78, 59, 0.14) 0%, transparent 70%); }
[data-service="alterations"] .hero h1,
[data-service="alterations"] .hero .lead { color: var(--ink); }
[data-service="alterations"] .hero .eyebrow { color: var(--emerald); }
[data-service="alterations"] .hero h1 .wink { color: var(--emerald); }
[data-service="alterations"] .hero .btn-ghost { color: var(--ink); border-color: var(--emerald); }
[data-service="alterations"] .hero .btn-ghost:hover { background: var(--emerald); color: var(--off-white); }

[data-service="linen-service"] .hero { background: var(--mint); }
[data-service="linen-service"] .hero::before { background: radial-gradient(circle, rgba(6, 78, 59, 0.12) 0%, transparent 70%); }
[data-service="linen-service"] .hero h1,
[data-service="linen-service"] .hero .lead { color: var(--ink); }
[data-service="linen-service"] .hero .eyebrow { color: var(--emerald); }
[data-service="linen-service"] .hero h1 .wink { color: var(--emerald); }
[data-service="linen-service"] .hero .btn-ghost { color: var(--ink); border-color: var(--emerald); }
[data-service="linen-service"] .hero .btn-ghost:hover { background: var(--emerald); color: var(--off-white); }

[data-service="specialty"] .hero { background: var(--emerald); }
[data-service="specialty"] .hero::before { background: radial-gradient(circle, rgba(152, 255, 152, 0.16) 0%, transparent 70%); }
[data-service="specialty"] .hero h1,
[data-service="specialty"] .hero .lead { color: var(--off-white); }
[data-service="specialty"] .hero .eyebrow { color: var(--mint); }
[data-service="specialty"] .hero h1 .wink { color: var(--mint); }
[data-service="specialty"] .hero .btn-primary { background: var(--mint); color: var(--emerald); border-color: var(--mint); }
[data-service="specialty"] .hero .btn-primary:hover { background: var(--off-white); border-color: var(--off-white); color: var(--emerald); }
[data-service="specialty"] .hero .btn-ghost { color: var(--off-white); border-color: var(--off-white); }
[data-service="specialty"] .hero .btn-ghost:hover { background: var(--off-white); color: var(--emerald); }

[data-service="business"] .hero { background: var(--jade); }
[data-service="business"] .hero::before { background: radial-gradient(circle, rgba(6, 78, 59, 0.14) 0%, transparent 70%); }
[data-service="business"] .hero h1,
[data-service="business"] .hero .lead { color: var(--ink); }
[data-service="business"] .hero .eyebrow { color: var(--emerald); }
[data-service="business"] .hero h1 .wink { color: var(--emerald); }
[data-service="business"] .hero .btn-ghost { color: var(--ink); border-color: var(--emerald); }
[data-service="business"] .hero .btn-ghost:hover { background: var(--emerald); color: var(--off-white); }

/* Service-color icon dot used inline with feature lists. Emerald fill for cohesion. */
.svc-icon {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: var(--emerald);
  vertical-align: middle;
  margin-right: 0.5em;
}

/* Story preview block */
.story-preview {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.story-preview .img-placeholder { aspect-ratio: 4 / 5; }
.story-preview .story-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--ink-08);
  border-radius: var(--card-radius);
  display: block;
}

/* Visit block / map */
.visit-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  background: var(--off-white);
  border: 2px solid var(--emerald);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--ink-06);
}
.visit-facts { padding: clamp(1.5rem, 3vw, 2.25rem); }
.visit-facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1rem;
}
.visit-facts dt { font-weight: 600; color: var(--ink); }
.visit-facts dd { margin: 0; color: var(--ink); }
.map-frame {
  border: 0;
  border-left: 2px solid var(--emerald);
  width: 100%;
  min-height: 360px;
  background: var(--off-white);
}

/* Image placeholders */
.img-placeholder {
  background: linear-gradient(135deg, var(--emerald-08), rgba(152, 255, 152, 0.30));
  border: 1px solid var(--ink-08);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 280px;
  text-align: center;
  padding: 1rem;
}

/* Final CTA band: Jade background, Ink headline with Emerald wink, Emerald button. */
.cta-band {
  background: var(--jade);
  color: var(--ink);
  text-align: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.cta-band h2 {
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}
.cta-band .wink { color: var(--emerald); }
.cta-band .btn-primary {
  background: var(--emerald);
  color: var(--off-white);
  border-color: var(--emerald);
}
.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus-visible {
  background: var(--emerald-hover);
  border-color: var(--emerald-hover);
}

/* First responders callout (Visit page) */
.responders {
  background: var(--off-white);
  color: var(--emerald);
  border: 1px solid var(--emerald);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  margin-block: 2.5rem;
}

/* Footer (Emerald) */
.site-footer {
  background: var(--emerald);
  color: var(--off-white);
  padding-block: 3rem 2rem;
}
.site-footer .brand { color: var(--off-white); }
.site-footer .brand-tag { color: var(--mint); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.footer-grid h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mint);
  margin-bottom: 0.75rem;
}
.footer-grid a { color: var(--off-white); transition: color 120ms ease; }
.footer-grid a:hover { color: var(--mint); }
.footer-grid p, .footer-grid li { color: rgba(250, 250, 250, 0.88); font-size: 0.95rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.footer-grid dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 0.3rem 0.75rem; }
.footer-grid dt { color: rgba(250, 250, 250, 0.7); }
.footer-grid dd { margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.18);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.6);
}

/* Service accent helpers */
.accent-stripe { height: 6px; width: 80px; border-radius: 999px; background: var(--accent); margin-bottom: 1rem; }
.accent-text { color: var(--accent); }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink);
  padding-top: 1.25rem;
}
.breadcrumbs a { color: var(--ink); }
.breadcrumbs a:hover { color: var(--emerald); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 500; opacity: 0.7; }

/* On Specialty's Emerald hero, lift breadcrumb contrast to Off-White */
[data-service="specialty"] .breadcrumbs,
[data-service="specialty"] .breadcrumbs a { color: var(--ink); }

/* FAQ */
.faq { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--off-white);
  border: 1px solid var(--ink-08);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 4px 16px var(--ink-06);
}
.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--emerald);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { margin: 0.75rem 0 0; color: var(--ink); }

/* Utility */
.flow > * + * { margin-top: 1rem; }
.text-center { text-align: center; }
.muted { color: var(--ink-60); }
.divider { height: 1px; background: var(--ink-08); margin-block: 2rem; }

/* Page-load stagger reveals. Pure CSS, no JS. Disabled below by prefers-reduced-motion. */
@keyframes mc-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.diff-grid > .diff-card,
.tile-grid > * {
  animation: mc-fade-up 380ms cubic-bezier(0.23, 1, 0.32, 1) both;
}
.diff-grid > .diff-card:nth-child(1) { animation-delay: 60ms; }
.diff-grid > .diff-card:nth-child(2) { animation-delay: 120ms; }
.diff-grid > .diff-card:nth-child(3) { animation-delay: 180ms; }
.tile-grid > *:nth-child(1) { animation-delay: 40ms; }
.tile-grid > *:nth-child(2) { animation-delay: 80ms; }
.tile-grid > *:nth-child(3) { animation-delay: 120ms; }
.tile-grid > *:nth-child(4) { animation-delay: 160ms; }
.tile-grid > *:nth-child(5) { animation-delay: 200ms; }
.tile-grid > *:nth-child(6) { animation-delay: 240ms; }

/* Responsive */
@media (max-width: 880px) {
  .diff-grid,
  .cards-3,
  .tile-grid,
  .trust-grid,
  .bestof-grid,
  .story-preview,
  .visit-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .map-frame { border-left: 0; border-top: 2px solid var(--emerald); min-height: 280px; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
    border-bottom: 1px solid var(--ink-08);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    width: 100%;
    padding-block: 0.85rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--ink-08);
  }
  .header-cta { display: none; }
  .primary-nav .header-cta { display: inline-flex; margin-left: 0; margin-top: 0.75rem; width: 100%; }
  .nav-toggle { display: inline-flex; }
  .site-header-inner { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .service-tile:hover, .walk-in-card:hover { transform: none; }
  html { scroll-behavior: auto; }
}
