/* Fonts are loaded via <link> in each page's <head>, not @import:
   @import serializes the request behind this stylesheet. */

/* ============================================================
   Cano's Light It Up Co.
   Palette sampled from their own logo: gold #F0C000, chrome
   #F0F0F0 -> #909090, black field. Dark canvas is required --
   the logo's lettering is chrome and disappears on white.
   ============================================================ */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root {
  --gold: #f3c00c;
  --gold-hi: #ffdc55;
  --gold-deep: #b98c00;
  --gold-glow: rgba(243, 192, 12, 0.34);

  --chrome-hi: #f5f6f8;
  --chrome: #c9ccd2;
  --chrome-lo: #8b9099;

  --ink: #0c0d10;
  --ink-2: #131519;
  --ink-3: #191c21;
  --card: #16181d;
  --line: #262a31;
  --line-soft: #1e2228;

  --text: #edeef1;
  --muted: #9aa0aa;
  --muted-dim: #6f757e;

  --nav-h: 74px;

  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --shell: 1220px;
  --pad: clamp(1.15rem, 4.5vw, 2.75rem);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.68, 0.35, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.075rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
}

p { margin: 0; }

::selection { background: var(--gold); color: #14100a; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.shell {
  width: min(100% - (var(--pad) * 2), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- shared bits ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.735rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.eyebrow::before {
  content: '';
  width: clamp(22px, 5vw, 46px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex: none;
}

.section-head { max-width: 62ch; }

.section-title {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  margin-top: 0.5rem;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.lede {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 58ch;
}

.chrome-text {
  background: linear-gradient(177deg, var(--chrome-hi) 8%, #ffffff 26%, var(--chrome) 52%, var(--chrome-lo) 74%, #e7e9ec 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-text {
  background: linear-gradient(177deg, var(--gold-hi) 10%, var(--gold) 48%, var(--gold-deep) 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px var(--gold-glow));
}

/* buttons */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.92em 1.5em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--btn-bg);
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.28s var(--ease),
              background-color 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
  line-height: 1.1;
}

.btn-gold {
  background: linear-gradient(178deg, var(--gold-hi), var(--gold) 55%, var(--gold-deep));
  color: #16120a;
  box-shadow: 0 0 0 rgba(243, 192, 12, 0), 0 10px 26px -12px rgba(243, 192, 12, 0.65);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px -4px var(--gold-glow), 0 14px 30px -14px rgba(243, 192, 12, 0.8);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.015);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.72em 1.15em; font-size: 0.8rem; }

/* bolt glyph */
.bolt {
  width: 0.72em;
  height: 1em;
  fill: currentColor;
  flex: none;
}

/* ============================================================
   header / nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(12, 13, 16, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  background: rgba(12, 13, 16, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - (var(--pad) * 2), var(--shell));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
  min-width: 0;
}

.brand img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--chrome-hi);
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.575rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.28rem;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.815rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.nav-menu a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--chrome-hi);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.nav-phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  flex: none;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: background-color 0.2s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.26s var(--ease);
}

.nav-toggle span::before { top: -5.5px; }
.nav-toggle span::after { top: 5.5px; }

.nav-toggle[aria-expanded='true'] span { background-color: transparent; }
.nav-toggle[aria-expanded='true'] span::before { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 950px) {
  :root { --nav-h: 66px; }

  .nav-toggle { display: flex; }
  .nav-menu-wrap { display: none; }

  .nav-menu-wrap.is-open {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    padding: 1.5rem var(--pad) 2.5rem;
    border-top: 1px solid var(--line-soft);
    overflow-y: auto;
  }

  .nav-menu-wrap.is-open .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-menu-wrap.is-open .nav-menu a {
    display: block;
    padding: 1.05rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text);
  }

  .nav-menu-wrap.is-open .nav-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.6rem;
    gap: 0.85rem;
  }

  .nav-menu-wrap.is-open .nav-cta .btn,
  .nav-menu-wrap.is-open .nav-phone { justify-content: center; width: 100%; }

  .nav-menu-wrap.is-open .nav-phone {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.9em 1em;
  }

  .brand img { height: 40px; }
  .brand-name { font-size: 1.02rem; }
}

@media (min-width: 951px) {
  .nav-menu-wrap {
    display: flex;
    align-items: center;
    gap: 1.65rem;
  }
}

@media (max-width: 400px) {
  .brand-sub { display: none; }
}

/* ============================================================
   hero
   ============================================================ */

.hero {
  position: relative;
  container-type: inline-size;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(1.75rem, 5cqi, 4rem);
  overflow: hidden;
  isolation: isolate;
}

/* warm filament bloom + schematic grid */
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto;
  height: 88%;
  background:
    radial-gradient(58% 62% at 22% 34%, rgba(243, 192, 12, 0.16), transparent 68%),
    radial-gradient(46% 50% at 78% 12%, rgba(243, 192, 12, 0.075), transparent 72%);
  z-index: -2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(72% 78% at 40% 42%, #000 12%, transparent 76%);
  mask-image: radial-gradient(72% 78% at 40% 42%, #000 12%, transparent 76%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2.5cqi, 1.6rem);
  align-items: flex-start;
  max-width: min(100%, 62ch);
}

/* The clamp minimum does the work on phones (where 11cqi is only ~43px) and is
   inert from ~440px up, so the headline gains presence on a narrow screen
   without growing on tablet/desktop. */
.hero h1 {
  font-size: clamp(3.05rem, 11cqi, 6.4rem);
  line-height: 0.86;
  letter-spacing: -0.005em;
  margin: 0;
}

.hero h1 .line { display: block; }

.hero-sub {
  color: var(--muted);
  font-size: clamp(0.99rem, 2.15cqi, 1.2rem);
  max-width: 52ch;
  line-height: 1.55;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.6rem, 1.6cqi, 0.9rem);
}

/* Full-width stacked CTAs on a phone: bigger tap targets, no ragged edge. */
@container (max-width: 520px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem clamp(0.7rem, 2cqi, 1.35rem);
  font-size: clamp(0.755rem, 1.55cqi, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  white-space: nowrap;
}

.hero-proof .bolt { color: var(--gold); }

/* decorative vertical rail, desktop only */
.hero-rail {
  position: absolute;
  right: calc(var(--pad) * 0.55);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted-dim);
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
  display: none;
  align-items: center;
  gap: 1.2rem;
  pointer-events: none;
  z-index: -1;
}

.hero-rail::before,
.hero-rail::after {
  content: '';
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

@container (min-width: 900px) {
  .hero-rail { display: flex; }
}

/* ============================================================
   marquee strip
   ============================================================ */

.strip {
  border-block: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  padding: 0.85rem 0;
  white-space: nowrap;
  width: max-content;
  animation: slide 46s linear infinite;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--chrome-lo);
}

.strip-track .bolt { color: var(--gold); }

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

/* ============================================================
   generic section rhythm
   ============================================================ */

.section { padding-block: clamp(3.75rem, 8.5vw, 7rem); }
.section-alt { background: var(--ink-2); }

/* ============================================================
   services
   ============================================================ */

/* Explicit tracks capped at 3 so the nine cards land as a clean 3x3 on desktop.
   Separators are drawn as card borders rather than a background showing through
   1px gaps -- with the background technique an incomplete final row renders as a
   large empty grey block. */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  border: 1px solid var(--line-soft);
  border-width: 1px 1px 0 0;
}

@media (min-width: 640px) {
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.svc {
  background: var(--ink);
  border-left: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(1.5rem, 3.2vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: background-color 0.3s var(--ease);
}

.svc::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--ease);
}

.svc:hover { background: var(--ink-3); }
.svc:hover::after { transform: scaleX(1); }

.svc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}

