@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

/*
  CoaterZ global stylesheet — SINGLE SOURCE OF TRUTH
  File: public/css/coaterz.css
  Rules:
  - Do not add a second component stylesheet.
  - Do not use inline style="" attributes or <style> tags in views/blocks.
  - Do not put interactive JS inline; use public/js/site.js + public/js/lead-form.js.
  - Prefer .cz-* classes. Keep .cz-btn-gold as a CTA alias of .cz-btn-brand.
  - Anchors used by the funnel: #main, #quote, #locations
*/

:root {
  /* CoaterZ brand: black / white / orange */
  --ink: #000000;
  --ink-2: #0d0d0d;
  --ink-soft: #1a1a1a;
  --paper: #f5f5f5;
  --paper-2: #ececec;
  --white: #ffffff;
  --muted: #5c5c5c;
  --line: #e0e0e0;
  --line-dark: #2a2a2a;
  --brand: #f1580e;
  --brand-light: #ff712e;
  --max: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 64px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

#main,
#quote,
#locations {
  scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 12px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

body.cz-nav-open {
  overflow: hidden;
  touch-action: none;
}

a { color: inherit; }
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a,
summary {
  -webkit-tap-highlight-color: rgba(201, 151, 62, .18);
  touch-action: manipulation;
}

.cz-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 100;
  font-weight: 700;
}
.cz-skip:focus {
  left: var(--gutter);
  top: calc(10px + var(--safe-top));
}

.cz-shell {
  width: 92%;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}
.cz-narrow { max-width: 720px; }

/* Top bar + header */
.cz-topbar {
  background: #000000;
  color: #b0b0b0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-top: var(--safe-top);
}
.cz-topbar-inner {
  min-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-overflow-scrolling: touch;
}
.cz-topbar-inner > span {
  margin-right: auto;
  color: #8a8e96;
  font-weight: 600;
}
.cz-topbar a {
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap;
}
.cz-topbar a:hover { color: var(--brand-light); }

.cz-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000000;
  background: rgba(0, 0, 0, .96);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.cz-nav-row {
  min-height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}
.cz-wordmark {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: .12em;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cz-wordmark span { color: #fff; }
.cz-wordmark b { color: var(--brand-light); font-weight: 800; }
.cz-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cz-logo img {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(168px, 46vw);
}
.cz-footer-logo.cz-logo img,
.cz-footer .cz-logo img {
  height: auto;
  width: 110px;
  max-width: 100%;
  margin-bottom: 4px;
}

.cz-desktop-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}
.cz-desktop-nav > a:not(.cz-btn) {
  min-height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  color: #e4e5e7;
}
.cz-desktop-nav > a:not(.cz-btn):hover { color: var(--brand-light); }

.cz-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: transparent;
  border: 1px solid #3b3e45;
  color: white;
  padding: 0;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cz-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}
.cz-mobile-nav {
  display: none;
  background: #000000;
  border-top: 1px solid #30333a;
  padding: 8px var(--gutter) calc(20px + var(--safe-bottom));
  max-height: calc(100vh - 72px);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cz-mobile-nav.is-open,
.cz-mobile-nav:not([hidden]) {
  display: block;
}
.cz-mobile-nav[hidden] { display: none !important; }
.cz-mobile-nav a {
  display: block;
  padding: 14px 0;
  min-height: 44px;
  text-decoration: none;
  border-bottom: 1px solid #252830;
  color: #ececec;
}
.cz-mobile-nav .cz-sub-link {
  padding-left: 14px;
  color: #a6a9af;
  font-size: 15px;
}
.cz-mobile-nav .cz-btn {
  margin-top: 16px;
  text-align: center;
  width: 100%;
}

/* Buttons */
.cz-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.cz-btn-gold,
.cz-btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #000000;
}
.cz-btn-gold:hover,
.cz-btn-brand:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: #000000;
}
.cz-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}
.cz-btn-ghost:hover {
  border-color: var(--brand-light);
  color: var(--brand-light);
}
.cz-btn-nav {
  min-height: 44px;
  padding-left: 18px;
  padding-right: 18px;
}

