/* HandsOn autodetailing, Denver. Dark studio.
   Order: tokens -> base -> nav -> hero -> components -> sections -> footer -> desktop breakpoints -> motion
   MOBILE rules live ONLY in the append-only @media (max-width: 760px) block at the very end. */

:root {
  --ink-0: #0A0D10;
  --ink-1: #11151A;
  --ink-2: #171C23;
  --ink-3: #1F2630;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #EDF1F4;
  --text-soft: #C7CFD8;
  --muted: #94A0AC;
  --teal: #19B5CD;
  --teal-bright: #3FD3E8;
  --teal-deep: #0C7F93;
  --teal-soft: rgba(25, 181, 205, 0.12);
  --teal-glow: rgba(25, 181, 205, 0.28);
  --star: #F5C451;
  --danger: #FF7A7A;
  --display: "Unbounded", "Avenir Next", "Segoe UI", sans-serif;
  --body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --section: clamp(4.5rem, 9vw, 7.5rem);
  --wrap: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}
main, header, footer { position: relative; z-index: 1; }
img, svg, video { display: block; max-width: 100%; height: auto; }
figure, blockquote { margin: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--teal-bright); }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section.tight { padding-block: calc(var(--section) * 0.6); }
.surface { background: var(--ink-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--teal-bright); outline-offset: 3px; border-radius: 4px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--display); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--teal); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 1rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split { display: flex; justify-content: space-between; align-items: end; gap: 2rem; max-width: none; }
.section-head.split > div { max-width: 640px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em; line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap; min-height: 48px;
}
.btn.primary { background: var(--teal); color: #041014; box-shadow: 0 10px 30px -10px var(--teal-glow); }
.btn.primary:hover { background: var(--teal-bright); color: #041014; transform: translateY(-2px); box-shadow: 0 16px 34px -10px var(--teal-glow); }
.btn.ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255, 255, 255, 0.02); }
.btn.ghost:hover { border-color: var(--teal); color: var(--teal-bright); transform: translateY(-2px); }
.btn.small { padding: 0.65rem 1.1rem; min-height: 40px; font-size: 0.9rem; }
.btn svg { width: 18px; height: 18px; }
.btn-full { display: inline; }
.btn-short { display: none; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 13, 16, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 74px; }
.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; font-weight: 500; font-size: 0.95rem; color: var(--text-soft); }
.nav-links a { padding: 0.3rem 0; border-bottom: 1px solid transparent; }
.nav-links a:hover { color: var(--teal-bright); }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone { font-weight: 600; color: var(--text-soft); font-size: 0.95rem; }
.nav-phone:hover { color: var(--teal-bright); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 10px; background: transparent; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: min(88vh, 860px); display: grid; align-items: center;
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.96) 0%, rgba(10, 13, 16, 0.82) 38%, rgba(10, 13, 16, 0.25) 70%, rgba(10, 13, 16, 0.15) 100%),
    linear-gradient(180deg, rgba(10, 13, 16, 0.2) 0%, rgba(10, 13, 16, 0) 40%, rgba(10, 13, 16, 0.85) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(4rem, 9vw, 7rem); display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 3rem; align-items: end; }