.svc h3 {
  font-size: 1.5rem;
  color: var(--chrome-hi);
  line-height: 1;
}

.svc p {
  color: var(--muted);
  font-size: 0.945rem;
  line-height: 1.55;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.svc-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.28em 0.72em;
}

.svc-note {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  background: var(--ink-2);
}

.svc-note p { color: var(--muted); max-width: 62ch; }
.svc-note strong { color: var(--text); }

/* ============================================================
   stats
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.stat { border-top: 1px solid var(--line); padding-top: 1.1rem; }

.stat dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 4rem);
  line-height: 0.9;
  color: var(--gold);
}

.stat dd {
  margin: 0.5rem 0 0;
  font-size: 0.815rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   work gallery
   ============================================================ */

/* Explicit tracks (not auto-fit) so the wide tile's column span is predictable. */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1080px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
}

.shot picture, .shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot img {
  aspect-ratio: 4 / 5;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.94) contrast(1.03);
}

.shot:hover img { transform: scale(1.035); filter: saturate(1.02) contrast(1.05); }

.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.1rem 0.95rem;
  font-size: 0.755rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--chrome-hi);
  background: linear-gradient(to top, rgba(8, 9, 11, 0.92), transparent);
}

/* ============================================================
   reviews
   ============================================================ */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.review {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.review blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
}

.review figcaption {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.review figcaption strong { color: var(--chrome); display: block; letter-spacing: 0.08em; }

/* ---------- founder ---------- */

.founder {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4.5vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}

.founder img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex: none;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  text-transform: uppercase;
  color: var(--chrome-hi);
  line-height: 1;
}

.founder-role {
  font-size: 0.735rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.4rem;
}

/* ============================================================
   visit / details
   ============================================================ */

.visit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 1.15rem;
  margin: 0;
}

.detail {
  display: grid;
  gap: 0.28rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.1rem;
}

.detail dt {
  font-size: 0.715rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
}

.detail dd {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

.detail dd a { text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.detail dd a:hover { color: var(--gold); border-color: var(--gold); }

.detail dd small { display: block; color: var(--muted); font-size: 0.875rem; margin-top: 0.15rem; }

.seal {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}

.seal img { width: clamp(112px, 26vw, 158px); height: auto; }

.seal h3 { font-size: 1.35rem; color: var(--chrome-hi); }

.seal p { color: var(--muted); font-size: 0.95rem; }

.seal-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; width: 100%; }

.seal-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--text);
}