/* Full-bleed hero */
.cz-hero {
  position: relative;
  min-height: 560px;
  min-height: min(78vh, 720px);
  min-height: min(78dvh, 720px);
  display: block;
  color: #fff;
  overflow: hidden;
  background: #000000;
}
.cz-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cz-hero-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  filter: saturate(.92) contrast(1.05);
  -webkit-animation: cz-ken 18s ease-in-out alternate both;
  animation: cz-ken 18s ease-in-out alternate both;
}
.cz-hero-media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    -webkit-linear-gradient(345deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .62) 42%, rgba(0, 0, 0, .28) 100%),
    -webkit-linear-gradient(top, transparent 58%, rgba(0, 0, 0, .55) 100%);
  background:
    linear-gradient(105deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .62) 42%, rgba(0, 0, 0, .28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, transparent 42%);
}
.cz-hero-overlay {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: inherit;
  padding: 88px 0 56px;
  padding: clamp(72px, 12vw, 140px) 0 clamp(48px, 7vw, 88px);
}
.cz-hero-copy {
  max-width: 760px;
  width: 100%;
}
.cz-hero-center .cz-hero-overlay {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.cz-hero-center .cz-hero-copy {
  margin-left: auto;
  margin-right: auto;
}
.cz-hero-center .cz-hero-brand::after {
  margin-left: auto;
  margin-right: auto;
}
.cz-hero-center .cz-lede {
  margin-left: auto;
  margin-right: auto;
}
.cz-hero-center .cz-actions {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cz-hero-center .cz-hero-media::after {
  background:
    -webkit-linear-gradient(top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .72) 45%, rgba(0, 0, 0, .82) 100%);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .72) 45%, rgba(0, 0, 0, .82) 100%);
}
.cz-hero-brand {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 42px;
  font-size: clamp(34px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  line-height: .9;
}
.cz-hero-brand::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  background: var(--brand);
}
.cz-eyebrow {
  margin: 0 0 14px;
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.cz-hero h1,
.cz-section h1,
.cz-section h2,
.cz-final h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.02;
}
.cz-hero h1 {
  font-size: 40px;
  font-size: clamp(34px, 6.2vw, 72px);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.cz-lede {
  max-width: 34em;
  margin: 18px 0 0;
  color: #d8d9db;
  font-size: 17px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  font-weight: 400;
}
.cz-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cz-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Trust strip */
.cz-trust {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
}
.cz-trust-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cz-trust-grid > div {
  padding: 24px 8px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.cz-trust-grid > div:last-child { border-right: 0; }
.cz-trust strong {
  display: block;
  font-family: var(--display);
  color: var(--brand-light);
  font-size: 28px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: .02em;
  font-weight: 700;
}
.cz-trust span {
  display: block;
  color: #a8abb1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
  font-weight: 600;
  line-height: 1.35;
}

/* Sections */
.cz-section {
  padding: 64px 0;
  padding: clamp(56px, 9vw, 108px) 0;
  background: var(--white);
}
.cz-section.cz-paper { background: var(--paper); }
.cz-section.cz-dark {
  background: var(--ink);
  color: #fff;
}
.cz-section-head {
  max-width: 640px;
  margin-bottom: 32px;
}
.cz-section h2,
.cz-final h2 {
  font-size: 34px;
  font-size: clamp(30px, 4.4vw, 54px);
  max-width: 18ch;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.cz-section > .cz-shell > h1 {
  font-size: 40px;
  font-size: clamp(34px, 5.5vw, 64px);
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.cz-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 42em;
}
.cz-copy-lg {
  font-size: 18px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  color: #44484f;
}

/* Service grid */
.cz-card-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cz-service-card {
  min-height: 250px;
  padding: 0;
  background: var(--white);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  -webkit-transition: background .25s var(--ease), color .25s var(--ease);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cz-service-card-media {
  position: relative;
  height: 0;
  padding-bottom: 62.5%;
  overflow: hidden;
  background: #1a1d23;
}
@supports (aspect-ratio: 1 / 1) {
  .cz-service-card-media {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 16 / 10;
  }
}
.cz-service-card-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform .45s var(--ease);
  transition: transform .45s var(--ease);
}
@supports (aspect-ratio: 1 / 1) {
  .cz-service-card-media img { position: static; }
}
.cz-service-card > span,
.cz-service-card h3,
.cz-service-card p,
.cz-service-card b {
  padding-left: 20px;
  padding-right: 20px;
}
.cz-service-card > span { padding-top: 20px; }
.cz-service-card b { padding-bottom: 22px; }
.cz-service-card > span,
.cz-benefit-grid article > span,
.cz-process li > span {
  color: var(--brand);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
}
.cz-service-card h3,
.cz-benefit-grid h3,
.cz-process h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin: 16px 0 10px;
  letter-spacing: .01em;
}
.cz-service-card p,
.cz-benefit-grid p,
.cz-process p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.cz-service-card b {
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--ink);
}
@media (hover: hover) and (pointer: fine) {
  .cz-service-card:hover {
    background: var(--ink);
    color: #fff;
  }
  .cz-service-card:hover p { color: #c5c7cb; }
  .cz-service-card:hover b { color: var(--brand-light); }
  .cz-service-card:hover .cz-service-card-media img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  .cz-location-grid > a:hover {
    border-color: var(--brand);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}

.cz-benefit-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.cz-benefit-grid article {
  padding: 8px 4px 8px 0;
  min-height: 140px;
  border-top: 3px solid var(--brand);
}

.cz-accent { color: var(--brand); }

.cz-split-story .cz-split-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}
.cz-split-story .cz-actions { margin-top: 28px; }
.cz-split-media {
  margin: 0;
  overflow: hidden;
  background: #111;
  border-top: 4px solid var(--brand);
}
.cz-split-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: cz-rise .9s var(--ease) both;
  animation: cz-rise .9s var(--ease) both;
}

.cz-finance {
  background: -webkit-linear-gradient(135deg, #0a0a0a 0%, #1a120c 55%, #000 100%);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a120c 55%, #000 100%);
  color: #fff;
  border-top: 1px solid #2a2a2a;
  border-bottom: 3px solid var(--brand);
  padding: 36px 0;
}
.cz-finance-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cz-finance-logo {
  width: 140px;
  height: auto;
  background: #fff;
  padding: 10px 12px;
}
.cz-finance h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
}
.cz-finance p { margin: 0; color: #cfcfcf; max-width: 36em; }
.cz-finance .cz-btn { margin-left: auto; }

.cz-ink-band {
  background: #000;
  color: #fff;
}
.cz-ink-band .cz-section-head h2,
.cz-ink-band h2,
.cz-ink-band h3 { color: #fff; }
.cz-shop-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.cz-shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 24px;
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--brand);
  background: #0d0d0d;
  min-height: 200px;
  -webkit-transition: border-color .2s var(--ease), -webkit-transform .25s var(--ease);
  transition: border-color .2s var(--ease), transform .25s var(--ease);
}
.cz-shop-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.cz-shop-card p {
  margin: 0 0 16px;
  color: #b0b0b0;
  line-height: 1.55;
  font-size: 15px;
}
.cz-shop-card strong {
  display: block;
  color: var(--brand-light);
  font-size: 18px;
  margin-bottom: 18px;
}
.cz-shop-card span {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cz-split {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.15fr .85fr;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 36px;
  gap: clamp(28px, 6vw, 72px);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.cz-context-panel {
  background: var(--ink);
  color: #fff;
  padding: 28px;
  border-top: 4px solid var(--brand);
}
.cz-context-panel h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 26px;
}
.cz-context-panel p {
  color: #c2c4c8;
  line-height: 1.7;
  margin: 0;
}
.cz-text-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  padding-top: 10px;
}
.cz-text-link:hover { color: var(--brand-light); }

.cz-process {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.cz-process li {
  padding: 0;
  border-top: 1px solid #3a3e46;
  padding-top: 20px;
  min-width: 0;
}
.cz-dark .cz-process p { color: #b4b7bc; }
.cz-dark .cz-process h3 { color: #fff; }

.cz-location-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.cz-location-grid > a {
  display: block;
  background: var(--white);
  border-top: 3px solid var(--brand);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding: 24px;
  text-decoration: none;
  min-height: 220px;
  -webkit-transition: border-color .2s var(--ease), -webkit-transform .25s var(--ease);
  transition: border-color .2s var(--ease), transform .25s var(--ease);
}
.cz-location-grid span {
  font-size: 11px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.cz-location-grid h3 {
  font-family: var(--display);
  font-size: 28px;
  margin: 18px 0 10px;
  font-weight: 700;
}
.cz-location-grid p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
  margin: 0;
}
.cz-location-grid b {
  display: block;
  margin-top: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cz-shop-contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}
.cz-shop-contact h2 { margin-bottom: 16px; }
.cz-shop-contact h3 {
  font-family: var(--display);
  font-size: 26px;
  margin-top: 0;
}
.cz-phone,
.cz-phone-callout a {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  min-height: 44px;
  line-height: 44px;
}

/* Quote / form */
.cz-quote-section { background: var(--paper); }
.cz-quote-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .85fr 1.15fr;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  gap: clamp(28px, 6vw, 72px);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.cz-lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  padding: 24px;
  padding: clamp(20px, 3.5vw, 40px);
  min-width: 0;
}
.cz-form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.cz-lead-form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  color: #30333a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  min-width: 0;
}
.cz-lead-form input,
.cz-lead-form select,
.cz-lead-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cfcac0;
  background: #fff;
  color: #000000;
  padding: 12px 14px;
  min-height: 48px;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: 16px; /* prevents iOS zoom on focus */
  line-height: 1.3;
}
.cz-lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2330333a' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.cz-lead-form textarea {
  min-height: 120px;
  resize: vertical;
}
.cz-lead-form input:focus,
.cz-lead-form select:focus,
.cz-lead-form textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}
.cz-span-2 {
  -ms-grid-column-span: 2;
  grid-column: 1 / -1;
}
.cz-form-readonly {
  border: 1px solid #cfcac0;
  padding: 9px 13px;
  margin: 0;
  min-height: 48px;
  font-size: 16px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}
