/* ============================================================
   Apple Design System – Sherman Ave Laundromat (All Light)
   ============================================================ */

:root {
  --page: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #eef7fb;
  --surface-warm: #fff8e8;
  --ink: #14233a;
  --muted: #526273;
  --line: #d7e3ea;
  --brand: #006a8e;
  --brand-dark: #024b68;
  --brand-soft: #dff4fb;
  --accent: #f4b400;
  --success: #198754;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(20, 35, 58, 0.12);
  --shadow-soft: 0 10px 30px rgba(20, 35, 58, 0.08);
  --radius: 8px;
  --max-width: 1120px;
  --font-display: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-text: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Backward-compatible aliases used by existing components. */
  --gray-light: var(--surface-soft);
  --near-black: var(--ink);
  --apple-blue: var(--brand);
  --link-blue: var(--brand-dark);
  --card-shadow: var(--shadow-soft);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
  color: var(--near-black);
  background: var(--page);
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
a {
  transition: background-color 180ms ease, opacity 160ms ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── Skip link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--apple-blue);
  color: var(--white);
  border-radius: 8px;
  font-family: var(--font-text);
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-shell,
.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--near-black);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 800;
  color: var(--near-black);
  letter-spacing: normal;
}

.brand-copy span {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: normal;
}

/* Shared heading font */
.section-heading h1,
.section-heading h2,
.hero-copy h1,
.cta-band h2,
.faq-lead h1,
.page-hero h1,
.service-card h2,
.detail-card h2,
.contact-card h2,
.facility-card h3,
.value-card h3,
.process-step h3,
.showcase-content h2,
.footer-brand strong {
  font-family: var(--font-display);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  border-radius: 8px;
  padding: 0.5rem;
  color: var(--near-black);
  cursor: pointer;
}

.nav-toggle svg {
  display: block;
  stroke: var(--near-black);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-actions a {
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-actions a:hover {
  color: var(--near-black);
}

.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 800;
}

.lang-link {
  color: var(--brand-dark) !important;
  background: var(--brand-soft);
  border-radius: 999px;
}

/* ── Buttons ────────────────────────────────────────────── */
.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.05rem;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

.button {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.button:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.button-secondary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary:hover {
  background: #3a3a3c;
  color: var(--white);
}

/* Pill ghost links – Apple's "Learn more / Shop" CTA */
.button-ghost {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
  border-radius: 999px;
}

.button-ghost:hover {
  text-decoration: underline;
}

/* Ghost button on the blue CTA band */
.cta-band .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Section backgrounds: alternating white / gray ──────── */
main > section {
  padding: 4.5rem 0;
}

main > section:nth-child(odd) {
  background: var(--page);
}

main > section:nth-child(even) {
  background: var(--surface);
}

/* Hero is always white */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(223, 244, 251, 0.92), rgba(255, 248, 232, 0.78)),
    var(--surface);
  padding: 5.5rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 48%;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 106, 142, 0.18), transparent 62%);
  pointer-events: none;
}

/* Feature-band CTA keeps Apple Blue */
.feature-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand)) !important;
}

/* ── Hero copy ──────────────────────────────────────────── */
.hero-grid,
.section-grid,
.contact-grid,
.location-grid,
.footer-grid,
.stats-grid,
.steps-grid,
.values-grid,
.cards-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-copy {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: var(--surface-warm);
  color: #6f4b00;
  border: 1px solid rgba(244, 180, 0, 0.36);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy h1,
.page-hero h1,
.faq-lead h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--near-black);
}

.hero-copy > p,
.page-hero > p,
.faq-lead > p,
.lead {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
  color: var(--muted);
}

.hero-badge-row,
.mini-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--near-black);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ── Hero visual ────────────────────────────────────────── */
.hero-visual {
  min-height: 480px;
  display: grid;
  gap: 1rem;
}

