/* =========================================================================
   Set In Stone - base, layout, components
   ========================================================================= */

/* ---- Fonts: self-hosted, latin subset, variable ------------------------ */
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
p, h1, h2, h3, h4, li { overflow-wrap: break-word; }
ul[role="list"] { list-style: none; padding: 0; }

/* ---- Type -------------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--track-display);
  text-wrap: balance;
}
/* Bodoni's hairlines shatter below ~28px, so small headings use Inter. */
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: var(--lh-snug);
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-sm);
}
/* The one restrained metal note. */
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--brass-500);
  opacity: .5;
  max-width: 4rem;
}
.lede { font-size: var(--fs-md); color: var(--text-muted); max-width: var(--measure); }
.muted { color: var(--text-muted); }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--accent-hover); }

/* ---- Focus: never removed --------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

.skip-link {
  position: absolute;
  left: var(--sp-sm);
  top: -100px;
  z-index: 200;
  background: var(--accent-solid);
  color: var(--accent-solid-contrast);
  padding: var(--sp-2xs) var(--sp-sm);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-sm); color: var(--accent-solid-contrast); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Layout ------------------------------------------------------------ */
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - (var(--gutter) * 2), var(--container-narrow)); }
.container--wide   { width: min(100% - (var(--gutter) * 2), var(--container-wide)); }

.section { padding-block: var(--section-y); }
.section--sunken  { background: var(--bg-sunken); }
.section--inverse { background: var(--bg-inverse); color: var(--text-inverse); }
.section--inverse .eyebrow,
.section--inverse .lede,
.section--inverse .muted { color: var(--stone-400); }
.section--inverse h2, .section--inverse h3 { color: var(--text-inverse); }

.section-head { max-width: var(--measure); margin-bottom: var(--sp-lg); }
.grid { display: grid; gap: var(--sp-md); }
.flow > * + * { margin-top: var(--sp-sm); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2xs);
  padding: .8em 1.5em;
  min-height: 44px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent-solid); color: var(--accent-solid-contrast); }
.btn--primary:hover { background: var(--accent-solid-hover); color: var(--accent-solid-contrast); }
.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--secondary:hover { border-color: var(--text); color: var(--text); background: var(--bg-raised); }
.btn--ghost-light {
  background: rgb(255 255 255 / .1);
  color: #fff;
  border-color: rgb(255 255 255 / .45);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgb(255 255 255 / .2); color: #fff; }
.btn--lg { font-size: var(--fs-base); padding: .95em 1.8em; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-xs); }

/* ---- Media: LQIP blur-up ---------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  background-color: var(--lqip-color, var(--stone-300));
  background-image: var(--lqip);
  background-size: cover;
  background-position: center;
}
/* Images are wrapped in <picture>, so these must be descendant selectors -
   `.media > img` would never match. <picture> must stretch too, or it
   collapses to auto height and object-fit has nothing to fill. */
.media picture { display: block; width: 100%; height: 100%; }
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Visible by default, deliberately. The LQIP sits BEHIND as the background
     of .media, so it still shows through until the real image paints - but no
     JS failure or blocked script can ever leave the photography invisible. */
  opacity: 1;
  animation: media-in var(--dur-slow) var(--ease) both;
}
@keyframes media-in { from { opacity: 0 } to { opacity: 1 } }
@media (prefers-reduced-motion: reduce) {
  .media img { animation: none; }
}

