/* Computer-Rettungswagen — IT-Service Berlin.

   Ported from the design canvas in `Computer rettungs/Computer-Rettungswagen.dc.html`:
   warm paper canvas, near-black ink, a single rescue-red accent, hairline borders and
   generously spaced sections. The canvas kept everything in inline styles; here it is a
   class system so component templates stay markup-only (the CMS rejects active content in
   templates and inline style attributes would be unmaintainable across 30+ components).

   Typography is a system stack, not a webfont. The canvas asks for Bricolage Grotesque +
   Instrument Sans + JetBrains Mono, but this is a German site: loading Google Fonts
   client-side ships visitor IPs to Google before any consent (LG München I, 3 O 17493/20),
   the same reason `wear-emori` uses system stacks. Self-host the WOFF2s and prepend the
   real families to --crw-font-display / --crw-font / --crw-font-mono to get the canvas
   faces back. */

:root {
  --crw-bg: oklch(0.972 0.009 75);
  --crw-panel: oklch(0.99 0.006 75);
  --crw-panel-strong: oklch(0.985 0.006 75);
  --crw-tint: oklch(0.955 0.011 75);
  --crw-tint-deep: oklch(0.97 0.009 75);
  --crw-ink: oklch(0.24 0.02 45);
  --crw-ink-soft: oklch(0.32 0.02 45);
  --crw-body: oklch(0.42 0.02 45);
  --crw-muted: oklch(0.5 0.02 45);
  --crw-mono-ink: oklch(0.52 0.02 45);
  --crw-line: oklch(0.88 0.014 70);
  --crw-line-soft: oklch(0.92 0.012 70);
  --crw-line-strong: oklch(0.85 0.015 70);
  --crw-red: oklch(0.52 0.18 27);
  --crw-red-deep: oklch(0.45 0.17 27);
  --crw-red-light: oklch(0.68 0.14 27);
  --crw-green: oklch(0.55 0.13 150);
  --crw-green-ink: oklch(0.38 0.09 150);
  --crw-green-tint: oklch(0.93 0.03 150);
  --crw-star: oklch(0.66 0.14 75);
  --crw-on-dark: oklch(0.96 0.008 75);
  --crw-on-dark-soft: oklch(0.78 0.015 75);
  --crw-shell: 1200px;
  --crw-pad: clamp(16px, 3vw, 24px);
  --crw-section: clamp(44px, 5vw, 72px);
  --crw-font: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --crw-font-display: "Bricolage Grotesque", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --crw-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --crw-hatch: repeating-linear-gradient(135deg, oklch(0.93 0.014 70) 0 10px, oklch(0.955 0.01 70) 10px 20px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--crw-bg);
  color: var(--crw-ink);
  font-family: var(--crw-font);
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
}

a { color: var(--crw-red); text-decoration: none; }
a:hover { color: var(--crw-red-deep); }
h1, h2, h3, h4 { font-family: var(--crw-font-display); margin: 0; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; max-width: 100%; }
img, svg { max-width: 100%; }
summary::-webkit-details-marker { display: none; }

/* The sticky call bar overlaps the last section otherwise. */
.crw-site { min-height: 100vh; padding-bottom: 72px; }
.crw-shell { max-width: var(--crw-shell); margin: 0 auto; padding-left: var(--crw-pad); padding-right: var(--crw-pad); }
.crw-section { padding-top: var(--crw-section); padding-bottom: var(--crw-section); }
.crw-main { display: block; }

/* Section tones, chosen per section instance in the page composition. */
.crw-tone-band { background: var(--crw-tint); border-top: 1px solid var(--crw-line-soft); border-bottom: 1px solid var(--crw-line-soft); }
.crw-tone-dark { background: var(--crw-ink); color: var(--crw-on-dark); }
.crw-tone-dark h2, .crw-tone-dark h3 { color: var(--crw-on-dark); }