.cz-form-readonly span {
  display: block;
  color: #777;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.cz-consent {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 16px 0;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 500 !important;
  line-height: 1.5;
  font-size: 14px !important;
  gap: 10px !important;
}
.cz-consent input {
  width: 18px !important;
  height: 18px !important;
  min-height: auto !important;
  margin-top: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.cz-lead-form button {
  width: 100%;
  border-radius: 0;
  font-size: 14px;
}
.cz-form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cz-faq { border-top: 1px solid var(--line); }
.cz-faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.cz-faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  padding: 4px 40px 4px 0;
  position: relative;
  min-height: 44px;
}
.cz-faq summary::-webkit-details-marker { display: none; }
.cz-faq summary::marker { content: ""; }
.cz-faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--brand);
  font-size: 24px;
  top: 0;
  font-weight: 500;
}
.cz-faq details[open] summary::after { content: "\2013"; }
.cz-faq p {
  color: var(--muted);
  max-width: 42em;
  line-height: 1.7;
}

.cz-final {
  padding: 72px 0;
  padding: clamp(64px, 9vw, 110px) 0;
  text-align: center;
  background: var(--ink);
  background:
    -webkit-linear-gradient(325deg, rgba(32, 27, 23, .94), rgba(0, 0, 0, .96)),
    var(--ink);
  background:
    linear-gradient(125deg, rgba(32, 27, 23, .94), rgba(0, 0, 0, .96)),
    var(--ink);
  color: #fff;
}
.cz-final h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.cz-final p:not(.cz-eyebrow) {
  max-width: 34em;
  margin: 16px auto 0;
  color: #c9c9c7;
  font-size: 17px;
}

