/* ==========================================================================
   Biltmore Mechanical — Ravari AI design concept
   Single source of truth for every brand value lives in :root below.
   Zero dependencies. Zero external requests. System font stacks only.
   ========================================================================== */

:root {
  /* ---- Brand palette (derived from the client's existing logo lockup) ---- */
  --crimson:        #9E1B1E;   /* wordmark red */
  --crimson-bright: #C2262C;   /* CTA / accent on dark */
  --crimson-deep:   #6C1215;   /* financing band base */
  --steel:          #2C6DA3;   /* "Heating & Cooling" subline blue */
  --steel-light:    #7FB1D8;   /* eyebrow / detail on dark */
  --roof-gray:      #8A8F94;   /* roofline motif gray */

  /* ---- Neutrals ---- */
  --ink:            #12151A;   /* near-black section base */
  --ink-2:          #191D24;
  --ink-3:          #232830;
  --paper:          #F6F2EB;   /* warm off-white section base */
  --paper-2:        #FBF9F5;   /* raised card on paper */
  --paper-3:        #ECE5D9;

  /* ---- Text ---- */
  --text:           #1E222A;
  --text-muted:     #5A6169;
  --text-invert:    #F2EEE7;
  --text-invert-muted: #A9B0BA;

  /* ---- Lines ---- */
  --line:           rgba(30, 34, 42, 0.13);
  --line-strong:    rgba(30, 34, 42, 0.24);
  --line-dark:      rgba(255, 255, 255, 0.10);
  --line-dark-strong: rgba(255, 255, 255, 0.20);

  /* ---- Typography ---- */
  --font-display: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', 'Hoefler Text', Georgia, 'Times New Roman', serif;
  --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --tracking-caps: 0.22em;
  --tracking-wide: 0.32em;

  /* ---- Spacing scale ---- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* ---- Radii ---- */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-pill: 999px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 2px rgba(18, 21, 26, 0.06), 0 2px 8px rgba(18, 21, 26, 0.05);
  --shadow-md: 0 2px 6px rgba(18, 21, 26, 0.07), 0 14px 34px rgba(18, 21, 26, 0.09);
  --shadow-lg: 0 4px 12px rgba(18, 21, 26, 0.10), 0 28px 60px rgba(18, 21, 26, 0.16);

  /* ---- Layout ---- */
  --shell: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 160ms;
  --dur: 320ms;
  --dur-slow: 720ms;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

::selection { background: var(--crimson); color: #fff; }

:focus-visible {
  outline: 2px solid var(--steel-light);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--crimson);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  font: 600 0.85rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 0.65em;
  vertical-align: 0.18em;
  background: currentColor;
  opacity: 0.5;
  transform: rotate(45deg);
}

/* ==========================================================================
   Logo lockup (text wordmark — echoes the client's small-caps + subline)
   ========================================================================== */

.lockup {
  display: grid;
  grid-template-columns: auto;
  justify-items: center;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}

.lockup__roof {
  width: 84px;
  height: 18px;
  fill: none;
  stroke: var(--roof-gray);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
  transition: stroke var(--dur) var(--ease);
}
.lockup:hover .lockup__roof { stroke: var(--crimson-bright); }

.lockup__name {
  font-family: var(--font-display);
  font-variant-caps: small-caps;
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: 0.045em;
  color: var(--crimson-bright);
  white-space: nowrap;
}

.lockup__sub {
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--steel-light);
  white-space: nowrap;
}
.lockup__sub::before,
.lockup__sub::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* ==========================================================================
   Header + navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 21, 26, 0.92);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 76px;
  padding-block: var(--sp-3);
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.4vw, 1.1rem);
  flex-wrap: wrap;
}

.site-nav > a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--sp-3);
  color: var(--text-invert-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color var(--dur) var(--ease);
}

.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: 12px;
  height: 1.5px;
  background: var(--crimson-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.site-nav > a:not(.btn):hover { color: var(--text-invert); }
.site-nav > a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: 0 var(--sp-4);
  background: transparent;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--r-sm);
  color: var(--text-invert);
  font: 600 0.72rem/1 var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 3px; }