/* ---------- top bar ---------- */
.crw-topbar { background: var(--crw-ink); color: oklch(0.95 0.01 75); font-size: 13px; letter-spacing: 0.01em; }
.crw-topbar-row { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.crw-topbar-live { display: flex; align-items: center; gap: 8px; }
.crw-dot { width: 7px; height: 7px; border-radius: 99px; background: oklch(0.72 0.15 150); box-shadow: 0 0 0 3px oklch(0.72 0.15 150 / 0.25); }
.crw-topbar-meta { opacity: 0.6; }
.crw-topbar-phone { margin-left: auto; color: oklch(0.95 0.01 75); font-weight: 600; }
.crw-topbar-phone:hover { color: #fff; }

/* ---------- header ---------- */
.crw-header { position: sticky; top: 0; z-index: 50; background: oklch(0.985 0.006 75 / 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--crw-line); }
.crw-header-row { display: flex; align-items: center; gap: 20px; padding-top: 12px; padding-bottom: 12px; }
.crw-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: var(--crw-ink); }
.crw-logo:hover { color: var(--crw-ink); }
.crw-logo-image { height: 38px; width: auto; display: block; mix-blend-mode: multiply; }
.crw-logo-mark { display: flex; align-items: center; gap: 9px; }
.crw-logo-badge { width: 34px; height: 34px; border-radius: 9px; background: var(--crw-red); color: #fff; font-family: var(--crw-font-display); font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.crw-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.crw-logo-name { font-family: var(--crw-font-display); font-weight: 700; font-size: 16px; }
.crw-logo-claim { font-size: 11px; color: var(--crw-muted); }
.crw-nav { display: flex; gap: 4px; align-items: center; margin-left: auto; flex-wrap: wrap; }
.crw-nav-link { padding: 9px 8px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--crw-ink-soft); white-space: nowrap; }
.crw-nav-link:hover { background: oklch(0.94 0.014 70); color: var(--crw-ink); }
.crw-header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; margin-left: auto; }
.crw-phonebox { display: flex; flex-direction: column; line-height: 1.15; padding: 7px 11px; border: 1.5px solid var(--crw-line-strong); border-radius: 10px; color: var(--crw-ink); }
.crw-phonebox:hover { border-color: var(--crw-red); color: var(--crw-ink); }
.crw-phonebox-label { font-size: 10.5px; letter-spacing: 0.09em; text-transform: uppercase; color: oklch(0.55 0.02 45); }
.crw-phonebox-number { font-family: var(--crw-font-display); font-weight: 700; font-size: 15px; }
.crw-menu-button { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 10px; border: 1.5px solid var(--crw-line-strong); background: transparent; color: var(--crw-ink); cursor: pointer; flex-shrink: 0; }
.crw-menu-icon { width: 20px; height: 20px; display: block; }
.crw-menu-button[aria-expanded="true"] .crw-menu-icon-open,
.crw-menu-button[aria-expanded="false"] .crw-menu-icon-close { display: none; }
.crw-mobile-nav { display: none; border-top: 1px solid var(--crw-line-soft); background: var(--crw-panel-strong); padding: 10px 16px 16px; gap: 2px; }
.crw-mobile-nav[data-crw-open="true"] { display: grid; }
.crw-mobile-link { padding: 15px 12px; border-radius: 9px; font-size: 17px; font-weight: 600; color: oklch(0.26 0.02 45); border-bottom: 1px solid oklch(0.93 0.01 70); }
.crw-mobile-call { margin-top: 10px; padding: 16px; border-radius: 10px; background: var(--crw-ink); color: #fff; font-weight: 700; font-size: 17px; text-align: center; }
.crw-mobile-call:hover { color: #fff; }

/* ---------- buttons ---------- */
.crw-btn { display: inline-flex; align-items: center; gap: 10px; border-radius: 12px; font-weight: 600; font-size: 17px; padding: 16px 22px; border: 1.5px solid transparent; cursor: pointer; }
.crw-btn-primary { background: var(--crw-red); color: #fff; font-weight: 700; }
.crw-btn-primary:hover { background: var(--crw-red-deep); color: #fff; }
.crw-btn-call { box-shadow: 0 8px 24px oklch(0.52 0.18 27 / 0.22); padding: 17px 24px; font-size: 18px; }
.crw-btn-outline { border-color: oklch(0.30 0.02 45); color: var(--crw-ink); background: transparent; }
.crw-btn-outline:hover { background: var(--crw-ink); color: #fff; }
.crw-btn-ink { display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--crw-ink); color: #fff; padding: 14px 18px; font-size: 15px; font-weight: 600; }
.crw-btn-ink:hover { background: var(--crw-red); color: #fff; }
.crw-btn-label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.8; }
.crw-btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.crw-headcta { padding: 13px 18px; border-radius: 10px; background: var(--crw-red); color: #fff; font-weight: 600; font-size: 15px; white-space: nowrap; }
.crw-headcta:hover { background: var(--crw-red-deep); color: #fff; }
.crw-textlink { font-weight: 600; font-size: 16px; }

/* ---------- hero ---------- */
.crw-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; padding-top: clamp(36px, 5vw, 64px); padding-bottom: 56px; }
.crw-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; border-radius: 99px; background: var(--crw-green-tint); color: var(--crw-green-ink); font-size: 13px; font-weight: 600; margin-bottom: 22px; }
.crw-badge-dot { width: 7px; height: 7px; border-radius: 99px; background: var(--crw-green); }
.crw-hero-title { font-size: clamp(38px, 4.2vw, 60px); line-height: 1.02; font-weight: 700; margin-bottom: 20px; }
.crw-accent { color: var(--crw-red); }
.crw-hero-text { font-size: 19px; line-height: 1.55; color: var(--crw-body); max-width: 34em; margin-bottom: 28px; }
.crw-hero-actions { margin-bottom: 26px; }
.crw-proof { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; padding-top: 22px; border-top: 1px solid var(--crw-line-soft); }
.crw-proof-item { display: flex; flex-direction: column; gap: 3px; }
.crw-proof-value { font-family: var(--crw-font-display); font-size: 17px; font-weight: 700; }
.crw-proof-label { font-size: 13px; color: var(--crw-muted); }
.crw-proof-rating { display: flex; align-items: center; gap: 7px; }
.crw-proof-divider { width: 1px; height: 34px; background: var(--crw-line-soft); }
.crw-stars { color: var(--crw-star); font-size: 15px; letter-spacing: 1px; }
.crw-hero-media { position: relative; }
.crw-floatcard { position: absolute; bottom: -22px; left: -26px; background: var(--crw-panel); border: 1px solid oklch(0.87 0.014 70); border-radius: 14px; padding: 16px 18px; box-shadow: 0 14px 34px oklch(0.24 0.02 45 / 0.10); max-width: 250px; }
.crw-floatcard-title { font-family: var(--crw-font-display); font-weight: 700; font-size: 15px; margin-bottom: 5px; }
.crw-floatcard-text { font-size: 13.5px; line-height: 1.45; color: oklch(0.45 0.02 45); }

/* Placeholder frames stand in for the photography the canvas calls out. Pass an
   image_url to any of these components and the real picture replaces the frame. */
.crw-frame { border-radius: 18px; border: 1px solid oklch(0.86 0.014 70); background-image: var(--crw-hatch); display: flex; padding: 20px; overflow: hidden; }
.crw-frame-portrait { aspect-ratio: 4/5; align-items: flex-start; justify-content: flex-end; }
.crw-frame-landscape { aspect-ratio: 5/4; align-items: flex-end; }
.crw-frame-square { aspect-ratio: 1/1; align-items: flex-end; }
.crw-frame-map { height: 200px; align-items: flex-end; border-radius: 16px; padding: 16px; }
.crw-frame-note { font-family: var(--crw-font-mono); font-size: 12px; color: oklch(0.45 0.02 45); background: oklch(0.98 0.008 75); padding: 7px 10px; border-radius: 6px; }
.crw-image { border-radius: 18px; border: 1px solid oklch(0.86 0.014 70); display: block; width: 100%; height: auto; object-fit: cover; }
.crw-image-portrait { aspect-ratio: 4/5; }
.crw-image-landscape { aspect-ratio: 5/4; }
.crw-image-square { aspect-ratio: 1/1; }

/* ---------- brand strip ---------- */
.crw-brandstrip { border-top: 1px solid var(--crw-line-soft); border-bottom: 1px solid var(--crw-line-soft); background: var(--crw-tint); }
.crw-brandstrip-row { display: flex; align-items: center; gap: 20px 32px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; }
.crw-eyebrow { font-family: var(--crw-font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--crw-mono-ink); }

/* Right-to-left marquee. The track holds the brand list twice — the component template
   renders {{children}} in both groups — so translating it by exactly -50% lands on the
   identical frame and the loop is seamless. Duration scales with the list: 10 brands at
   ~3.4s each. The second group is aria-hidden so the names are announced once. */
.crw-marquee { flex: 1 1 320px; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent); mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent); }
.crw-marquee-track { display: flex; width: max-content; animation: crw-marquee 34s linear infinite; }
.crw-marquee-group { display: flex; align-items: center; gap: 52px; padding-right: 52px; }
.crw-marquee:hover .crw-marquee-track, .crw-marquee:focus-within .crw-marquee-track { animation-play-state: paused; }

@keyframes crw-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Fixed slot width so a 24x24 icon and a text wordmark occupy the same rhythm, and so the
   group stays wider than the viewport however narrow the marks are. */
.crw-brand { display: flex; align-items: center; justify-content: center; width: 100px; height: 30px; flex: 0 0 auto; white-space: nowrap; font-family: var(--crw-font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.01em; color: oklch(0.46 0.015 45); opacity: 0.85; }
/* A raster mark uploaded through the media pipeline (`logo_url`); grayscale() covers a
   colour logo, and the opacity is what turns it down to the strip grey. */
.crw-brand-logo { height: 26px; width: auto; display: block; filter: grayscale(1); opacity: 0.62; }

/* Vector marks are inlined into the markup as <svg> (see the crw-brand component), so
   they inherit colour instead of needing a filter, and cost no extra request. The brand name
   stays in the DOM as the svg's aria-label. */
/* The slot is a fixed 100x30 box and each mark is scaled to fit it (preserveAspectRatio
   defaults to meet), so a wordmark lands wide-and-short and a glyph lands square, the
   way a real logo strip reads. */
.crw-brand-svg { width: 100%; height: 100%; display: block; fill: currentColor; color: oklch(0.44 0.015 45); opacity: 0.72; }

/* ---------- section heading ---------- */
.crw-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.crw-heading-title { font-size: clamp(28px, 3vw, 40px); font-weight: 700; }
.crw-heading-text { font-size: 17px; color: oklch(0.45 0.02 45); margin-top: 10px; }
.crw-tone-dark .crw-heading-text { color: oklch(0.75 0.015 75); max-width: 40em; }
.crw-tone-dark .crw-heading { margin-bottom: 44px; }

/* ---------- grids ---------- */
.crw-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }
.crw-grid-services { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }
.crw-grid-cards { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 18px; }
.crw-grid-wide { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 28px; }
.crw-grid-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.crw-grid-masonry { columns: 272px 3; column-gap: 18px; display: block; }

/* ---------- service cards ---------- */
.crw-service-card { display: flex; flex-direction: column; padding: 22px; border-radius: 14px; background: var(--crw-panel); border: 1px solid var(--crw-line); color: var(--crw-ink); min-height: 186px; transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease; }
.crw-service-card:hover { border-color: var(--crw-red); box-shadow: 0 10px 28px oklch(0.24 0.02 45 / 0.08); transform: translateY(-2px); color: var(--crw-ink); }
.crw-service-rule { width: 22px; height: 4px; border-radius: 99px; background: var(--crw-red); margin-bottom: 16px; }
.crw-service-title { font-size: 18px; font-weight: 600; margin-bottom: 7px; }
.crw-service-text { font-size: 14px; line-height: 1.5; color: oklch(0.47 0.02 45); margin-bottom: 14px; }
.crw-service-price { margin-top: auto; font-family: var(--crw-font-mono); font-size: 12px; color: var(--crw-red); }

/* ---------- steps ---------- */
.crw-step { padding-top: 22px; border-top: 2px solid var(--crw-red); }
.crw-step-num { font-family: var(--crw-font-mono); font-size: 12px; color: var(--crw-red-light); }
.crw-step-title { font-size: 22px; font-weight: 600; margin: 10px 0; }
.crw-step-text { font-size: 16px; line-height: 1.6; color: var(--crw-on-dark-soft); }

/* ---------- about ---------- */
.crw-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 48px); align-items: center; }
.crw-split-top { align-items: start; }
.crw-about-title { font-size: clamp(28px, 3vw, 38px); font-weight: 700; margin: 14px 0 18px; }
.crw-about-text { font-size: 17px; line-height: 1.6; color: var(--crw-body); margin-bottom: 22px; }
.crw-checklist { display: grid; gap: 12px; }
.crw-check { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.crw-check-mark { color: oklch(0.52 0.13 150); font-weight: 700; }

/* ---------- reviews ---------- */
.crw-review { margin: 0; padding: 26px; border-radius: 14px; background: var(--crw-panel); border: 1px solid var(--crw-line); }
.crw-grid-masonry .crw-review { margin: 0 0 18px; padding: 24px; break-inside: avoid; }
.crw-review-stars { color: var(--crw-star); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 14px; }
.crw-review-quote { margin: 0 0 18px; font-size: 16.5px; line-height: 1.6; }
.crw-review-author { font-size: 13.5px; color: var(--crw-muted); }
.crw-rating-summary { display: flex; gap: 44px; flex-wrap: wrap; align-items: center; padding-bottom: 36px; }
.crw-rating-copy { flex: 1; min-width: 320px; }
.crw-rating-score { padding: 28px 34px; border-radius: 16px; border: 1px solid var(--crw-line); background: var(--crw-panel); text-align: center; }
.crw-rating-value { font-family: var(--crw-font-display); font-weight: 800; font-size: 64px; line-height: 1; }
.crw-rating-stars { color: var(--crw-star); letter-spacing: 2px; margin: 8px 0; }
.crw-rating-source { font-size: 14px; color: var(--crw-muted); }

/* ---------- chips ---------- */
.crw-chip { padding: 8px 14px; border-radius: 99px; background: var(--crw-panel); border: 1px solid var(--crw-line); font-size: 14.5px; color: oklch(0.34 0.02 45); }
.crw-chip-link { padding: 11px 16px; font-size: 15px; color: oklch(0.30 0.02 45); }
.crw-chip-link:hover { border-color: var(--crw-red); color: var(--crw-red); }
.crw-districts-text { font-size: 16.5px; line-height: 1.6; color: oklch(0.45 0.02 45); margin-bottom: 20px; }
.crw-districts-title { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; margin-bottom: 14px; }

/* ---------- faq ---------- */
.crw-narrow { max-width: 948px; margin: 0 auto; padding-left: var(--crw-pad); padding-right: var(--crw-pad); }
.crw-faq-title { font-size: clamp(28px, 3vw, 38px); font-weight: 700; margin-bottom: 28px; }
.crw-faq-list { display: grid; gap: 10px; }
.crw-faq-item { border: 1px solid var(--crw-line); border-radius: 12px; background: var(--crw-panel); padding: 18px 22px; }
.crw-faq-question { cursor: pointer; font-family: var(--crw-font-display); font-weight: 600; font-size: 17.5px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.crw-faq-sign { color: var(--crw-red); }
.crw-faq-item[open] .crw-faq-sign { transform: rotate(45deg); }
.crw-faq-answer { margin-top: 14px; font-size: 16px; line-height: 1.65; color: var(--crw-body); }

/* ---------- posts ---------- */
.crw-post { display: block; padding: 24px; border-radius: 14px; background: var(--crw-panel); border: 1px solid var(--crw-line); color: var(--crw-ink); }
.crw-post:hover { border-color: var(--crw-red); color: var(--crw-ink); }
.crw-post-tag { font-family: var(--crw-font-mono); font-size: 11.5px; color: var(--crw-mono-ink); }
.crw-post-title { font-size: 19px; font-weight: 600; margin: 10px 0 8px; line-height: 1.25; }
.crw-post-text { font-size: 14.5px; line-height: 1.55; color: oklch(0.47 0.02 45); }

/* ---------- page header / breadcrumb ---------- */
.crw-breadcrumb { font-size: 13.5px; color: var(--crw-muted); margin-bottom: 18px; }
.crw-breadcrumb-sep { opacity: 0.5; }
.crw-page-header { padding-top: clamp(36px, 5vw, 56px); padding-bottom: 40px; }
.crw-crumbline { padding-top: 22px; }
.crw-page-title { font-size: clamp(34px, 3.8vw, 52px); font-weight: 700; margin-bottom: 16px; line-height: 1.05; }
.crw-page-text { font-size: 19px; line-height: 1.55; color: var(--crw-body); max-width: 46em; }

/* ---------- service detail ---------- */
.crw-service-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 48px); align-items: start; padding-top: 24px; padding-bottom: 56px; }
.crw-service-intro { font-size: 19px; line-height: 1.55; color: var(--crw-body); max-width: 34em; margin-bottom: 26px; }
.crw-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 16px; padding: 20px; border-radius: 14px; background: var(--crw-panel); border: 1px solid var(--crw-line); margin-top: 30px; }
.crw-fact-value { font-family: var(--crw-font-display); font-weight: 700; font-size: 20px; margin-bottom: 3px; }
.crw-fact-label { font-size: 13px; color: var(--crw-muted); }
.crw-symptoms { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 44px); }
.crw-symptoms-title { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; margin-bottom: 12px; }
.crw-symptoms-text { font-size: 16.5px; line-height: 1.6; color: oklch(0.45 0.02 45); }
.crw-symptom-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 12px; }
.crw-symptom { display: flex; gap: 11px; align-items: flex-start; padding: 16px 18px; border-radius: 12px; background: var(--crw-panel); border: 1px solid var(--crw-line); font-size: 15.5px; line-height: 1.45; }
.crw-symptom-arrow { color: var(--crw-red); font-weight: 700; }