.hero-photo-frame,
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo-frame {
  min-height: 480px;
  border: 8px solid var(--surface);
}

.hero-photo,
.showcase-image,
.poster-image,
.card-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36));
}

.hero-floating-card,
.photo-callout {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--card-shadow);
}

.hero-floating-card.top {
  top: 1rem;
  right: -0.25rem;
}

.hero-floating-card.bottom {
  left: -0.25rem;
  bottom: 1rem;
}

.hero-floating-card strong,
.photo-callout strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--near-black);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-floating-card span,
.photo-callout span {
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 12px;
  letter-spacing: 0;
}

/* ── Section headings ───────────────────────────────────── */
.section-heading,
.faq-lead,
.footer-brand {
  margin-bottom: 2rem;
}

.section-heading {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.section-heading h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: normal;
  color: var(--near-black);
}

.section-heading p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* ── Services 2-column tile layout ─────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-tile {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand-soft);
  border: 1px solid rgba(0, 106, 142, 0.18);
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
}

.service-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.19;
  letter-spacing: 0;
  color: var(--near-black);
}

.service-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-tile {
    padding: 1.25rem;
  }
}

/* ── Cards ──────────────────────────────────────────────── */
.cards-grid,
.values-grid,
.stats-grid,
.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cards on gray sections get white bg + shadow */
main > section:nth-child(odd) .card,
main > section:nth-child(odd) .value-card,
main > section:nth-child(odd) .facility-card,
main > section:nth-child(odd) .process-step,
.hero .card {
  background: var(--white);
  box-shadow: var(--card-shadow);
  border: none;
}

/* Cards on white sections get gray bg, no shadow */
main > section:nth-child(even) .card,
main > section:nth-child(even) .value-card,
main > section:nth-child(even) .facility-card,
main > section:nth-child(even) .process-step {
  background: var(--gray-light);
  box-shadow: none;
  border: none;
}

.card,
.value-card,
.facility-card,
.process-step,
.faq-card,
.statement-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.icon-badge {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--brand);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
}

.card h3,
.value-card h3,
.facility-card h3,
.process-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.19;
  letter-spacing: 0;
  color: var(--near-black);
}

.card p,
.value-card p,
.facility-card p,
.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--muted);
}

/* ── Offers section ─────────────────────────────────────── */
.offers-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offers-posters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.poster-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 240px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.poster-card img {
  min-height: 100%;
}


.poster-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--near-black);
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.offers-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.offer-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.offer-row:last-child {
  border-bottom: none;
}

.offer-row .icon-badge {
  flex: none;
  margin-bottom: 0;
}

.offer-row h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--near-black);
}

.offer-row p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0;
}

.offer-row a {
  color: var(--link-blue);
}

@media (max-width: 640px) {
  .offers-posters {
    grid-template-columns: 1fr;
  }

  .offer-row {
    padding: 1.25rem;
  }
}

/* ── Services page layouts ──────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.steps-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.steps-grid-2col .process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--apple-blue);
  color: var(--white);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .detail-grid,
  .steps-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* ── Why section ────────────────────────────────────────── */
.section-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.detail-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
  color: var(--near-black);
}

/* ── Feature lists ──────────────────────────────────────── */
.why-list,
.feature-list,
.contact-list,
.statement-list,
.footer-links,
.info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.why-list li,
.feature-list li,
.contact-list li,
.statement-list li,
.info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.8);
}

.why-list li:last-child,
.feature-list li:last-child,
.contact-list li:last-child,
.statement-list li:last-child,
.info-list li:last-child {
  border-bottom: 0;
}

.check {
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

/* ── CTA Band (Apple Blue accent section) ───────────────── */
.cta-band {
  padding: 3rem 2rem;
  margin: 0;
  background: none;
  color: var(--white);
  text-align: center;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: 0;
  color: var(--white);
}

.cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.cta-band .cta-actions {
  justify-content: center;
}

.cta-band .button {
  background: var(--white);
  color: var(--apple-blue);
}

.cta-band .button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-band .button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}

