/* ============================================================
   Wylie Car Care — styles
   Direction: solid, industrial, intentional. Sharp edges,
   sturdy borders instead of soft shadows, a dark hero, strong
   condensed type. No gradient glows, no glossy template look.
   ============================================================ */

:root {
  --stone:      #f3eee4;  /* warm off-white page background       */
  --stone-2:    #e9e1d2;  /* deeper stone for alternating bands   */
  --paper:      #fbf9f4;  /* card surface                         */
  --ink:        #16130d;  /* near-black — text + strong borders   */
  --ink-2:      #211d15;  /* dark section background              */
  --ink-soft:   #4c463b;  /* body text                            */
  --ink-faint:  #857c6d;  /* meta, captions                       */
  --accent:     #c0461c;  /* burnt orange                         */
  --accent-dk:  #97350f;
  --accent-tint:#f0ddd1;
  --line:       #d8cdba;  /* hairline on light surfaces           */
  --line-dk:    #3a3327;  /* hairline on dark surfaces            */
  --gold:       #e2a417;  /* review stars                         */
  --ok:         #3f8d5f;

  --r:    4px;            /* sharp, intentional corners           */
  --r-sm: 3px;
  --hard: 4px 4px 0 var(--ink);     /* signature offset shadow   */
  --hard-accent: 4px 4px 0 var(--accent);

  --maxw: 1160px;
  --pad:  clamp(1.1rem, 4.5vw, 2.2rem);
  --hh:   72px;           /* sticky header height (for offsets)   */

  --display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --body:    "Source Sans 3", system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: .98;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--ink);
}

/* anchored sections clear the sticky header */
[id] { scroll-margin-top: calc(var(--hh) + 14px); }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.2rem, 8vw, 5.5rem); }
.section--stone { background: var(--stone-2); }
.section--dark { background: var(--ink-2); color: #e9e3d6; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* section label: orange index tag + rule, reads like signage not a SaaS eyebrow */
.label {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; font-size: .82rem; color: var(--accent); margin-bottom: 1rem;
}
.label .num { font-variant-numeric: tabular-nums; color: var(--ink); }
.section--dark .label .num { color: #fff; }
.label::before { content: ""; width: 26px; height: 3px; background: var(--accent); }

.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
.section-head p { color: var(--ink-soft); margin-top: .8rem; font-size: 1.12rem; max-width: 56ch; }
.section--dark .section-head p { color: #c8c1b3; }

.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; }

/* hazard stripe — a small mechanic's-shop detail used sparingly */
.stripe { height: 8px; background: repeating-linear-gradient(135deg, var(--ink) 0 13px, var(--accent) 13px 26px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  background: var(--paper); color: var(--ink);
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: 1.02rem; line-height: 1; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
}
.btn--primary { background: var(--accent); border-color: var(--ink); color: #fff; box-shadow: var(--hard); }
.btn--primary:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); background: var(--accent-dk); }
.btn--primary:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--ink); }
.btn--solid { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--solid:hover { background: #000; }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.12rem; }
.btn--block { width: 100%; }
.btn .ico { width: 1.15em; height: 1.15em; }
/* on-dark variants */
.on-dark .btn--ghost, .section--dark .btn--ghost, .hero .btn--ghost { border-color: #efe9dc; color: #fff; }
.on-dark .btn--ghost:hover, .section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: #fff; color: var(--ink); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--stone);
  border-bottom: 2px solid var(--ink);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--hh); }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  background: var(--accent); color: #fff; border: 2px solid var(--ink); border-radius: var(--r-sm);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .01em; font-size: 1.35rem; line-height: .9; }
.brand__name span { display: block; font-size: .62rem; letter-spacing: .28em; color: var(--ink-faint); font-weight: 600; margin-top: 4px; }

.nav__links { display: none; align-items: center; gap: .15rem; }
.nav__links a {
  position: relative; text-decoration: none; color: var(--ink-soft); font-family: var(--display);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600; font-size: 1.02rem;
  padding: .55rem .85rem; transition: color .15s ease;
}
.nav__links a::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--ink); }