/* ---- Header ------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  min-height: var(--header-h);
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* The mark is a photographed bevelled sign, so it carries its own edge and
     needs no border. Sized by height so the header rhythm stays constant.
     Its aspect is ~1.81:1 and the wordmark muddies below about 100px wide,
     so it gets more height than a plain text logo would need. */
  height: 2.75rem;
}
.header__logo picture, .header__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media (min-width: 48rem) { .header__logo { height: 3.75rem; } }
/* Its dark outer ring disappears against a near-black page, so lift it. */
:root[data-theme="dark"] .header__logo img,
:root[data-theme="dark"] .footer__logo {
  filter: drop-shadow(0 0 1px rgb(255 255 255 / .55)) drop-shadow(0 1px 3px rgb(0 0 0 / .5));
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .header__logo img,
  :root:not([data-theme="light"]) .footer__logo {
    filter: drop-shadow(0 0 1px rgb(255 255 255 / .55)) drop-shadow(0 1px 3px rgb(0 0 0 / .5));
  }
}
.footer__logo {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  /* The footer is always dark, so the mark always needs the lift here. */
  filter: drop-shadow(0 0 1px rgb(255 255 255 / .5)) drop-shadow(0 1px 3px rgb(0 0 0 / .5));
}
.header__nav { display: none; margin-left: auto; }
.header__nav ul { display: flex; gap: var(--sp-md); list-style: none; padding: 0; }
.header__nav a {
  color: var(--text);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: .4rem 0;
  position: relative;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.header__nav a:hover::after,
.header__nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: var(--sp-2xs); margin-left: auto; }
.header__phone {
  display: none;
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}
.header__phone:hover { color: var(--accent); }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--text);
}
.icon-btn:hover { border-color: var(--border-strong); }

@media (min-width: 48rem) { .header__inner { min-height: 5rem; } }

@media (min-width: 62rem) {
  .header__nav { display: block; margin-left: auto; }
  .header__actions { margin-left: 0; }
  .header__phone { display: inline-block; }
  .nav-toggle { display: none; }
}

/* ---- Mobile nav (native dialog: free focus trap + Esc) ----------------- */
.mobile-nav {
  width: min(22rem, 88vw);
  max-width: none;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 0 0 auto;
  padding: var(--sp-md);
  border: none;
  border-left: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}
.mobile-nav::backdrop { background: rgb(16 14 12 / .6); backdrop-filter: blur(2px); }
.mobile-nav__head { display: flex; justify-content: flex-end; margin-bottom: var(--sp-md); }
.mobile-nav ul { list-style: none; padding: 0; display: grid; gap: var(--sp-2xs); }
.mobile-nav a {
  display: block;
  padding: var(--sp-xs) var(--sp-2xs);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav__cta { margin-top: var(--sp-md); display: grid; gap: var(--sp-2xs); }

/* ---- Hero -------------------------------------------------------------- */
/* Positive z-index layering only: a child with a negative z-index paints
   BEHIND its parent's own background, which hid the hero photo entirely. */
.hero { position: relative; isolation: isolate; background: var(--stone-800); }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* <picture> is an inline wrapper by default and would collapse to auto height,
   leaving the hero image invisible. It has to stretch too. */
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--scrim);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 14vh, 8rem);
  min-height: clamp(30rem, 78dvh, 46rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero h1 { color: #fff; max-width: 18ch; }
.hero .lede { color: rgb(255 255 255 / .88); max-width: 46ch; margin-top: var(--sp-sm); }
.hero .eyebrow { color: rgb(255 255 255 / .8); }
.hero .eyebrow::after { background: var(--brass-300); opacity: .8; }
.hero .btn-row { margin-top: var(--sp-md); }

/* ---- Trust strip ------------------------------------------------------- */
.trust {
  border-block: 1px solid var(--border);
  background: var(--bg-raised);
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm) var(--sp-md);
  list-style: none;
  padding: var(--sp-md) 0;
  margin: 0;
}
.trust__item { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); }
.trust__item strong { display: block; font-size: var(--fs-base); font-weight: 700; }
.trust__item svg { color: var(--accent); flex-shrink: 0; }
@media (min-width: 48rem) { .trust__list { grid-template-columns: repeat(4, 1fr); } }