/* ---------- price tables and cards ---------- */
.crw-table-title { font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; margin-bottom: 28px; }
.crw-table { border: 1px solid var(--crw-line); border-radius: 14px; overflow: hidden; background: var(--crw-panel); }
.crw-table-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; padding: 18px 22px; border-bottom: 1px solid var(--crw-line-soft); }
.crw-table-item { font-weight: 600; font-size: 16.5px; }
.crw-table-note { font-size: 13.5px; color: var(--crw-muted); }
.crw-table-price { font-family: var(--crw-font-display); font-weight: 700; font-size: 18px; white-space: nowrap; }
.crw-table-foot { padding: 16px 22px; font-size: 14px; color: var(--crw-muted); background: var(--crw-tint-deep); }
.crw-table-hint { margin-top: 16px; font-size: 14px; color: var(--crw-muted); }
.crw-price-card { padding: 28px; border-radius: 16px; border: 1px solid var(--crw-line); background: var(--crw-panel); display: flex; flex-direction: column; }
.crw-price-card-title { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.crw-price-card-value { font-family: var(--crw-font-display); font-weight: 700; font-size: 38px; color: var(--crw-red); margin-bottom: 12px; }
.crw-price-card-text { font-size: 15.5px; line-height: 1.55; color: oklch(0.45 0.02 45); margin-bottom: 18px; }
.crw-price-card-cta { margin-top: auto; padding: 13px 18px; border-radius: 10px; background: var(--crw-ink); color: #fff; font-weight: 600; font-size: 15px; text-align: center; }
.crw-price-card-cta:hover { background: var(--crw-red); color: #fff; }

/* ---------- maintenance tiers ---------- */
.crw-tier { padding: 30px; border-radius: 16px; border: 1px solid var(--crw-line); background: var(--crw-panel); display: flex; flex-direction: column; }
.crw-tier-name { font-size: 22px; font-weight: 700; margin: 12px 0 8px; }
.crw-tier-price { font-family: var(--crw-font-display); font-weight: 700; font-size: 34px; margin-bottom: 18px; }
.crw-tier-period { font-size: 15px; font-weight: 500; color: var(--crw-muted); }
.crw-tier-list { display: grid; gap: 10px; margin-bottom: 22px; }
.crw-tier .crw-check { font-size: 15.5px; }
.crw-tier-cta { margin-top: auto; }

/* ---------- contact ---------- */
.crw-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 4vw, 56px); align-items: start; padding-top: clamp(36px, 5vw, 56px); padding-bottom: 80px; }
.crw-contact-title { font-size: clamp(32px, 3.4vw, 46px); font-weight: 700; margin-bottom: 14px; }
.crw-contact-text { font-size: 18px; line-height: 1.55; color: var(--crw-body); margin-bottom: 28px; max-width: 32em; }
.crw-form { display: grid; gap: 16px; max-width: 560px; }
.crw-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.crw-field { display: grid; gap: 7px; font-size: 14px; font-weight: 600; }
.crw-input { padding: 14px 16px; border-radius: 10px; border: 1.5px solid oklch(0.87 0.014 70); background: oklch(0.995 0.004 75); font-size: 16px; color: inherit; }
.crw-input:focus-visible { outline: 2px solid var(--crw-red); outline-offset: 1px; }
textarea.crw-input { resize: vertical; }
.crw-form-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.crw-form-submit { padding: 17px 26px; border-radius: 12px; border: none; background: var(--crw-red); color: #fff; font-weight: 700; font-size: 17px; cursor: pointer; }
.crw-form-submit:hover { background: var(--crw-red-deep); }
.crw-form-note { font-size: 13.5px; color: var(--crw-muted); }
.crw-aside { display: grid; gap: 16px; }
.crw-aside-emergency { padding: 26px; border-radius: 16px; background: var(--crw-ink); color: var(--crw-on-dark); }
.crw-aside-eyebrow { font-family: var(--crw-font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; }
.crw-aside-phone { font-family: var(--crw-font-display); font-weight: 700; font-size: 29px; color: #fff; display: block; margin-bottom: 10px; }
.crw-aside-phone:hover { color: #fff; }
.crw-aside-text { font-size: 15px; line-height: 1.55; color: oklch(0.8 0.015 75); }
.crw-aside-card { padding: 26px; border-radius: 16px; background: var(--crw-panel); border: 1px solid var(--crw-line); }
.crw-aside-title { font-size: 18px; font-weight: 600; margin-bottom: 14px; }
.crw-aside-address { font-size: 15.5px; line-height: 1.6; color: oklch(0.4 0.02 45); }
.crw-hours { margin-top: 16px; padding-top: 16px; border-top: 1px solid oklch(0.91 0.012 70); font-size: 15px; color: oklch(0.4 0.02 45); display: grid; gap: 6px; }
.crw-hours-row { display: flex; justify-content: space-between; }

/* ---------- legal pages ---------- */
.crw-legal { max-width: var(--crw-shell); margin: 0 auto; padding: 0 var(--crw-pad) 72px; }
.crw-legal-body { max-width: 760px; font-size: 16.5px; line-height: 1.7; color: var(--crw-body); }
.crw-legal-body h2 { font-size: 22px; margin: 28px 0 10px; color: var(--crw-ink); }
.crw-legal-body h3 { font-size: 18px; margin: 22px 0 8px; color: var(--crw-ink); }
.crw-legal-body p { margin-bottom: 12px; }
.crw-legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.crw-legal-body li { margin-bottom: 6px; }
.crw-legal-note { max-width: 760px; margin-bottom: 24px; padding: 16px 18px; border-radius: 12px; background: var(--crw-green-tint); color: var(--crw-green-ink); font-size: 15px; line-height: 1.55; }

/* ---------- closing CTA + footer ---------- */
.crw-cta { background: var(--crw-red); color: #fff; }
.crw-cta-row { display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap; padding-top: clamp(40px, 5vw, 56px); padding-bottom: clamp(40px, 5vw, 56px); }
.crw-cta-copy { flex: 1 1 380px; }
.crw-cta-row .crw-btn-row { flex: 0 1 auto; }
.crw-cta-title { font-size: clamp(26px, 2.8vw, 36px); font-weight: 700; margin-bottom: 8px; color: #fff; }
.crw-cta-text { font-size: 17px; color: oklch(0.94 0.03 27); }
.crw-cta-call { padding: 17px 24px; border-radius: 12px; background: #fff; color: var(--crw-red-deep); font-weight: 700; font-size: 17px; }
.crw-cta-call:hover { background: oklch(0.95 0.01 75); color: var(--crw-red-deep); }
.crw-cta-ghost { padding: 17px 24px; border-radius: 12px; border: 1.5px solid oklch(0.85 0.09 27); color: #fff; font-weight: 600; font-size: 17px; }
.crw-cta-ghost:hover { background: var(--crw-red-deep); color: #fff; }

.crw-footer { background: var(--crw-ink); color: oklch(0.85 0.012 75); }
.crw-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 36px; padding-top: 56px; padding-bottom: 28px; }
.crw-footer-brand { font-family: var(--crw-font-display); font-weight: 700; font-size: 19px; color: #fff; margin-bottom: 12px; }
.crw-footer-text { font-size: 14.5px; line-height: 1.6; color: oklch(0.72 0.015 75); }
.crw-footer-title { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.62 0.02 75); margin-bottom: 14px; }
.crw-footer-list { display: grid; gap: 9px; font-size: 14.5px; }
.crw-footer-link { color: oklch(0.85 0.012 75); }
.crw-footer-link:hover { color: #fff; }
.crw-footer-contact { font-size: 14.5px; line-height: 1.7; color: oklch(0.8 0.015 75); }
.crw-footer-phone { color: #fff; font-weight: 600; }
.crw-footer-phone:hover { color: #fff; }
.crw-footer-bar { padding-top: 20px; padding-bottom: 40px; border-top: 1px solid oklch(0.32 0.02 45); display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: oklch(0.65 0.02 75); }
.crw-footer-bar a { color: oklch(0.65 0.02 75); }
.crw-footer-bar a:hover { color: #fff; }

/* ---------- sticky call bar ---------- */
.crw-stickybar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: oklch(0.99 0.006 75 / 0.95); backdrop-filter: blur(10px); border-top: 1px solid oklch(0.87 0.014 70); }
.crw-stickybar-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
.crw-stickybar-text { font-size: 14.5px; color: var(--crw-body); }
.crw-stickybar-actions { margin-left: auto; display: flex; gap: 10px; flex: 1; justify-content: flex-end; }
.crw-stickybar-ghost { padding: 11px 16px; border-radius: 9px; border: 1.5px solid var(--crw-line-strong); color: var(--crw-ink); font-weight: 600; font-size: 14.5px; }
.crw-stickybar-ghost:hover { border-color: var(--crw-red); color: var(--crw-ink); }
.crw-stickybar-call { padding: 11px 18px; border-radius: 9px; background: var(--crw-red); color: #fff; font-weight: 700; font-size: 14.5px; }
.crw-stickybar-call:hover { background: var(--crw-red-deep); color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 1160px) {
  .crw-nav-link { font-size: 14px; padding: 9px 6px; }
  .crw-logo-claim { display: none; }
  .crw-phonebox { display: none; }
}

@media (max-width: 960px) {
  .crw-nav { display: none; }
  .crw-menu-button { display: flex; }
  .crw-phonebox { display: none; }
}

@media (max-width: 720px) {
  /* The sticky call bar grows to two lines on narrow screens. */
  .crw-site { padding-bottom: 104px; }
  .crw-topbar-meta { display: none; }
  .crw-floatcard { position: static; margin-top: 14px; max-width: none; box-shadow: none; }
  .crw-stickybar-text { display: none; }
  .crw-headcta { padding: 12px 14px; font-size: 14px; }
  .crw-rating-value { font-size: 46px; }
  .crw-rating-summary { gap: 24px; }
  .crw-btn { font-size: 16px; padding: 15px 20px; }
}

/* Below this width the wordmark, the header CTA and the menu button stop fitting on one
   row; the CTA goes, since the sticky bar and the mobile menu both still offer it. */
@media (max-width: 620px) {
  .crw-headcta { display: none; }
  .crw-logo-name { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .crw-service-card { transition: none; }
  .crw-service-card:hover { transform: none; }
  /* No auto-scroll: show one static, swipeable row and hide the duplicate. */
  .crw-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .crw-marquee-track { animation: none; }
  .crw-marquee-group[aria-hidden="true"] { display: none; }
}