.nav__cta { display: flex; align-items: center; gap: .7rem; }
.nav__phone { display: none; align-items: center; gap: .45rem; text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.nav__phone svg { width: 18px; height: 18px; color: var(--accent); }
.nav__toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-sm); color: var(--ink); }
.nav__toggle svg { width: 22px; height: 22px; }

.mobile-menu { display: none; border-bottom: 2px solid var(--ink); background: var(--stone); padding: .4rem var(--pad) 1.2rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; text-decoration: none; color: var(--ink); padding: .9rem .2rem; border-bottom: 1px solid var(--line); font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; font-size: 1.1rem; }
.mobile-menu .btn { margin-top: 1.1rem; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__phone { display: inline-flex; }
  .nav__toggle { display: none; }
}
@media (max-width: 620px) { .nav__cta .btn--primary { display: none; } }

/* ---------- hero (dark) ---------- */
.hero { background: var(--ink-2); color: #ece6d9; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.hero::before { /* faint blueprint grid, very subtle texture instead of a glow */
  content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero__grid { position: relative; display: grid; gap: 2.4rem; align-items: center; padding-block: clamp(2.8rem, 7vw, 5rem); }
.hero__rating { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; color: #d9d2c4; margin-bottom: 1.2rem; font-size: 1rem; }
.hero__rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 1.05rem; }
.hero h1 { font-size: clamp(2.6rem, 9vw, 5rem); color: #fff; overflow-wrap: break-word; }
.hero h1 .accent { color: var(--accent); }
.hero__lede { font-size: 1.22rem; color: #cdc6b8; margin-top: 1.2rem; max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .8rem 1.8rem; margin-top: 2rem; color: #cdc6b8; font-size: 1rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* info card sitting on the dark hero */
.infocard { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r); box-shadow: var(--hard); overflow: hidden; }
.infocard__head { background: var(--ink); color: #fff; padding: 1.1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.infocard__head h3 { color: #fff; font-size: 1.25rem; }
.infocard__body { padding: 1.2rem 1.4rem 1.4rem; }
.info-row { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.info-row:first-child { padding-top: .3rem; }
.info-row svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 3px; }
.info-row .rlabel { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--ink-faint); margin-bottom: .15rem; }
.info-row .value { font-weight: 600; color: var(--ink); }
.info-row a.value { text-decoration: none; }
.info-row a.value:hover { color: var(--accent); }
.hours-list { list-style: none; padding: 0; margin: .2rem 0 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .22rem 0; font-size: 1rem; }
.hours-list li.is-today { color: var(--accent); font-weight: 700; }
.hours-list .day { color: var(--ink-soft); }
.hours-list .closed { color: var(--ink-faint); }
.open-pill { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; font-weight: 600; padding: .28rem .65rem; border-radius: 999px; }
.open-pill.open { background: rgba(63,141,95,.18); color: #bfe6cd; }
.open-pill.closed { background: rgba(192,70,28,.2); color: #f3c3ab; }
.open-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

@media (min-width: 920px) { .hero__grid { grid-template-columns: 1.2fr .8fr; gap: 3.5rem; } }

/* ---------- quick services strip ---------- */
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; background: var(--ink); }
.quick-card { background: var(--paper); padding: 1.5rem 1.3rem; }
/* internal hairlines via gaps */
.quick-grid > * { box-shadow: 0 0 0 1px var(--ink); }
.quick-card__k { font-family: var(--display); font-weight: 700; color: var(--accent); font-size: 1.05rem; letter-spacing: .08em; }
.quick-card h3 { font-size: 1.45rem; margin-top: .5rem; }
.quick-card p { color: var(--ink-soft); font-size: .98rem; margin-top: .4rem; }
@media (min-width: 760px) { .quick-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- full services list (text-forward, fewer icons) ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; }
.service-card { background: var(--paper); padding: 1.4rem 1.5rem; box-shadow: 0 0 0 1px var(--ink); transition: background .15s ease; }
.service-card:hover { background: #fff; }
.service-card h3 { font-size: 1.3rem; display: flex; align-items: baseline; gap: .6rem; }
.service-card h3 .tick { color: var(--accent); font-size: .9rem; }
.service-card p { color: var(--ink-soft); font-size: .98rem; margin-top: .35rem; }
@media (min-width: 620px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* collapsible full list */
.services-more { height: 0; overflow: hidden; transition: height .42s cubic-bezier(.4,0,.2,1); }
.services-more .services-grid { margin-top: 1.5rem; }
.services-actions { margin-top: 1.6rem; text-align: center; }
.expand-toggle .chev { width: 1.1em; height: 1.1em; transition: transform .25s ease; }
.expand-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.services-foot { margin-top: 1.3rem; color: var(--ink-soft); }
.services-foot a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* ---------- reviews ---------- */
.reviews-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; margin-bottom: 2.2rem; }
.reviews-score { display: flex; align-items: center; gap: 1.1rem; }
.reviews-score .num { font-family: var(--display); font-weight: 700; font-size: 3.6rem; line-height: .8; color: #fff; }
.reviews-score .stars { color: var(--gold); font-size: 1.35rem; letter-spacing: 2px; }
.reviews-score .meta { color: #c8c1b3; font-size: .98rem; margin-top: .35rem; }
/* moving "wall of reviews" — two rows drifting opposite ways */
.reviews-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-marquee:not(.ready) { overflow-x: auto; -webkit-overflow-scrolling: touch; }   /* before JS / no-JS: swipeable */
.marquee-row { display: flex; width: max-content; }
.marquee-row + .marquee-row { margin-top: 1.2rem; }
.reviews-marquee.ready .marquee-row.left  { animation: marqueeX 54s linear infinite; }
.reviews-marquee.ready .marquee-row.right { animation: marqueeX 46s linear infinite reverse; }
.reviews-marquee.ready.paused .marquee-row { animation-play-state: paused; }
@keyframes marqueeX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.review-card {
  flex: 0 0 330px; width: 330px; margin: 0 1.2rem 0 0; white-space: normal;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r);
  padding: 1.4rem; color: var(--ink);
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .7rem; }
.review-card p { font-size: 1rem; }
.review-card .who { display: flex; align-items: center; gap: .75rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-card .avatar { width: 40px; height: 40px; flex: none; border: 2px solid var(--ink); background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.review-card .name { font-weight: 700; }
.review-card .badge { display: inline-block; font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-size: .6rem; font-weight: 600; color: var(--accent); border: 1px solid var(--accent); padding: 1px 5px; border-radius: 3px; margin-left: .35rem; vertical-align: 2px; }
.review-card .src { color: var(--ink-faint); font-size: .85rem; }
.reviews-actions { margin-top: 1.8rem; text-align: center; }
.reviews-actions a { color: #d9d2c4; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 3px; }
.reviews-actions a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee.ready { overflow-x: auto; }
  .reviews-marquee.ready .marquee-row { animation: none; }
}

/* ---------- visit / contact ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.visit-map { border: 2px solid var(--ink); border-radius: var(--r); width: 100%; min-height: 320px; height: 100%; filter: grayscale(.2) contrast(1.05); }
@media (min-width: 880px) { .visit-grid { grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: stretch; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: #fff; border: 2px solid var(--ink); border-radius: var(--r); box-shadow: var(--hard); padding: clamp(2.2rem, 6vw, 3.6rem); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5.5vw, 3rem); max-width: 18ch; }
.cta-band p { color: #ffe6da; margin: .9rem 0 1.7rem; max-width: 52ch; font-size: 1.12rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.cta-band .btn--solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-band .btn--ghost { border-color: #fff; color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--accent-dk); }

/* ---------- footer ---------- */
.site-footer { margin-top: auto; background: var(--ink-2); color: #c8c1b3; border-top: 2px solid var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding-block: 3rem; }
.site-footer .brand__name { color: #fff; }
.site-footer h4 { color: #fff; font-size: 1.05rem; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col p, .footer-col a { color: #c0b9aa; text-decoration: none; font-size: 1rem; }
.footer-col a:hover { color: #fff; }
.footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .6rem; padding: .4rem 0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-hours { list-style: none; padding: 0; margin: 0; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; font-size: .98rem; border-bottom: 1px solid var(--line-dk); }
.footer-bottom { border-top: 1px solid var(--line-dk); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: space-between; align-items: center; font-size: .9rem; color: #9f978a; }
.footer-bottom a { color: #c0b9aa; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-wrap { padding-block: clamp(2.2rem, 6vw, 4rem); }
.quote-shell { max-width: 700px; margin-inline: auto; }
.quote-intro { text-align: center; margin-bottom: 1.8rem; }
.quote-intro h1 { font-size: clamp(2.2rem, 7vw, 3.4rem); }
.quote-intro p { color: var(--ink-soft); margin-top: .7rem; font-size: 1.12rem; }
.quote-card { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r); box-shadow: var(--hard); }

/* progress */
.progress { padding: 1.4rem 1.6rem 0; }
.progress__bar { height: 8px; background: var(--stone-2); border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; }
.progress__fill { height: 100%; width: 25%; background: var(--accent); transition: width .4s cubic-bezier(.4,0,.2,1); }
.progress__steps { display: flex; justify-content: space-between; margin-top: .9rem; }
.progress__steps li { list-style: none; font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-size: .76rem; color: var(--ink-faint); display: flex; align-items: center; gap: .45rem; }
.progress__steps li .n { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--stone-2); border: 2px solid var(--line); color: var(--ink-faint); font-size: .76rem; transition: all .2s; }
.progress__steps li.active { color: var(--ink); }
.progress__steps li.active .n { background: var(--accent); border-color: var(--ink); color: #fff; }
.progress__steps li.done .n { background: var(--ok); border-color: var(--ink); color: #fff; }
.progress__steps li .txt { display: none; }
@media (min-width: 560px) { .progress__steps li .txt { display: inline; } }

.step-body { padding: 1.8rem 1.6rem 2rem; }
.step { display: none; }
.step.active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.step h2 { font-size: 1.8rem; }
.step__sub { color: var(--ink-soft); margin: .35rem 0 1.4rem; }

/* fields */
.field { margin-bottom: 1.2rem; }
.field > label { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .07em; font-size: .85rem; color: var(--ink-soft); margin-bottom: .45rem; }
.field .req { color: var(--accent); }
.field .opt { color: var(--ink-faint); font-weight: 400; }
.input, select.input, textarea.input {
  width: 100%; padding: .9rem 1rem; font-size: 1.05rem; color: var(--ink);
  background: var(--stone); border: 2px solid var(--ink); border-radius: var(--r-sm);
  transition: box-shadow .12s ease, background .12s ease;
}
.input:focus, select.input:focus, textarea.input:focus { outline: none; background: #fff; box-shadow: var(--hard-accent); }
textarea.input { resize: vertical; min-height: 120px; line-height: 1.5; }
.input.invalid, select.input.invalid { background: #fbeee8; box-shadow: 3px 3px 0 var(--accent); }
.field__error { color: var(--accent-dk); font-size: .88rem; margin-top: .4rem; display: none; font-weight: 600; }
.field.show-error .field__error { display: block; }
.field-row { display: grid; gap: 1.2rem; }
@media (min-width: 520px) { .field-row.two { grid-template-columns: 1fr 1fr; } .field-row.year { grid-template-columns: .8fr 1.2fr; } }

/* service chips */
.chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
@media (min-width: 520px) { .chips { grid-template-columns: repeat(3, 1fr); } }
.chip {
  display: flex; align-items: center; gap: .5rem; text-align: left;
  padding: .85rem .9rem; background: var(--stone); border: 2px solid var(--ink); border-radius: var(--r-sm);
  color: var(--ink); font-family: var(--display); text-transform: uppercase; letter-spacing: .03em;
  font-weight: 600; font-size: 1rem; transition: transform .1s ease, box-shadow .1s ease, background .12s ease;
}
.chip:hover { transform: translate(1px,1px); }
.chip.selected { background: var(--accent); color: #fff; box-shadow: var(--hard); }
.chip .check { margin-left: auto; opacity: 0; transition: opacity .12s; }
.chip.selected .check { opacity: 1; }

/* step nav */
.step-nav { display: flex; gap: .9rem; margin-top: 1.7rem; }
.step-nav .btn { flex: 1; }
.step-nav .btn--back { flex: 0 0 auto; }

/* summary */
.summary { background: var(--stone); border: 2px dashed var(--ink); border-radius: var(--r-sm); padding: 1.1rem 1.2rem; margin-bottom: 1.4rem; }
.summary h3 { font-size: .9rem; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: .7rem; }
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1rem; font-size: 1rem; }
.summary dt { color: var(--ink-faint); font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; }
.summary dd { color: var(--ink); font-weight: 600; }

/* confirmation */
.confirm { text-align: center; padding: 1rem 0 .5rem; }
.confirm__icon { width: 80px; height: 80px; margin: 0 auto 1.3rem; border-radius: 50%; background: var(--ok); border: 2px solid var(--ink); color: #fff; display: grid; place-items: center; animation: pop .4s cubic-bezier(.2,.8,.3,1.4); }
.confirm__icon svg { width: 42px; height: 42px; }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm h2 { font-size: 2rem; }
.confirm p { color: var(--ink-soft); margin: .8rem auto 0; max-width: 44ch; }
.confirm__actions { display: grid; gap: .8rem; margin-top: 1.7rem; max-width: 380px; margin-inline: auto; }
.confirm__hint { font-size: .9rem; color: var(--ink-faint); margin-top: 1.3rem; }
.confirm__hint a { color: var(--accent); font-weight: 600; }

.quote-aside { margin-top: 1.5rem; text-align: center; color: var(--ink-soft); font-size: 1rem; }
.quote-aside a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* ---------- make combobox (also used for contact preference) ---------- */
.make-combo { position: relative; display: block; }
.make-combo__input { padding-right: 2.8rem; }
/* trigger button variant (contact preference) */
.make-combo__trigger { text-align: left; width: 100%; }
.make-combo__trigger:focus { outline: none; background: #fff; box-shadow: var(--hard-accent); }
.combo-placeholder { color: var(--ink-faint); }
.make-combo__chev {
  position: absolute; right: .85rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--ink-faint); display: flex; align-items: center;
}
.make-combo__chev svg { width: 18px; height: 18px; transition: transform .2s ease; }
.make-combo.open .make-combo__chev svg { transform: rotate(180deg); }

.make-combo__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 3px);
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 var(--ink);
  max-height: 220px; overflow-y: auto; overflow-x: hidden;
  z-index: 200; list-style: none; padding: 0; margin: 0;
}
.make-combo__list[hidden] { display: none; }

.make-combo__item {
  padding: .72rem 1rem; font-size: 1.05rem; color: var(--ink);
  cursor: pointer; border-bottom: 1px solid var(--line);
  transition: background .08s ease;
}
.make-combo__item:last-child { border-bottom: none; }
.make-combo__item:hover { background: var(--stone); }
.make-combo__item.is-active { background: var(--stone-2); }
.make-combo__item.is-active:hover { background: var(--stone-2); }
.make-combo__empty {
  padding: .72rem 1rem; font-size: .98rem; color: var(--ink-faint); font-style: italic;
}

/* ---------- focus + motion ---------- */
.chip:focus-visible, .btn:focus-visible, .nav__toggle:focus-visible, a:focus-visible, .info-row a:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px;
}
.input:focus-visible, select.input:focus-visible, textarea.input:focus-visible { outline: none; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