/* ---- Cards ------------------------------------------------------------- */
.cards { display: grid; gap: var(--sp-md); grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a.card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card .media { aspect-ratio: 4 / 3; }
.card__body { padding: var(--sp-sm); display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.card__title { font-family: var(--font-body); font-size: var(--fs-md); font-weight: 600; }
.card__meta { font-size: var(--fs-sm); color: var(--text-muted); }
a.card .card__title { transition: color var(--dur-fast) var(--ease); }
a.card:hover .card__title { color: var(--accent); }

/* ---- Split feature ----------------------------------------------------- */
.split { display: grid; gap: var(--sp-lg); align-items: center; }
@media (min-width: 52rem) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .split--reverse > :first-child { order: 2; }
}
.split .media { aspect-ratio: 5 / 4; border-radius: var(--r-md); }

/* ---- Steps ------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-md); }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); } }
.step { counter-increment: step; padding-top: var(--sp-sm); border-top: 2px solid var(--border-strong); }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--accent);
  margin-bottom: .25rem;
}
.step h3 { font-family: var(--font-body); font-size: var(--fs-md); font-weight: 600; margin-bottom: .35rem; }
.step p { font-size: var(--fs-sm); color: var(--text-muted); }

/* ---- Footer ------------------------------------------------------------ */
.footer { background: var(--bg-inverse); color: var(--stone-300); padding-block: var(--sp-xl) var(--sp-md); }
.footer a { color: var(--stone-200); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: var(--sp-lg); }
@media (min-width: 48rem) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h3 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: var(--sp-xs);
}
.footer ul { list-style: none; padding: 0; display: grid; gap: .45rem; font-size: var(--fs-sm); }
.footer__brand { font-family: var(--font-display); font-size: var(--fs-lg); color: #fff; letter-spacing: .05em; text-transform: uppercase; }
.footer__bottom {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-md);
  border-top: 1px solid rgb(255 255 255 / .12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--stone-500);
}
.socials { display: flex; gap: var(--sp-2xs); }
.socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgb(255 255 255 / .2);
  border-radius: var(--r-sm);
}
.socials a:hover { border-color: #fff; }

/* ---- Sticky mobile action bar ------------------------------------------ */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
  transition: transform var(--dur) var(--ease);
}
.sticky-bar[hidden] { display: none; }
.sticky-bar.is-hidden { transform: translateY(110%); }
.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: var(--stickybar-h);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}
.sticky-bar a + a { background: var(--accent-solid); color: var(--accent-solid-contrast); }
@media (min-width: 62rem) { .sticky-bar { display: none; } }
@media (max-width: 61.99rem) { body { padding-bottom: var(--stickybar-h); } }

/* ---- Breadcrumbs ------------------------------------------------------- */
.crumbs { font-size: var(--fs-xs); color: var(--text-muted); padding-block: var(--sp-sm); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--stone-400); }
.crumbs a { color: var(--text-muted); }

/* ---- Page head --------------------------------------------------------- */
.page-head { padding-block: var(--sp-lg) var(--sp-md); border-bottom: 1px solid var(--border); }
.page-head .lede { margin-top: var(--sp-sm); }

/* ---- Prose ------------------------------------------------------------- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: var(--sp-sm); }
.prose h2 { margin-top: var(--sp-lg); font-size: var(--fs-xl); }
.prose h3 { margin-top: var(--sp-md); font-size: var(--fs-lg); }
.prose ul, .prose ol { padding-left: 1.25rem; display: grid; gap: .4rem; }

/* ---- Utility ----------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-lg { margin-top: var(--sp-lg); }
.mt-md { margin-top: var(--sp-md); }

/* ---- Lists: included / excluded ---------------------------------------- */
.check-list, .x-list { list-style: none; padding: 0; display: grid; gap: var(--sp-xs); }
.check-list li, .x-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before, .x-list li::before {
  position: absolute; left: 0; top: .12em;
  width: 1.25rem; height: 1.25rem;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700; line-height: 1;
}
.check-list li::before {
  content: "✓";
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}
.x-list li::before {
  content: "+";
  background: var(--bg-sunken);
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}
.x-list li strong { display: block; }
.x-list li span { display: block; font-size: var(--fs-sm); color: var(--text-muted); }
.check-list--sm li { font-size: var(--fs-sm); }
.section--inverse .check-list li::before { background: rgb(255 255 255 / .14); color: #fff; }

.callout {
  border-left: 3px solid var(--accent);
  background: var(--bg-sunken);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ---- Definition lists --------------------------------------------------- */
.spec { display: grid; gap: 0; margin-top: var(--sp-md); }
.spec > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: var(--sp-sm);
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
}
.spec dt { color: var(--text-muted); }
.spec dd { margin: 0; font-weight: 500; }
.spec--tight > div { grid-template-columns: 5rem 1fr; padding: .25rem 0; border: 0; }

.hours-list { display: grid; gap: 0; margin-top: var(--sp-sm); max-width: 26rem; }
.hours-list > div {
  display: flex; justify-content: space-between; gap: var(--sp-sm);
  padding: .55rem 0; border-bottom: 1px solid var(--border);
}
.hours-list dt { color: var(--text-muted); font-size: var(--fs-sm); }
.hours-list dd { margin: 0; font-weight: 600; font-size: var(--fs-sm); }

.addr { font-style: normal; margin-top: var(--sp-sm); line-height: 1.7; }

.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; margin-top: var(--sp-sm); }
.pill-list li {
  padding: .35rem .8rem; font-size: var(--fs-sm);
  background: var(--bg-sunken); border: 1px solid var(--border);
  border-radius: var(--r-full);
}