.nav-toggle__bars i {
  display: block;
  width: 17px;
  height: 1.6px;
  background: currentColor;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 52px;
  padding: 0 var(--sp-6);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm { min-height: 44px; padding: 0 var(--sp-4); font-size: 0.74rem; letter-spacing: 0.08em; }

.btn .ico { width: 16px; height: 16px; fill: currentColor; flex: none; }

.btn--primary {
  background: var(--crimson-bright);
  color: #fff;
  box-shadow: 0 10px 28px rgba(194, 38, 44, 0.32);
}
.btn--primary:hover { background: #D22E34; box-shadow: 0 16px 38px rgba(194, 38, 44, 0.42); }

.btn--ghost {
  background: transparent;
  color: var(--text-invert);
  border-color: var(--line-dark-strong);
}
.btn--ghost:hover { border-color: var(--text-invert); background: rgba(255, 255, 255, 0.05); }

.btn--paper {
  background: var(--paper);
  color: var(--crimson-deep);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.btn--paper:hover { background: #fff; }

.btn--call {
  background: transparent;
  color: var(--text-invert);
  border-color: var(--line-dark-strong);
}
.btn--call:hover { border-color: var(--crimson-bright); color: #fff; background: rgba(194, 38, 44, 0.14); }

/* ==========================================================================
   Section furniture
   ========================================================================== */

.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--paper { background: var(--paper); color: var(--text); }
.section--dark { background: var(--ink); color: var(--text-invert); }

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(44, 109, 163, 0.16), transparent 62%),
    radial-gradient(50% 60% at 5% 100%, rgba(158, 27, 30, 0.16), transparent 60%);
}
.section--dark > .shell { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 var(--sp-4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--steel);
}
.eyebrow--light { color: var(--steel-light); }

.section__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.section__head--split .section__lede { margin-top: 0; max-width: 34rem; }

.section__title {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  color: var(--text);
}
.section__title--light { color: var(--text-invert); }

.section__lede {
  margin-top: var(--sp-5);
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 40rem;
}
.section__head--center .section__lede { margin-inline: auto; }
.section__lede--light { color: var(--text-invert-muted); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-invert);
  overflow: hidden;
  isolation: isolate;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 80% at 78% 8%, rgba(44, 109, 163, 0.20), transparent 60%),
    radial-gradient(65% 75% at 8% 92%, rgba(158, 27, 30, 0.26), transparent 62%),
    linear-gradient(180deg, #171B21 0%, var(--ink) 46%, #0E1116 100%);
}

.hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.028) 0px,
    rgba(255, 255, 255, 0.028) 1px,
    transparent 1px,
    transparent 9px
  );
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

.hero__ridge {
  position: absolute;
  right: -8%;
  bottom: 12%;
  width: min(74%, 940px);
  height: auto;
  fill: none;
  stroke: var(--roof-gray);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.30;
}
.hero__ridge--faint { opacity: 0.5; stroke-dasharray: 2 16; }

.hero__inner {
  padding-top: clamp(4rem, 11vw, 8.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.hero__title {
  font-size: clamp(2.9rem, 8.4vw, 6.1rem);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: #fff;
  max-width: 14ch;
}
.hero__title em {
  font-style: normal;
  color: var(--crimson-bright);
  position: relative;
}

.hero__rule {
  width: 92px;
  height: 3px;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  background: linear-gradient(90deg, var(--crimson-bright), rgba(194, 38, 44, 0));
}

.hero__copy {
  max-width: 44rem;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  color: var(--text-invert-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

/* Hero ticker strip */
.ticker {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  background: rgba(11, 14, 18, 0.55);
}
.ticker li {
  flex: 1 1 auto;
  min-width: 0;
  padding: var(--sp-4) var(--gutter);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
  border-left: 1px solid var(--line-dark);
  text-align: center;
}
.ticker li:first-child { border-left: 0; color: var(--text-invert); }

/* ==========================================================================
   Services
   ========================================================================== */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  counter-reset: svc;
}

.svc {
  position: relative;
  counter-increment: svc;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: clamp(1.75rem, 2.8vw, 2.5rem);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--steel));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.svc:hover::before { transform: scaleX(1); }

/* Decorative index numeral (CSS counter — no content added to the document). */
.svc::after {
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  right: clamp(1.25rem, 2.2vw, 1.9rem);
  top: clamp(1.1rem, 2vw, 1.6rem);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  opacity: 0.45;
  pointer-events: none;
}

.svc--wide { grid-column: span 3; }

.svc__top { display: flex; align-items: center; gap: var(--sp-4); }

.svc:not(.svc--wide) { min-height: 250px; }
.svc:not(.svc--wide) .svc__top {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.svc:not(.svc--wide) .svc__title { text-wrap: balance; }

.svc__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: var(--r-sm);
  background: linear-gradient(150deg, rgba(44, 109, 163, 0.12), rgba(158, 27, 30, 0.08));
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.svc:hover .svc__icon {
  border-color: rgba(158, 27, 30, 0.35);
  background: linear-gradient(150deg, rgba(158, 27, 30, 0.14), rgba(44, 109, 163, 0.10));
}
.svc__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--crimson);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc__title {
  font-size: clamp(1.08rem, 1.55vw, 1.33rem);
  letter-spacing: -0.005em;
}
.svc--wide .svc__title { font-size: clamp(1.25rem, 2.2vw, 1.8rem); }

.svc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0;
  padding: 0;
  list-style: none;
}
.svc__chips li {
  padding: 0.5em 1.15em;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   The Work
   ========================================================================== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.75rem);
}