.cz-footer {
  background: #000000;
  color: #fff;
  padding: 56px 0 calc(22px + var(--safe-bottom));
  border-top: 1px solid #292c31;
}
.cz-footer-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.4fr 1fr 1fr .8fr;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, .8fr);
  gap: 32px;
}
.cz-footer-main p {
  color: #9da0a5;
  max-width: 28em;
  margin: 0 0 20px;
}
.cz-footer h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  margin: 0 0 14px;
  font-family: var(--body);
  font-weight: 700;
}
.cz-footer ul { list-style: none; margin: 0; padding: 0; }
.cz-footer li { margin: 6px 0; }
.cz-footer li a {
  color: #c9cbce;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  min-height: 36px;
  padding-top: 6px;
}
.cz-footer li a:hover { color: var(--brand-light); }
.cz-footer-logo { display: inline-block; margin-bottom: 14px; }
.cz-footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #24272d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  color: #74777e;
  font-size: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Motion */
.cz-hero-copy,
.cz-section-head,
.cz-trust-grid > div {
  -webkit-animation: cz-rise .7s var(--ease) both;
  animation: cz-rise .7s var(--ease) both;
}
.cz-trust-grid > div:nth-child(2) {
  -webkit-animation-delay: .08s;
  animation-delay: .08s;
}
.cz-trust-grid > div:nth-child(3) {
  -webkit-animation-delay: .16s;
  animation-delay: .16s;
}