/* ---- Tables ------------------------------------------------------------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 40rem; font-size: var(--fs-sm); }
.compare th, .compare td { padding: var(--sp-xs) var(--sp-sm); text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare thead th {
  font-family: var(--font-display); font-size: var(--fs-md); font-weight: 600;
  border-bottom: 2px solid var(--border-strong);
}
.compare tbody th { color: var(--text-muted); font-weight: 600; white-space: nowrap; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 0; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: var(--sp-sm) 2.5rem var(--sp-sm) 0;
  font-weight: 600; font-size: var(--fs-md);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .5rem; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; font-weight: 400;
  color: var(--accent); transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding-bottom: var(--sp-sm); color: var(--text-muted); max-width: var(--measure); }

/* ---- Gallery filters ---------------------------------------------------- */
.filters { display: grid; gap: var(--sp-md); margin-bottom: var(--sp-md); }
.filters__group { display: grid; gap: var(--sp-2xs); }
.filters__label {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--text-muted);
}
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .85rem; min-height: 38px;
  font-size: var(--fs-sm); font-weight: 500;
  text-decoration: none; color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.chip:hover { border-color: var(--text-muted); color: var(--text); }
.chip.is-active { background: var(--accent-solid); border-color: var(--accent-solid); color: var(--accent-solid-contrast); }
.chip__n { opacity: .6; font-size: var(--fs-xs); }
.chip.is-active .chip__n { opacity: .8; }
.filters__count { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-md); }
.empty { text-align: center; padding: var(--sp-xl) 0; color: var(--text-muted); }

/* ---- Gallery tiles ------------------------------------------------------ */
.tiles {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--sp-2xs);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
}
.tile[hidden] { display: none; }
.tile__link { display: block; position: relative; overflow: hidden; border-radius: var(--r-sm); text-decoration: none; }
.tile__media { aspect-ratio: 1; }
.tile__link img { transition: transform var(--dur-slow) var(--ease), opacity var(--dur-slow) var(--ease); }
.tile__link:hover img { transform: scale(1.04); }
.tile__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem .7rem .6rem;
  font-size: var(--fs-xs); font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgb(16 14 12 / .8), transparent);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.tile__link:hover .tile__caption, .tile__link:focus-visible .tile__caption { opacity: 1; }