.work {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  color: var(--text-invert-muted);
}

.work__index {
  position: absolute;
  top: clamp(1.25rem, 2.4vw, 1.9rem);
  right: clamp(1.25rem, 2.4vw, 1.9rem);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: -0.04em;
}

.work__title {
  margin-bottom: var(--sp-5);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  color: var(--text-invert);
}
.work__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: var(--sp-4);
  background: var(--crimson-bright);
}

.work__note {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-light);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.about__mark {
  position: relative;
  margin: 0;
  padding: clamp(1.75rem, 3.2vw, 2.75rem);
  border-radius: var(--r-md);
  background:
    radial-gradient(110% 90% at 25% 0%, rgba(44, 109, 163, 0.22), transparent 60%),
    radial-gradient(90% 90% at 100% 100%, rgba(158, 27, 30, 0.24), transparent 62%),
    linear-gradient(165deg, var(--ink-2), var(--ink));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about__mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--crimson-bright), var(--steel));
}

.about__mark svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about__grid path { stroke: #fff; stroke-width: 0.5; opacity: 0.10; }
.about__roof { stroke: #C9CDD2; stroke-width: 3.2; }
.about__roof--back { stroke: var(--steel-light); stroke-width: 2.4; opacity: 0.55; }
.about__base { stroke: var(--crimson-bright); stroke-width: 3.2; }

.about__mark figcaption {
  display: grid;
  gap: 3px;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: clamp(1.1rem, 2.2vw, 1.6rem);
  border-top: 1px solid var(--line-dark);
}
.about__mark-name {
  font-family: var(--font-display);
  font-variant-caps: small-caps;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #fff;
}
.about__mark-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
}

.about__body p { color: var(--text-muted); max-width: 38rem; }
.about__body .section__title { margin-bottom: var(--sp-5); }

.pullquote {
  margin: var(--sp-6) 0;
  padding-left: clamp(1.25rem, 2.5vw, 1.75rem);
  border-left: 3px solid var(--crimson);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews { column-gap: clamp(1rem, 2vw, 1.75rem); }

.review {
  position: relative;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 clamp(1rem, 2vw, 1.75rem);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.review:hover { border-color: var(--line-dark-strong); transform: translateY(-3px); }

.review__quote {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--crimson-bright);
  margin-bottom: var(--sp-3);
}

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

.review figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-dark);
}

.review__name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-invert);
}

.review__src {
  padding: 0.3em 0.85em;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--r-pill);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-light);
}

/* ==========================================================================
   Financing
   ========================================================================== */

.financing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 140% at 12% 0%, #A31F23 0%, transparent 58%),
    linear-gradient(120deg, var(--crimson-deep), #8A181C 58%, var(--crimson-deep));
  color: #fff;
}
.financing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
}

.financing__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2.75rem, 5.5vw, 4.25rem);
  flex-wrap: wrap;
}

.financing .eyebrow--light { color: rgba(255, 255, 255, 0.7); }

.financing__text { max-width: 52rem; }

.financing__title {
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  line-height: 1.25;
  color: #fff;
}

.financing .btn--paper { flex: none; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.contact__phone .ico {
  width: 0.62em;
  height: 0.62em;
  fill: var(--crimson-bright);
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.contact__phone:hover { color: var(--crimson-bright); }
.contact__phone:hover .ico { transform: rotate(-12deg); }

.contact__email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: var(--sp-3);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--steel-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 177, 216, 0.35);
}
.contact__email:hover { color: #fff; border-bottom-color: #fff; }

.contact__cards { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }

.card {
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.card__title {
  margin-bottom: var(--sp-4);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--steel-light);
}

.card address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-invert);
}