.seal-points .bolt { color: var(--gold); margin-top: 0.34em; }

/* ============================================================
   CTA band
   ============================================================ */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border-block: 1px solid var(--line-soft);
  padding-block: clamp(3.25rem, 8vw, 5.5rem);
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: auto -10% -55%;
  height: 120%;
  background: radial-gradient(52% 58% at 50% 100%, rgba(243, 192, 12, 0.19), transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; display: grid; gap: 1.4rem; justify-items: center; }

.cta-band h2 { font-size: clamp(2.1rem, 6.5vw, 4.1rem); }

.cta-band p { color: var(--muted); max-width: 50ch; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ============================================================
   footer
   ============================================================ */

.site-footer {
  background: var(--ink);
  padding-block: clamp(2.75rem, 6vw, 4rem) 2rem;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

.footer-brand { display: grid; gap: 1rem; justify-items: start; }
.footer-brand img { width: 140px; height: auto; }
.footer-brand p { color: var(--muted); font-size: 0.93rem; max-width: 34ch; }

.footer-col h4 {
  font-size: 0.735rem;
  letter-spacing: 0.19em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.95rem;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.62rem; }

.footer-col a, .footer-col li {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.93rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--muted-dim);
}

.footer-bottom a { color: var(--muted-dim); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   contact page
   ============================================================ */

.page-head {
  position: relative;
  padding-block: clamp(2.75rem, 7vw, 4.75rem) clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.page-head::before {
  content: '';
  position: absolute;
  inset: -60% -20% auto;
  height: 150%;
  background: radial-gradient(46% 52% at 26% 40%, rgba(243, 192, 12, 0.13), transparent 70%);
  pointer-events: none;
}

.page-head .shell { position: relative; }
.page-head h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); margin-top: 0.6rem; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4.5vw, 3.25rem);
  align-items: start;
}

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
}

.form-card > h2 { font-size: clamp(1.7rem, 3.6vw, 2.25rem); color: var(--chrome-hi); }
.form-card > p { color: var(--muted); margin-top: 0.7rem; font-size: 0.97rem; }

#estimate-form { display: grid; gap: 1.05rem; margin-top: 1.75rem; }

.field { display: grid; gap: 0.42rem; }

.field.is-gone { display: none; }

.field label {
  font-size: 0.735rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.field label .req { color: var(--gold); }

.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.82em 0.95em;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea { resize: vertical; min-height: 118px; }

.field input::placeholder, .field textarea::placeholder { color: var(--muted-dim); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(243, 192, 12, 0.14);
}

.form-note { font-size: 0.85rem; color: var(--muted-dim); }
.form-note.is-gone { display: none; }

.turnstile-box { min-height: 0; }
.turnstile-box.is-gone { display: none; }

#estimate-form button[type='submit'] { width: 100%; }

#estimate-form button.is-sent {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  box-shadow: none;
  opacity: 1;
  cursor: default;
}

.form-status {
  font-size: 0.97rem;
  line-height: 1.55;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.form-status.is-success {
  border-color: rgba(243, 192, 12, 0.42);
  background: rgba(243, 192, 12, 0.07);
  color: var(--text);
}

.form-status.is-error {
  border-color: rgba(226, 96, 76, 0.45);
  background: rgba(226, 96, 76, 0.08);
  color: #f2c9c2;
}

.form-status a { color: var(--gold); }

.contact-aside { display: grid; gap: 1rem; }

.contact-card {
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  padding: clamp(1.35rem, 3vw, 1.8rem);
  display: grid;
  gap: 0.75rem;
}

.contact-card h3 { font-size: 1.3rem; color: var(--chrome-hi); }
.contact-card p { color: var(--muted); font-size: 0.95rem; }

.contact-lines { display: grid; gap: 0.85rem; margin: 0; }

.contact-lines a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.contact-lines a:hover { color: var(--gold); }
.contact-lines .bolt { color: var(--gold); }
.contact-lines small { display: block; font-weight: 400; color: var(--muted-dim); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }

.hours-list { display: grid; gap: 0.5rem; margin: 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.93rem;
  color: var(--muted);
  border-bottom: 1px dashed var(--line-soft);
  padding-bottom: 0.5rem;
}

.hours-row strong { color: var(--text); font-weight: 600; }

/* ============================================================
   scroll reveal — below the fold only
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.66s var(--ease), transform 0.66s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .strip-track { animation: none; }
}

/* === site credit (injected by credit_footer.py); do not hand-edit === */
.site-credit {
  margin: 2.25rem 0 0;
  padding-inline: 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  opacity: .65;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 128, 128, .5);
  border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  transition: border-bottom-color .25s ease;
}
.site-credit a:hover,
.site-credit a:focus-visible { border-bottom-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .site-credit a { transition: none; }
}
/* === end site credit === */