.hero-copy { max-width: 640px; }
.hero-copy .eyebrow { color: var(--teal-bright); }
.hero-copy h1 { margin-bottom: 1.4rem; text-wrap: balance; }
.hero-copy h1 em { font-style: normal; color: var(--teal-bright); }
.hero-copy .lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-soft); max-width: 540px; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-side { justify-self: end; display: grid; gap: 0.9rem; max-width: 360px; width: 100%; }
.rating-card {
  background: rgba(17, 21, 26, 0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.2rem 1.3rem;
  display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1rem; align-items: center;
}
.rating-card .big { font-family: var(--display); font-size: 2.6rem; font-weight: 600; line-height: 1; grid-row: span 2; color: var(--text); }
.rating-card .stars { color: var(--star); letter-spacing: 0.12em; font-size: 1rem; line-height: 1; }
.rating-card .label { color: var(--muted); font-size: 0.92rem; }
.rating-card .label a { color: var(--text-soft); text-decoration: underline; text-underline-offset: 3px; }
.rating-card .label a:hover { color: var(--teal-bright); }
.hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.fact { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.85rem 1rem; background: rgba(10, 13, 16, 0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.fact b { display: block; font-family: var(--display); font-size: 0.95rem; font-weight: 500; margin-bottom: 0.15rem; }
.fact span { color: var(--muted); font-size: 0.86rem; }

/* ---------- trust strip ---------- */
.trust { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.trust-item { background: var(--ink-1); padding: 1.4rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.trust-item .ico { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--teal-soft); color: var(--teal-bright); display: grid; place-items: center; }
.trust-item .ico svg { width: 20px; height: 20px; }
.trust-item b { display: block; font-family: var(--display); font-weight: 500; font-size: 0.98rem; margin-bottom: 0.2rem; }
.trust-item span { color: var(--muted); font-size: 0.92rem; line-height: 1.45; display: block; }

/* ---------- estimator ---------- */
.estimator { position: relative; overflow: hidden; }
.estimator::before { content: ""; position: absolute; inset: auto -10% -40% auto; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; background: radial-gradient(closest-side, rgba(25, 181, 205, 0.16), transparent 70%); pointer-events: none; }
.est-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 1.6rem; align-items: start; }
.est-steps { display: grid; gap: 1.2rem; }
.est-step { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.est-step header { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 1rem; }
.est-step .num { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--teal); text-transform: uppercase; }
.est-step h3 { font-size: 1.05rem; }
.est-step .hint { color: var(--muted); font-size: 0.88rem; margin-left: auto; }
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  border: 1px solid var(--line-strong); background: transparent; color: var(--text-soft);
  padding: 0.7rem 1.05rem; border-radius: 999px; font-weight: 500; font-size: 0.95rem; min-height: 44px;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s var(--ease);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.pill:hover { border-color: var(--teal); color: var(--text); transform: translateY(-1px); }
.pill[aria-pressed="true"] { background: var(--teal); border-color: var(--teal); color: #041014; font-weight: 600; }
.pill small { font-weight: 500; opacity: 0.75; font-size: 0.82em; }
.pill[aria-pressed="true"] small { opacity: 0.8; }
.est-result { position: sticky; top: 92px; background: linear-gradient(170deg, var(--ink-2), var(--ink-1)); border: 1px solid rgba(25, 181, 205, 0.35); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.5rem; box-shadow: var(--shadow); }
.est-result .label { font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.est-result .amount { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.1; letter-spacing: -0.01em; }
.est-result .amount.empty { color: var(--muted); font-size: 1.2rem; font-weight: 500; }
.est-result .sub { color: var(--muted); font-size: 0.92rem; margin-top: 0.35rem; min-height: 1.4em; }
.est-result .summary { margin-top: 1.1rem; border-top: 1px solid var(--line); padding-top: 1rem; display: grid; gap: 0.45rem; font-size: 0.94rem; }
.est-result .summary div { display: flex; justify-content: space-between; gap: 1rem; color: var(--text-soft); }
.est-result .summary div span:last-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.est-result .summary .quoted span:last-child { color: var(--teal-bright); font-weight: 500; }
.est-result .note { color: var(--muted); font-size: 0.82rem; margin-top: 1rem; line-height: 1.5; }
.est-result .btn { width: 100%; margin-top: 1.1rem; }
.est-result .includes { margin-top: 1rem; display: grid; gap: 0.35rem; }
.est-result .includes li { position: relative; padding-left: 1.2rem; color: var(--text-soft); font-size: 0.9rem; }
.est-result .includes li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.est-result .includes:empty { display: none; }

/* ---------- work ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; }
.tile { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--ink-1); aspect-ratio: 4 / 3; padding: 0; cursor: zoom-in; text-align: left; }
.tile.tall { aspect-ratio: 3 / 4; grid-row: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile:hover img { transform: scale(1.04); }
.tile figcaption, .tile .cap {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem 0.95rem 0.8rem; font-size: 0.86rem; font-weight: 500; color: var(--text);
  background: linear-gradient(180deg, rgba(10, 13, 16, 0) 0%, rgba(10, 13, 16, 0.85) 100%);
  display: flex; justify-content: space-between; align-items: end; gap: 0.6rem;
}
.tile .cap small { font-family: var(--display); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-bright); }
.arrivals { margin-top: 1.6rem; display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.55fr)); gap: 0.9rem; align-items: stretch; }
.arrivals .blurb { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.6rem; display: flex; flex-direction: column; justify-content: center; }
.arrivals .blurb h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.arrivals .blurb p { color: var(--muted); font-size: 0.98rem; }
.arrivals .tile { aspect-ratio: auto; min-height: 220px; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1200px); max-height: 94vh; }
.lightbox::backdrop { background: rgba(4, 6, 8, 0.9); backdrop-filter: blur(6px); }
.lightbox .frame { position: relative; display: grid; gap: 0.6rem; }
.lightbox img { max-height: 84vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); }
.lightbox .bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--text-soft); font-size: 0.92rem; }
.lightbox .bar div { display: flex; gap: 0.5rem; }
.lightbox .bar button { border: 1px solid var(--line-strong); background: rgba(17, 21, 26, 0.8); color: var(--text); border-radius: 999px; min-width: 44px; height: 44px; padding: 0 0.9rem; font-weight: 600; }
.lightbox .bar button:hover { border-color: var(--teal); color: var(--teal-bright); }

/* ---------- denver ---------- */
.denver { position: relative; overflow: hidden; }
.denver .mark-bg { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: 62%; max-width: 900px; opacity: 0.05; pointer-events: none; }
.denver-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.dv { background: rgba(17, 21, 26, 0.85); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.dv .n { font-family: var(--display); font-weight: 600; font-size: 1.9rem; line-height: 1; color: var(--teal); }
.dv h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.dv p { color: var(--muted); font-size: 0.97rem; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.review { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; min-width: 0; }
.review .stars { color: var(--star); letter-spacing: 0.1em; font-size: 0.95rem; }
.review blockquote { color: var(--text-soft); font-size: 1rem; line-height: 1.6; overflow-wrap: anywhere; flex: 1; }
.review blockquote::before { content: "\201C"; font-family: var(--display); color: var(--teal); font-size: 1.6rem; line-height: 0; vertical-align: -0.45em; margin-right: 0.25rem; }
.review footer { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 0.9rem; }
.review footer b { color: var(--text); font-weight: 600; }
.review-summary { display: flex; align-items: center; gap: 1.6rem; margin-top: 1.6rem; background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.5rem; }
.review-summary .big { font-family: var(--display); font-size: 2.4rem; font-weight: 600; line-height: 1; }
.review-summary .stars { color: var(--star); letter-spacing: 0.12em; }
.review-summary .desc { color: var(--muted); font-size: 0.95rem; }
.review-summary .btn { margin-left: auto; }

/* ---------- contact ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 1.6rem; align-items: start; }
.form-card { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.8rem 1.6rem; }
.form-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.form-card .intro { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.3rem; }
.est-chip { display: none; align-items: center; gap: 0.8rem; background: var(--teal-soft); border: 1px solid rgba(25, 181, 205, 0.4); border-radius: var(--radius-sm); padding: 0.75rem 1rem; margin-bottom: 1.2rem; font-size: 0.94rem; color: var(--text-soft); }
.est-chip.on { display: flex; }
.est-chip b { color: var(--text); }
.est-chip a { margin-left: auto; color: var(--teal-bright); font-weight: 600; white-space: nowrap; }
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field.wide { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--text-soft); letter-spacing: 0.01em; }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink-0); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  color: var(--text); font: inherit; padding: 0.8rem 0.95rem; min-height: 48px; transition: border-color 0.2s, box-shadow 0.2s;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' fill='none' stroke='%2394A0AC' stroke-width='2'/></svg>"); background-repeat: no-repeat; background-position: right 0.95rem center; padding-right: 2.4rem; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.field .err { color: var(--danger); font-size: 0.82rem; display: none; }
.field.invalid input { border-color: var(--danger); }
.field.invalid .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; margin-top: 1.2rem; }
.form-actions .fine { color: var(--muted); font-size: 0.85rem; }
.form-ok { display: none; margin-top: 1.2rem; background: var(--teal-soft); border: 1px solid rgba(25, 181, 205, 0.4); border-radius: var(--radius-sm); padding: 1rem 1.1rem; font-size: 0.95rem; color: var(--text-soft); }
.form-ok.on { display: block; }
.form-ok b { color: var(--text); }
.form-ok .btn { margin-top: 0.7rem; }

.info-panel { display: grid; gap: 1rem; position: sticky; top: 92px; }
.ip-head { padding: 0 0.2rem; }
.ip-head h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.ip-head p { color: var(--muted); font-size: 0.94rem; }
.ip-quick { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.ip-tile { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.05rem; display: grid; gap: 0.25rem; transition: border-color 0.2s, transform 0.25s var(--ease); min-width: 0; }
.ip-tile:hover { border-color: var(--teal); transform: translateY(-2px); color: inherit; }
.ip-tile .k { font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.ip-tile .v { font-weight: 600; font-size: 0.98rem; color: var(--text); overflow-wrap: anywhere; }
.ip-tile .v .short { display: none; }
.ip-where { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ip-row { display: grid; grid-template-columns: 88px 1fr; gap: 0.8rem; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.ip-row .k { font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); padding-top: 0.25rem; }
.ip-row .v { color: var(--text-soft); }
.ip-row .v a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.ip-hours { display: grid; gap: 0.25rem; }
.ip-hours div { display: flex; justify-content: space-between; gap: 1rem; }
.ip-hours div span:last-child { color: var(--text); }
.map-embed { aspect-ratio: 16 / 10; width: 100%; border: 0; display: block; filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg); opacity: 0.9; }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem 1.2rem; align-items: start; }
.faq { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 1rem 1.15rem; display: flex; justify-content: space-between; gap: 1rem; font-weight: 600; font-size: 0.98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); color: var(--teal); flex: none; transition: transform 0.25s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 1.15rem 1.1rem; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ---------- footer ---------- */
.footer { background: var(--ink-0); border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; color: var(--muted); font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer .brand img { height: auto; width: 200px; }
.footer p { margin-top: 1rem; max-width: 360px; }
.footer h4 { color: var(--text); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.9rem; }
.footer ul { display: grid; gap: 0.45rem; }
.footer a:hover { color: var(--teal-bright); }
.footer .hours div { display: flex; justify-content: space-between; gap: 1rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom a { color: var(--text-soft); }

/* ---------- gated claims ---------- */
[data-confirm] { display: none !important; }
body.confirmed-insured [data-confirm="insured"] { display: revert !important; }
body.confirmed-ceramic [data-confirm="ceramic"] { display: revert !important; }
body.confirmed-insured .trust-item[data-confirm="insured"] { display: flex !important; }
body.confirmed-ceramic .pill[data-confirm="ceramic"] { display: inline-flex !important; }

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.notfound h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.notfound p { color: var(--muted); margin-bottom: 1.6rem; }

/* ---------- desktop breakpoints (max-width 1024 and 900 are still "desktop" for verify-desktop: they are NOT the mobile block) ---------- */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-side { justify-self: start; max-width: 520px; }
  .est-grid { grid-template-columns: 1fr; }
  .est-result { position: static; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arrivals { grid-template-columns: 1fr 1fr; }
  .arrivals .blurb { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .info-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(10, 13, 16, 0.98); border-bottom: 1px solid var(--line); padding: 0.5rem 0 0.8rem; }
  .nav-links a { padding: 0.85rem var(--gutter); min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav.open .nav-links { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-phone { display: none; }
  .btn-full { display: none; }
  .btn-short { display: inline; }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .denver-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }
.hero-copy > * { animation: rise 0.9s var(--ease) both; }
.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.24s; }
.hero-side { animation: rise 0.9s 0.35s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-copy > *, .hero-side { animation: none; transition: none; opacity: 1; transform: none; }
  .tile img, .btn, .pill, .ip-tile { transition: none; }
}

/* =====================================================================
   MOBILE, add-only. Mirrors desktop at 2-up, form full width with 2-up fields, FAQ last.
   Nothing above this line may change for mobile. verify-desktop.mjs proves it.
   ===================================================================== */
@media (max-width: 760px) {
  :root { --section: clamp(2.6rem, 9vw, 3.6rem); --gutter: 1rem; }
  body { font-size: 1rem; }
  h2 { font-size: clamp(1.45rem, 6.2vw, 1.9rem); }
  .section-head { margin-bottom: 1.5rem; }
  .section-head p { font-size: 1rem; margin-top: 0.6rem; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .section-head.split .btn { display: none; }
  .eyebrow { margin-bottom: 0.6rem; font-size: 0.66rem; }

  /* nav */
  .nav .wrap { min-height: 62px; gap: 0.6rem; }
  .brand img { height: 30px; }
  .nav-right { gap: 0.5rem; }
  .btn.small { padding: 0.55rem 0.85rem; min-height: 44px; }

  /* hero */
  .hero { min-height: 0; }
  .hero-media img { object-position: 68% 50%; }
  .hero-media::after { background: linear-gradient(180deg, rgba(10, 13, 16, 0.55) 0%, rgba(10, 13, 16, 0.8) 45%, rgba(10, 13, 16, 0.97) 100%); }
  .hero .wrap { padding-block: 5.5rem 2rem; gap: 1.4rem; }
  .hero-copy h1 { font-size: clamp(2rem, 9.5vw, 2.6rem); margin-bottom: 0.9rem; }
  .hero-copy .lede { font-size: 1rem; margin-bottom: 1.3rem; }
  .hero-cta { gap: 0.6rem; }
  .hero-cta .btn { flex: 1 1 auto; padding-inline: 1rem; }
  .hero-side { max-width: none; gap: 0.6rem; }
  .rating-card { padding: 0.9rem 1rem; }
  .rating-card .big { font-size: 2.1rem; }
  .hero-facts { gap: 0.6rem; }
  .fact { padding: 0.7rem 0.8rem; }
  .fact b { font-size: 0.85rem; }
  .fact span { font-size: 0.8rem; }

  /* trust 2-up */
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item { padding: 0.9rem 0.9rem; gap: 0.6rem; flex-direction: column; }
  .trust-item .ico { width: 32px; height: 32px; }
  .trust-item b { font-size: 0.86rem; }
  .trust-item span { font-size: 0.82rem; }


  /* estimator */
  .est-grid { gap: 0.8rem; }
  .est-steps { gap: 0.7rem; }
  .est-step { padding: 1rem 0.95rem; }
  .est-step header { flex-wrap: wrap; gap: 0.4rem 0.7rem; margin-bottom: 0.7rem; }
  .est-step h3 { font-size: 0.95rem; }
  .est-step .hint { font-size: 0.78rem; }
  .pills { gap: 0.45rem; }
  .pill { padding: 0.55rem 0.85rem; font-size: 0.88rem; }
  .pill small { display: block; width: 100%; font-size: 0.74em; }
  [data-est-addons] .pill { flex-direction: column; align-items: flex-start; gap: 0.1rem; flex: 1 1 calc(50% - 0.45rem); }
  [data-est-sizes] .pill, [data-est-services] .pill { flex: 1 1 calc(50% - 0.45rem); justify-content: center; }
  .est-result { padding: 1.1rem 1rem 1rem; }
  .est-result .amount { font-size: 1.55rem; }
  .est-result .amount.empty { font-size: 1.05rem; }
  .est-result .includes { display: none; }
  .est-result .note { font-size: 0.78rem; margin-top: 0.8rem; }

  /* work 2-up */
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; }
  .tile.tall { grid-row: span 1; aspect-ratio: 4 / 3; }
  .gallery .tile:nth-child(11) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .tile figcaption, .tile .cap { padding: 1.6rem 0.6rem 0.5rem; font-size: 0.74rem; }
  .tile .cap small { display: none; }
  .arrivals { margin-top: 0.7rem; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; }
  .arrivals .blurb { grid-column: 1 / -1; padding: 1rem 1rem; }
  .arrivals .blurb h3 { font-size: 1rem; }
  .arrivals .blurb p { font-size: 0.88rem; }
  .arrivals .tile { min-height: 0; aspect-ratio: 4 / 5; }
  .lightbox .bar { font-size: 0.82rem; }

  /* denver 2-up */
  .denver .mark-bg { width: 120%; right: -30%; opacity: 0.04; }
  .denver-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .dv { grid-template-columns: 1fr; gap: 0.4rem; padding: 0.95rem 0.9rem; }
  .dv .n { font-size: 1.2rem; }
  .dv h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
  .dv p { font-size: 0.84rem; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }

  /* reviews: swipe row */
  .reviews-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 0.7rem; padding-bottom: 0.4rem; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none; }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review { flex: 0 0 82%; scroll-snap-align: start; padding: 1rem 1rem 0.9rem; gap: 0.6rem; }
  .review blockquote { font-size: 0.92rem; display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
  .review footer { font-size: 0.82rem; padding-top: 0.6rem; }
  .review-summary { margin-top: 0.9rem; flex-wrap: wrap; gap: 0.6rem 1rem; padding: 0.9rem 1rem; }
  .review-summary .big { font-size: 1.8rem; }
  .review-summary .desc { font-size: 0.86rem; }
  .review-summary .desc::after { content: " Swipe for more."; color: var(--teal-bright); }
  .review-summary .btn { margin-left: 0; width: 100%; }

  /* contact: form full width, 2-up fields, call and email tiles above it, address and map after */
  .contact-layout { display: flex; flex-direction: column; gap: 0.7rem; }
  .info-panel { display: contents; }
  .ip-head { order: 0; padding: 0; }
  .ip-head h3 { font-size: 1.05rem; }
  .ip-head p { font-size: 0.88rem; }
  .ip-quick { order: 1; gap: 0.6rem; grid-template-columns: 1fr 1fr; }
  .ip-tile { padding: 0.8rem 0.85rem; }
  .ip-tile .v { font-size: 0.9rem; }
  .ip-tile .v .long { display: none; }
  .ip-tile .v .short { display: inline; }
  .contact-layout .form-card { order: 2; padding: 1.1rem 1rem 1rem; }
  .form-card h3 { font-size: 1.1rem; }
  .form-card .intro { font-size: 0.88rem; margin-bottom: 0.9rem; }
  .est-chip { font-size: 0.86rem; padding: 0.6rem 0.8rem; flex-wrap: wrap; }
  .fields { gap: 0.7rem; }
  .field label { font-size: 0.8rem; }
  .field input, .field select, .field textarea { padding: 0.7rem 0.8rem; min-height: 46px; font-size: 16px; }
  .field textarea { min-height: 96px; }
  .form-actions .btn { width: 100%; }
  .form-actions .fine { font-size: 0.8rem; }
  .ip-where { order: 3; }
  .ip-row { grid-template-columns: 1fr; gap: 0.3rem; padding: 0.8rem 0.9rem; font-size: 0.9rem; }
  .map-embed { aspect-ratio: 16 / 9; }

  /* faq single column (already last) */
  .faq summary { padding: 0.85rem 0.9rem; font-size: 0.92rem; }
  .faq .a { padding: 0 0.9rem 0.9rem; font-size: 0.88rem; }

  /* footer 2-up */
  .footer { padding-block: 2.2rem 1.4rem; font-size: 0.88rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem 1rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer .brand img { width: 160px; }
  .footer p { margin-top: 0.7rem; font-size: 0.88rem; }
  .footer-bottom { margin-top: 1.6rem; font-size: 0.8rem; flex-direction: column; gap: 0.3rem; }

  /* round 2 compaction (user feedback 2026-09-02): less scrolling, FAQ 2-up */
  :root { --section: clamp(2rem, 7vw, 2.6rem); }
  .section-head { margin-bottom: 1.1rem; }
  .hero .wrap { padding-block: 4.2rem 1.4rem; gap: 1rem; }
  .hero-facts { display: none; }
  .hero-copy .lede { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1rem; }
  .section.tight { padding-block: 1.1rem; }
  .trust { gap: 1px; }
  .trust-item { flex-direction: row; align-items: center; padding: 0.65rem 0.75rem; gap: 0.55rem; }
  .trust-item span { display: none; }
  .trust-item .ico { width: 28px; height: 28px; border-radius: 8px; }
  .trust-item .ico svg { width: 15px; height: 15px; }
  .trust-item b { font-size: 0.8rem; margin: 0; }
  .est-grid { gap: 0.6rem; }
  .est-steps { gap: 0.55rem; }
  .est-step { padding: 0.8rem 0.8rem; }
  .est-step header { margin-bottom: 0.55rem; }
  .est-step .hint { display: none; }
  .pill { min-height: 40px; padding: 0.45rem 0.7rem; font-size: 0.84rem; }
  .est-result { padding: 0.9rem 0.9rem 0.85rem; }
  .est-result .note { font-size: 0.74rem; margin-top: 0.6rem; }
  .est-result .btn { margin-top: 0.8rem; }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.35rem; }
  .gallery .tile { aspect-ratio: 1 / 1; }
  .gallery .tile:first-child { grid-column: span 2; aspect-ratio: auto; }
  .gallery .tile:nth-child(11) { grid-column: span 1; aspect-ratio: 1 / 1; }
  .gallery .tile .cap { display: none; }
  .arrivals { margin-top: 0.5rem; gap: 0.35rem; }
  .arrivals .blurb { padding: 0.8rem 0.85rem; }
  .arrivals .blurb p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .arrivals .tile { aspect-ratio: 16 / 10; }
  .denver .section-head p { display: none; }
  .denver-grid { gap: 0.45rem; }
  .dv { padding: 0.75rem 0.75rem; gap: 0.25rem; }
  .dv p { -webkit-line-clamp: 4; }
  .review { padding: 0.85rem 0.85rem 0.75rem; gap: 0.45rem; }
  .review blockquote { -webkit-line-clamp: 6; }
  .review-summary { margin-top: 0.6rem; padding: 0.75rem 0.85rem; }
  .review-summary .big { font-size: 1.5rem; }
  .contact-layout { gap: 0.55rem; }
  .ip-head p { display: none; }
  .ip-tile { padding: 0.65rem 0.75rem; }
  .form-card { padding: 0.9rem 0.85rem 0.85rem; }
  .form-card .intro { display: none; }
  .fields { gap: 0.55rem; }
  .field { gap: 0.25rem; }
  .field input, .field select, .field textarea { min-height: 44px; padding: 0.6rem 0.75rem; }
  .field textarea { min-height: 72px; }
  .form-actions { margin-top: 0.8rem; }
  .form-actions .fine { display: none; }
  .ip-row { padding: 0.65rem 0.8rem; }
  .map-embed { aspect-ratio: 2 / 1; }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.4rem; align-items: start; }
  .faq summary { padding: 0.6rem 0.65rem; font-size: 0.78rem; line-height: 1.3; gap: 0.35rem; }
  .faq .a { padding: 0 0.65rem 0.65rem; font-size: 0.8rem; line-height: 1.45; }
  .footer { padding-block: 1.6rem 1rem; }
  .footer-grid { gap: 1rem 0.8rem; }
  .footer .brand img { width: 130px; }
  .footer-grid > div:first-child p { display: none; }
  .footer-bottom { margin-top: 1rem; }
  .footer .hours div { display: grid; gap: 0; margin-bottom: 0.35rem; }
}