@-webkit-keyframes cz-rise {
  from { opacity: 0; -webkit-transform: translateY(14px); transform: translateY(14px); }
  to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes cz-rise {
  from { opacity: 0; -webkit-transform: translateY(14px); transform: translateY(14px); }
  to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@-webkit-keyframes cz-ken {
  from { -webkit-transform: scale(1); transform: scale(1); }
  to { -webkit-transform: scale(1.06); transform: scale(1.06); }
}
@keyframes cz-ken {
  from { -webkit-transform: scale(1); transform: scale(1); }
  to { -webkit-transform: scale(1.06); transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .cz-hero-media img,
  .cz-trust-grid > div,
  .cz-hero-copy,
  .cz-section-head,
  .cz-split-media img {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

/* Tablet */
@media (max-width: 1000px) {
  .cz-desktop-nav { display: none; }
  .cz-menu-button {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .cz-hero {
    min-height: 520px;
    min-height: min(70vh, 640px);
    min-height: min(70dvh, 640px);
  }
  .cz-card-grid,
  .cz-benefit-grid,
  .cz-process {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cz-location-grid,
  .cz-quote-grid,
  .cz-split,
  .cz-shop-contact,
  .cz-shop-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .cz-finance-inner { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }
  .cz-finance .cz-btn { margin-left: 0; }
  .cz-footer-main {
    -ms-grid-columns: 1.4fr 1fr 1fr;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .cz-topbar-inner {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    white-space: nowrap;
    gap: 16px;
    scrollbar-width: none;
  }
  .cz-topbar-inner::-webkit-scrollbar { display: none; }
  .cz-topbar-inner > span { display: none; }
  .cz-nav-row { min-height: 60px; }
  .cz-wordmark { font-size: 22px; letter-spacing: .1em; }
  .cz-hero {
    min-height: 0;
  }
  .cz-hero-overlay {
    min-height: 0;
    padding: 56px 0 40px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .cz-hero-media img {
    -o-object-position: 65% center;
    object-position: 65% center;
  }
  .cz-hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }
  .cz-hero-brand { font-size: 30px; }
  .cz-lede { font-size: 16px; margin-top: 14px; }
  .cz-section { padding: 48px 0; }
  .cz-section-head { margin-bottom: 24px; }
  .cz-section h2,
  .cz-final h2 {
    font-size: 30px;
    max-width: none;
  }
  .cz-card-grid,
  .cz-benefit-grid,
  .cz-process,
  .cz-trust-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .cz-trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 16px 0;
    text-align: left;
  }
  .cz-trust-grid > div:last-child { border-bottom: 0; }
  .cz-service-card h3 { font-size: 22px; }
  .cz-location-grid > a { min-height: 0; padding: 22px; }
  .cz-location-grid h3 { font-size: 26px; }
  .cz-form-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .cz-span-2 { grid-column: auto; }
  .cz-footer-main {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .cz-footer-main > div:first-child { grid-column: 1 / -1; }
  .cz-footer-bottom {
    display: block;
  }
  .cz-footer-bottom span { display: block; margin: 6px 0; }
  .cz-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cz-actions .cz-btn {
    width: 100%;
  }
  .cz-phone,
  .cz-phone-callout a {
    font-size: 24px;
  }
  .cz-context-panel { padding: 22px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .cz-hero h1 { font-size: 30px; }
  .cz-hero-brand { font-size: 26px; }
  .cz-btn { padding: 0 18px; letter-spacing: .06em; }
  .cz-footer-main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* Short / landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
  .cz-hero {
    min-height: 0;
  }
  .cz-hero-overlay {
    padding: 48px 0 28px;
  }
  .cz-mobile-nav {
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 3px;
}

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