.hours { margin: 0; display: grid; gap: var(--sp-3); }
.hours > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line-dark);
}
.hours > div:last-child { padding-bottom: 0; border-bottom: 0; }
.hours dt { color: var(--text-invert-muted); font-size: 0.95rem; }
.hours dd { margin: 0; color: var(--text-invert); font-weight: 600; font-size: 0.95rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #0C0F13;
  color: var(--text-invert-muted);
  border-top: 1px solid var(--line-dark);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.lockup--footer { justify-self: start; }

.footer-meta { text-align: center; font-size: 0.9rem; }
.footer-meta p { margin: 0 0 var(--sp-1); }
.footer-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-invert);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark-strong);
}
.footer-meta a:hover { color: var(--crimson-bright); border-bottom-color: var(--crimson-bright); }

.footer-legal { text-align: right; font-size: 0.78rem; }
.footer-legal p { margin: 0 0 var(--sp-1); }
.footer-note { color: var(--text-invert-muted); font-size: 0.7rem; letter-spacing: 0.04em; }

/* ==========================================================================
   Scroll reveal — enhancement ONLY.
   Without JS the html element has no .js class, so nothing is ever hidden.
   ========================================================================== */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about__mark { max-width: 320px; }
  .contact { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .lockup--footer { justify-self: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 900px) {
  .section__head--split { grid-template-columns: 1fr; align-items: start; }
  .section__head--split .section__lede { max-width: 40rem; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc--wide { grid-column: span 2; }
  .work-grid { grid-template-columns: 1fr; }
  .ticker li { flex: 1 1 46%; }
  .ticker li:nth-child(odd) { border-left: 0; }
}

@media (max-width: 860px) {
  html.js .nav-toggle { display: inline-flex; }
  html.js .site-nav { display: none; width: 100%; }
  html.js .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-block: var(--sp-3) var(--sp-4);
    border-top: 1px solid var(--line-dark);
  }
  html.js .site-nav.is-open > a:not(.btn) {
    padding: var(--sp-2) 0;
    min-height: 48px;
  }
  html.js .site-nav.is-open > a:not(.btn)::after { left: 0; right: auto; width: 28px; }
  html.js .site-nav.is-open .btn { margin-top: var(--sp-3); }
  .site-nav { width: 100%; justify-content: flex-start; }
  .header-inner { justify-content: space-between; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 80px; }
  .header-inner { min-height: 60px; padding-block: var(--sp-1); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc--wide { grid-column: span 1; }
  .svc--wide .svc__top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-5);
  }
  .ticker li { flex: 1 1 100%; border-left: 0; border-top: 1px solid var(--line-dark); }
  .ticker li:first-child { border-top: 0; }
  .hero__title { max-width: none; }
  .hero__actions .btn { width: 100%; }
  .financing__inner { align-items: flex-start; }
  .financing .btn--paper { width: 100%; }
  .lockup__name { font-size: 1.22rem; }
  .lockup__roof { width: 72px; }
}

@media (min-width: 720px) {
  .reviews { columns: 2; }
}
@media (min-width: 1080px) {
  .reviews { columns: 3; }
}

/* Narrow phones: lockup + toggle must share a single ≤64px header row. */
@media (max-width: 479px) {
  .lockup__name { font-size: 1.06rem; }
  .lockup__roof { width: 58px; stroke-width: 2.2; }
  .lockup { gap: 1px; }
  .nav-toggle { padding: 0 var(--sp-3); }
  .nav-toggle__label { display: none; }
}

/* ==========================================================================
   Hero ridge draw-in — signature motion moment.
   Enhancement ONLY: gated on html.js (added by script.js only when
   IntersectionObserver exists and reduced-motion is off) AND, belt-and-
   braces, on prefers-reduced-motion: no-preference here too. Without JS,
   or with reduced motion, both ridge paths render fully visible exactly
   as before this rule existed.
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  html.js .hero__ridge path:not(.hero__ridge--faint) {
    stroke-dasharray: 2600;
    stroke-dashoffset: 2600;
    animation: hero-ridge-draw 1.6s var(--ease) 0.2s forwards;
  }
}

@keyframes hero-ridge-draw {
  to { stroke-dashoffset: 0; }
}