/* ── Showcase (machines section) ────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
}

.showcase-media {
  position: relative;
  min-height: 460px;
}

.showcase-media .photo-card {
  height: 100%;
  min-height: 460px;
}

.showcase-content {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.showcase-content h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.10;
  color: var(--near-black);
}

.showcase-content p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 0.75rem;
}

.showcase-points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.showcase-points li {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  box-shadow: none;
  font-size: 14px;
  color: var(--muted);
}

.showcase-points strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--near-black);
}

/* ── Location / contact card ────────────────────────────── */
.location-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
  color: var(--near-black);
}

.contact-card > p {
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.contact-card a {
  color: var(--link-blue);
}

.map-frame {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
}

/* ── Page heroes (inner pages) ──────────────────────────── */
.page-hero,
.faq-lead {
  padding: 2.5rem;
  margin-top: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-soft), var(--surface-warm));
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.page-hero h1,
.faq-lead h1 {
  color: var(--near-black);
}

.page-hero p,
.faq-lead p {
  color: var(--muted);
}

/* ── Split hero (inner pages) ───────────────────────────── */
.split-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: stretch;
}

.page-visual {
  min-height: 340px;
}

.page-visual .photo-card {
  height: 100%;
  min-height: 340px;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.1rem;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 900;
  color: var(--near-black);
  letter-spacing: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--brand-dark);
}

.faq-item p {
  padding-bottom: 1rem;
  margin: 0;
  font-size: 17px;
  color: var(--muted);
}

/* ── Stats & process ────────────────────────────────────── */
.stats-grid .card {
  background: var(--white);
}

.stat {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.steps-grid {
  counter-reset: step;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--apple-blue);
  color: var(--white);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #0f1f33;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3rem 0 6rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2rem;
}

.footer-panel {
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: normal;
  margin-bottom: 0.5rem;
}

.footer-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0;
  margin: 0 0 0.75rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-text);
  font-size: 14px;
  letter-spacing: 0;
}

.footer-links a:hover {
  color: var(--white);
}

.info-list li {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.info-list a {
  color: var(--white);
}

.copyright {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0;
}

/* ── Mobile CTA bar ─────────────────────────────────────── */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--line);
}

.mobile-cta .wrap {
  width: min(calc(100% - 0rem), 560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

/* ── Utility ────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--muted);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 861px) {
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .showcase-grid,
  .split-hero,
  .location-grid,
  .contact-grid,
  .footer-grid,
  .faq-grid,
  .cards-grid,
  .values-grid,
  .stats-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .page-hero,
  .faq-lead,
  .cta-band,
  .showcase-content {
    padding: 2rem;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.25rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    color: var(--near-black);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    padding-bottom: 76px;
  }

  main > section,
  .hero {
    padding: 3rem 0;
  }

  .footer {
    padding-top: 2.5rem;
  }

  .container,
  .nav-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .showcase-content,
  .page-hero,
  .faq-lead,
  .cta-band,
  .statement-card,
  .card,
  .value-card,
  .facility-card,
  .process-step,
  .contact-card,
  .detail-card,
  .faq-card {
    padding: 1.25rem;
  }

  .location-grid,
  .contact-grid,
  .footer-grid,
  .faq-grid,
  .cards-grid,
  .poster-grid,
  .showcase-grid,
  .split-hero,
  .values-grid,
  .stats-grid,
  .steps-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1,
  .faq-lead h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    flex-direction: column;
  }

  .map-frame {
    min-height: 280px;
  }

  .hero-photo-frame,
  .showcase-media .photo-card,
  .page-visual .photo-card {
    min-height: 320px;
  }

  .hero-floating-card.top,
  .hero-floating-card.bottom {
    position: static;
    max-width: none;
    margin-top: 0.5rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .section-heading {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