/* ---- Lightbox ----------------------------------------------------------- */
.lightbox {
  width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh;
  padding: 0; margin: 0; border: 0; background: rgb(10 9 8 / .97); color: #fff;
}
.lightbox::backdrop { background: rgb(10 9 8 / .9); }
.lightbox__figure {
  margin: 0; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-sm); padding: 3.5rem 1rem;
}
.lightbox__figure img { max-width: min(100%, 1400px); max-height: calc(100dvh - 8rem); width: auto; height: auto; object-fit: contain; border-radius: var(--r-sm); }
.lightbox__figure figcaption { font-size: var(--fs-sm); color: var(--stone-400); text-align: center; }
.lightbox__close { position: absolute; top: .75rem; right: .75rem; color: #fff; border-color: rgb(255 255 255 / .25); z-index: 2; }
.lightbox__close:hover { border-color: #fff; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; z-index: 2;
  display: grid; place-items: center;
  font-size: 2rem; line-height: 1;
  background: rgb(255 255 255 / .1); color: #fff;
  border: 1px solid rgb(255 255 255 / .25); border-radius: var(--r-full);
  cursor: pointer;
}
.lightbox__nav:hover { background: rgb(255 255 255 / .2); }
.lightbox__nav--prev { left: .75rem; }
.lightbox__nav--next { right: .75rem; }

/* ---- Contact cards ------------------------------------------------------ */
.contact-grid { display: grid; gap: var(--sp-sm); grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.contact-card {
  display: grid; gap: .25rem; justify-items: start;
  padding: var(--sp-md);
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-md); text-decoration: none; color: inherit;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.contact-card:hover { border-color: var(--border-strong); transform: translateY(-2px); color: inherit; }
.contact-card svg { color: var(--accent); margin-bottom: .4rem; }
.contact-card__label { font-size: var(--fs-xs); letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--text-muted); }
.contact-card strong { font-family: var(--font-display); font-size: var(--fs-lg); }
.contact-card__note { font-size: var(--fs-sm); color: var(--text-muted); }
.contact-card--primary { border-color: var(--accent); }

/* ---- Forms -------------------------------------------------------------- */
.quote-layout { display: grid; gap: var(--sp-lg); }
@media (min-width: 62rem) { .quote-layout { grid-template-columns: 1.6fr 1fr; gap: var(--sp-xl); align-items: start; } }

.form fieldset { border: 0; padding: 0; margin: 0 0 var(--sp-lg); }
.form legend {
  font-family: var(--font-display); font-size: var(--fs-lg);
  padding: 0 0 var(--sp-sm); width: 100%;
  border-bottom: 1px solid var(--border); margin-bottom: var(--sp-md);
}
.field { display: grid; gap: .35rem; margin: 0 0 var(--sp-md); }
.field__label, .field label { font-size: var(--fs-sm); font-weight: 600; }
.field-row { display: grid; gap: var(--sp-md); }
@media (min-width: 40rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.hint { font-size: var(--fs-xs); color: var(--text-muted); }
.req { color: var(--accent); margin-left: .15rem; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; padding: .7rem .8rem; min-height: 44px;
  background: var(--bg-raised); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--red-500); }
textarea { resize: vertical; }
.err { font-size: var(--fs-xs); color: var(--red-500); font-weight: 600; }
:root[data-theme="dark"] .err { color: var(--red-300); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .err { color: var(--red-300); }
}

.radio-cards, .check-grid { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); }
.check-grid--wide { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.radio-card, .check-pill { position: relative; display: block; cursor: pointer; }
.radio-card input, .check-pill input {
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.radio-card span, .check-pill span {
  display: block; padding: .7rem .85rem; min-height: 44px;
  display: flex; align-items: center;
  font-size: var(--fs-sm); font-weight: 500;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.radio-card:hover span, .check-pill:hover span { border-color: var(--text-muted); }
.radio-card input:checked + span, .check-pill input:checked + span {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.radio-card input:focus-visible + span, .check-pill input:focus-visible + span {
  outline: 2px solid var(--focus); outline-offset: 2px;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__actions { display: flex; flex-wrap: wrap; gap: var(--sp-xs); }
.form__status { margin-top: var(--sp-sm); font-size: var(--fs-sm); font-weight: 600; }
.form__status.is-error { color: var(--red-500); }

.quote-aside { display: grid; gap: var(--sp-sm); align-content: start; }
.panel {
  padding: var(--sp-md);
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.panel--accent { border-color: var(--accent); background: var(--accent-subtle); }
.next-steps { margin: var(--sp-sm) 0 0; padding-left: 1.15rem; display: grid; gap: .5rem; font-size: var(--fs-sm); }

/* ---- Success panel ------------------------------------------------------ */
.sent {
  padding: var(--sp-lg);
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  background: var(--accent-subtle);
}
.sent h2 { font-size: var(--fs-xl); }
