/* ============================================================
   STEELHEAD GARAGE DOORS — Brand layer (child theme)
   Loads after Pro's stylesheet. Tokens mirror the design system's
   colors_and_type.css and drive both the PHP homepage template and
   any Cornerstone elements that opt into the .sh-* classes.
   ============================================================ */

@font-face {
  font-family: "Rasputin";
  src: url("../fonts/RasputinBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand colors */
  --sh-black:        #0B0B0B;
  --sh-bone:         #F4F1EC;
  --sh-bone-deep:    #ECE7DD;
  --sh-black-soft:   #1A1A1A;
  --sh-corten:       #8A4B2A;
  --sh-patina:       #5C2E18;
  --sh-charcoal:     #2A2A2A;
  --sh-steel:        #6E7378;
  --sh-silver:       #B8BCC0;
  --sh-wood:         #8B6A3F;

  /* Type */
  --sh-display: "Bricolage Grotesque", system-ui, sans-serif; /* headlines */
  --sh-wordmark: "Rasputin", Georgia, serif;                  /* logo + eyebrows */
  --sh-sans: "Inter", "Helvetica Neue", Arial, sans-serif;    /* body + UI */

  /* Motion */
  --sh-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Primitives ------------------------------------------------ */
.sh-eyebrow {
  font-family: var(--sh-wordmark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-steel);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}
.sh-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--sh-corten);
  flex: none;
}
.sh-eyebrow--light { color: var(--sh-bone); }

.sh-title {
  font-family: var(--sh-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sh-black);
  margin: 0;
  text-wrap: balance;
}
.sh-title--light { color: var(--sh-bone); }

.sh-deck {
  font-family: var(--sh-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--sh-charcoal);
  margin: 0;
  max-width: 540px;
}
.sh-deck--light { color: var(--sh-silver); }

.sh-rule { display: block; width: 48px; height: 2px; background: var(--sh-corten); border: 0; margin: 16px 0; }
.sh-rule--long { width: 96px; height: 3px; }

/* ---- Buttons --------------------------------------------------- */
.sh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sh-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--sh-ease) 180ms, color var(--sh-ease) 180ms, border-color var(--sh-ease) 180ms;
}
.sh-btn--primary { background: var(--sh-black); color: var(--sh-bone); }
.sh-btn--primary:hover { background: var(--sh-corten); color: var(--sh-bone); }
.sh-btn--corten { background: var(--sh-corten); color: var(--sh-bone); }
.sh-btn--corten:hover { background: var(--sh-patina); color: var(--sh-bone); }
.sh-btn--outline { background: transparent; color: var(--sh-black); border-color: var(--sh-black); }
.sh-btn--outline:hover { background: var(--sh-black); color: var(--sh-bone); }
.sh-btn--outline-light { background: transparent; color: var(--sh-bone); border-color: var(--sh-bone); }
.sh-btn--outline-light:hover { background: var(--sh-bone); color: var(--sh-black); }
.sh-btn--glass { background: rgba(0, 0, 0, 0.25); color: #fff; border-color: #fff; }
.sh-btn--glass:hover { background: rgba(0, 0, 0, 0.4); color: #fff; border-color: #fff; }

/* ---- Layout helpers -------------------------------------------- */
.sh-section { padding: 120px 56px; }
.sh-section--dark { background: var(--sh-black); color: var(--sh-bone); }
.sh-section--bone { background: var(--sh-bone); }
.sh-wrap { max-width: 1280px; margin: 0 auto; }
.sh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sh-split--wide-right { grid-template-columns: 1fr 1.6fr; align-items: end; }

@media (max-width: 920px) {
  .sh-section { padding: 72px 28px; }
  .sh-split, .sh-split--wide-right { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Hero ------------------------------------------------------ */
.sh-hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 56px 80px;
  overflow: hidden;
  background: var(--sh-black);
  color: var(--sh-bone);
}
.sh-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sh-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,11,0.2) 0%, rgba(11,11,11,0.65) 100%); pointer-events: none; }
.sh-hero__inner { position: relative; max-width: 820px; }
.sh-hero__title {
  font-family: var(--sh-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  line-height: 0.98;
  color: var(--sh-bone);
  text-wrap: balance;
}
.sh-hero__deck {
  font-family: var(--sh-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--sh-bone);
  max-width: 540px;
  margin: 24px 0 36px;
  opacity: 0.95;
}
.sh-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.sh-hero__caption { position: absolute; right: 32px; bottom: 24px; font-family: var(--sh-sans); font-size: 11px; letter-spacing: 0.08em; color: rgba(244,241,236,0.6); }

/* ---- Proof band ------------------------------------------------ */
.sh-proof { background: var(--sh-bone); border-top: 1px solid var(--sh-silver); border-bottom: 1px solid var(--sh-silver); padding: 96px 56px; }
.sh-proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; max-width: 1280px; margin: 0 auto; }
.sh-stat__num { font-family: var(--sh-display); font-weight: 800; font-size: 56px; line-height: 1; color: var(--sh-black); letter-spacing: 0.01em; }
.sh-stat__num span { font-size: 24px; color: var(--sh-steel); margin-left: 4px; }
.sh-stat__label { font-family: var(--sh-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sh-steel); max-width: 220px; line-height: 1.4; margin-top: 10px; }

/* Stats bar (Cornerstone "Stats Bar" element) */
.sh-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; max-width: 1280px; margin: 0 auto; }
.sh-stats > * { min-width: 0; }
.sh-stat { display: flex; flex-direction: column; align-items: flex-start; }
@media (max-width: 920px) { .sh-stats { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
/* Phones: keep a 2×2 grid (2 wide, 2 high) instead of a single stacked column,
   and shrink the big number so R-11 / 194% fit the narrower half-width cells. */
@media (max-width: 480px) {
  .sh-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .sh-stats .sh-stat__num { font-size: 44px; }
  .sh-stats .sh-stat__num span { font-size: 19px; }
}

/* Feature Split (Cornerstone "Feature Split" element) — full-width image + content panel */
.sh-fsplit { display: grid; grid-template-columns: 1fr 1fr; width: 100%; align-items: stretch; }
.sh-fsplit__media { position: relative; min-height: 520px; background: var(--sh-black); }
.sh-fsplit__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-fsplit__panel { padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; }
.sh-fsplit--dark .sh-fsplit__panel { background: var(--sh-black); color: var(--sh-bone); }
.sh-fsplit--light .sh-fsplit__panel { background: var(--sh-bone); color: var(--sh-black); }
.sh-fsplit--image-right .sh-fsplit__media { order: 2; }
.sh-fsplit__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(30px, 3.2vw, 46px); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.04; margin: 12px 0 18px; color: inherit; }
.sh-fsplit__body { margin: 0 0 28px; }
.sh-fsplit--dark .sh-feature { color: var(--sh-silver); }
.sh-fsplit__cta { margin-top: 28px; }
/* Overlay layout — text sits on top of a full-bleed image (optional). */
.sh-fsplit--overlay { position: relative; display: flex; align-items: center; min-height: 520px; }
.sh-fsplit--overlay .sh-fsplit__media { position: absolute; inset: 0; min-height: 0; z-index: 0; }
.sh-fsplit--overlay .sh-fsplit__media::after { content: ""; position: absolute; inset: 0; }
.sh-fsplit--overlay .sh-fsplit__panel { position: relative; z-index: 2; background: transparent; flex: 0 1 600px; min-height: 0; margin-left: auto; }
.sh-fsplit--overlay.sh-fsplit--image-right .sh-fsplit__panel { margin-left: 0; margin-right: auto; }
.sh-fsplit--overlay.sh-fsplit--dark .sh-fsplit__media::after { background: linear-gradient(90deg, rgba(11,11,11,0.15) 0%, rgba(11,11,11,0.82) 82%); }
.sh-fsplit--overlay.sh-fsplit--dark.sh-fsplit--image-right .sh-fsplit__media::after { background: linear-gradient(90deg, rgba(11,11,11,0.82) 18%, rgba(11,11,11,0.15) 100%); }
.sh-fsplit--overlay.sh-fsplit--light .sh-fsplit__media::after { background: linear-gradient(90deg, rgba(244,241,236,0.12) 0%, rgba(244,241,236,0.86) 82%); }
.sh-fsplit--overlay.sh-fsplit--light.sh-fsplit--image-right .sh-fsplit__media::after { background: linear-gradient(90deg, rgba(244,241,236,0.86) 18%, rgba(244,241,236,0.12) 100%); }
@media (max-width: 920px) {
  .sh-fsplit { grid-template-columns: 1fr; }
  .sh-fsplit__media { min-height: 320px; }
  .sh-fsplit__panel { padding: 56px 28px; }
  .sh-fsplit--image-right .sh-fsplit__media { order: 0; }
  .sh-fsplit--overlay { min-height: 400px; }
  .sh-fsplit--overlay .sh-fsplit__media { min-height: 0; }
  .sh-fsplit--overlay .sh-fsplit__panel { flex-basis: 100%; margin: 0; }
  .sh-fsplit--overlay.sh-fsplit--dark .sh-fsplit__media::after,
  .sh-fsplit--overlay.sh-fsplit--dark.sh-fsplit--image-right .sh-fsplit__media::after { background: linear-gradient(0deg, rgba(11,11,11,0.86) 0%, rgba(11,11,11,0.45) 100%); }
  .sh-fsplit--overlay.sh-fsplit--light .sh-fsplit__media::after,
  .sh-fsplit--overlay.sh-fsplit--light.sh-fsplit--image-right .sh-fsplit__media::after { background: linear-gradient(0deg, rgba(244,241,236,0.9) 0%, rgba(244,241,236,0.5) 100%); }
}

/* Showcase Split (Cornerstone "Showcase Split" element) — contained image + text + CTA */
.sh-showcase { padding: 120px 56px; }
.sh-showcase--dark { background: var(--sh-black); color: var(--sh-bone); }
.sh-showcase--light { background: var(--sh-bone); color: var(--sh-black); }
.sh-showcase__inner { max-width: 1280px; margin: 0 auto; }
.sh-showcase__media img { width: 100%; height: auto; display: block; }
.sh-showcase--image-right .sh-showcase__media { order: 2; }
.sh-showcase__content { display: flex; flex-direction: column; align-items: flex-start; }
.sh-showcase__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(30px, 3.4vw, 48px); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.04; margin: 10px 0 18px; color: inherit; }
.sh-showcase__content .sh-deck { margin: 0 0 28px; }
.sh-showcase__body p { margin: 0 0 1em; }
.sh-showcase__body p:last-child { margin-bottom: 0; }
.sh-showcase__body a { color: var(--sh-corten); text-decoration: underline; text-underline-offset: 2px; }
.sh-showcase__body strong { font-weight: 700; color: inherit; }

/* Locations We Serve — US map */
.sh-servemap { padding: 120px 56px; }
.sh-servemap__wrap { max-width: 1280px; margin: 0 auto; }
.sh-servemap__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.sh-servemap__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4.4vw, 60px); line-height: 0.98; text-transform: uppercase; letter-spacing: 0.01em; margin: 14px 0 0; color: var(--sh-bone); }
.sh-servemap--light .sh-servemap__heading { color: var(--sh-black); }
.sh-servemap__intro { font-size: 16px; line-height: 1.6; margin: 0 0 10px; max-width: 440px; }
.sh-servemap__map { max-width: 1040px; margin: 0 auto; }
.sh-servemap__svg { width: 100%; height: auto; display: block; }
.sh-servemap__legend { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; margin-top: 30px; }
.sh-servemap__key { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sh-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sh-silver); }
.sh-servemap--light .sh-servemap__key { color: var(--sh-steel); }
.sh-servemap__dot { width: 13px; height: 13px; border-radius: 3px; display: inline-block; flex: 0 0 auto; }
.sh-servemap__dot--served { background: var(--sh-corten); }
.sh-servemap__dot--limited { background: rgba(138,75,42,0.38); border: 1px solid var(--sh-corten); }
@media (max-width: 980px) {
  .sh-servemap { padding: 72px 28px; }
  .sh-servemap__head { grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 32px; }
  .sh-servemap__legend { gap: 20px; }
}

/* Service Area Grid — left header + right bordered states grid. */
.sh-sgrid { padding: 120px 56px; }
.sh-sgrid__wrap { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.sh-sgrid__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4.4vw, 56px); line-height: 0.98; text-transform: uppercase; letter-spacing: 0.01em; margin: 14px 0 20px; color: var(--sh-bone); }
.sh-sgrid--light .sh-sgrid__heading { color: var(--sh-black); }
.sh-sgrid__body { font-size: 16px; line-height: 1.6; margin: 0; max-width: 440px; }
.sh-sgrid__grid { display: grid; border-top: 1px solid rgba(244,241,236,0.14); border-left: 1px solid rgba(244,241,236,0.14); }
.sh-sgrid--light .sh-sgrid__grid { border-top-color: rgba(11,11,11,0.14); border-left-color: rgba(11,11,11,0.14); }
.sh-sgrid__cell { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 88px; padding: 22px 24px; border-right: 1px solid rgba(244,241,236,0.14); border-bottom: 1px solid rgba(244,241,236,0.14); }
.sh-sgrid--light .sh-sgrid__cell { border-right-color: rgba(11,11,11,0.14); border-bottom-color: rgba(11,11,11,0.14); }
.sh-sgrid__state { font-family: var(--sh-display); font-weight: 800; font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; color: inherit; }
.sh-sgrid__tag { flex: 0 0 auto; font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sh-corten); }
@media (max-width: 920px) {
  .sh-sgrid { padding: 72px 28px; }
  .sh-sgrid__wrap { grid-template-columns: 1fr; gap: 32px; }
  .sh-sgrid__heading { margin-top: 6px; }
}

/* Value Pillars — "What We Stand On" */
.sh-pillars { padding: 120px 56px; }
.sh-pillars__wrap { max-width: 1280px; margin: 0 auto; }
.sh-pillars__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: end; margin-bottom: 52px; }
.sh-pillars__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4.6vw, 62px); line-height: 0.98; text-transform: uppercase; letter-spacing: 0.01em; margin: 14px 0 0; color: var(--sh-black); }
.sh-pillars--dark .sh-pillars__heading { color: var(--sh-bone); }
.sh-pillars__intro { font-size: 16px; line-height: 1.6; margin: 0 0 10px; max-width: 440px; }
.sh-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sh-pillars__card { border: 1px solid rgba(11,11,11,0.16); padding: 34px 32px 40px; }
.sh-pillars--dark .sh-pillars__card { border-color: rgba(244,241,236,0.16); }
.sh-pillars__num { display: block; font-family: var(--sh-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--sh-corten); margin-bottom: 28px; }
.sh-pillars__title { font-family: var(--sh-display); font-weight: 800; font-size: 19px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--sh-black); margin: 0 0 14px; }
.sh-pillars--dark .sh-pillars__title { color: var(--sh-bone); }
.sh-pillars__body { font-family: var(--sh-sans); font-size: 14px; line-height: 1.62; color: var(--sh-steel); margin: 0; }
.sh-pillars--dark .sh-pillars__body { color: var(--sh-silver); }
@media (max-width: 980px) {
  .sh-pillars { padding: 72px 30px; }
  .sh-pillars__head { grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 40px; }
  .sh-pillars__grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) { .sh-showcase { padding: 72px 28px; } }

/* Gallery (Cornerstone "Gallery" element) — header + image grid */
.sh-gallery-section { padding: 120px 56px; }
.sh-gallery-section .sh-wrap { max-width: 1280px; margin: 0 auto; }
.sh-gallery-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 40px; }
.sh-gallery__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(30px, 3.4vw, 48px); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.04; margin: 10px 0 0; color: inherit; }
.sh-gallery-head .sh-deck { margin: 0; }
.sh-gallery-cta { margin-top: 40px; text-align: center; }
@media (max-width: 920px) { .sh-gallery-section { padding: 72px 28px; } .sh-gallery-head { grid-template-columns: 1fr; gap: 16px; } }

/* Color Finishes (Cornerstone "Color Finishes" element) */
.sh-finishes { padding: 120px 56px; }
.sh-finishes__wrap { max-width: 1280px; margin: 0 auto; }
.sh-finishes__head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 44px; }
.sh-finishes__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(36px, 5vw, 72px); text-transform: uppercase; letter-spacing: 0.04em; line-height: 0.98; margin: 12px 0 0; color: inherit; }
.sh-finishes__head .sh-deck { margin: 0; }
.sh-finishes__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.sh-finish { display: flex; flex-direction: column; }
.sh-finish__chip { display: block; width: 100%; aspect-ratio: 16 / 10; background: #0b0b0b; border: 1px solid rgba(244, 241, 236, 0.14); }
.sh-finish__name { font-family: var(--sh-sans); font-weight: 700; font-size: 14px; color: var(--sh-bone); margin-top: 14px; }
.sh-finish__sub { font-family: var(--sh-sans); font-size: 12px; color: var(--sh-steel); margin-top: 4px; }
.sh-finishes--light .sh-finish__name { color: var(--sh-black); }
.sh-finishes--light .sh-finish__chip { border-color: rgba(11, 11, 11, 0.14); }

/* Specifications (Cornerstone "Specifications" element) */
.sh-specs { padding: 120px 56px; }
.sh-specs__wrap { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.sh-specs__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(32px, 4vw, 58px); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1; margin: 14px 0 18px; color: inherit; }
.sh-specs__intro .sh-deck { margin: 0; max-width: 360px; }
.sh-specs__list { display: flex; flex-direction: column; }
.sh-spec { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; padding: 22px 0; border-top: 1px solid rgba(11, 11, 11, 0.12); }
.sh-spec__label { font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sh-steel); padding-top: 2px; }
.sh-spec__value { font-family: var(--sh-sans); font-size: 14px; line-height: 1.5; color: var(--sh-charcoal); }
.sh-specs--dark .sh-spec { border-top-color: rgba(244, 241, 236, 0.14); }
.sh-specs--dark .sh-spec__value { color: var(--sh-silver); }

/* Featured Gallery (Cornerstone "Featured Gallery" element) — 1 large + 2 stacked */
.sh-fgal { padding: 120px 56px; }
.sh-fgal__wrap { max-width: 1280px; margin: 0 auto; }
.sh-fgal__head { margin-bottom: 36px; }
.sh-fgal__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 46px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; margin: 12px 0 0; color: inherit; max-width: 900px; }
.sh-fgal__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(150px, 16vw, 230px); grid-auto-flow: dense; gap: 16px; }
.sh-fgal__tile { margin: 0; overflow: hidden; background: #0b0b0b; }
.sh-fgal__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-fgal__tile--lg { grid-column: span 2; grid-row: span 2; }
.sh-fgal__tile--sm { grid-column: span 1; grid-row: span 1; }
@media (max-width: 920px) {
  .sh-fgal { padding: 72px 28px; }
  .sh-fgal__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 44vw; }
  .sh-fgal__tile--lg { grid-column: span 2; grid-row: span 1; }
}

/* Door Collection (Cornerstone "Door Collection" element) — clickable image cards */
.sh-collection { padding: 120px 56px; }
.sh-collection__wrap { max-width: 1280px; margin: 0 auto; }
.sh-collection__head { margin-bottom: 36px; }
.sh-collection__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 46px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.05; margin: 12px 0 0; color: inherit; }
.sh-collection__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sh-collection__card { position: relative; display: block; aspect-ratio: 3 / 4.4; overflow: hidden; text-decoration: none; background: #0b0b0b; }
.sh-collection__media { position: absolute; inset: 0; }
.sh-collection__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--sh-ease, ease); }
.sh-collection__card:hover .sh-collection__media img { transform: scale(1.05); }
.sh-collection__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,11,0.88) 0%, rgba(11,11,11,0.25) 42%, transparent 68%); }
.sh-collection__text { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px; }
.sh-collection__eyebrow { display: block; font-family: var(--sh-sans); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sh-silver); margin-bottom: 6px; }
.sh-collection__title { display: block; font-family: var(--sh-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sh-bone); line-height: 1.25; }
@media (max-width: 920px) {
  .sh-collection { padding: 72px 28px; }
  .sh-collection__grid { grid-template-columns: 1fr 1fr; }
}

/* CTA Band (Cornerstone "CTA Band" element) — centered heading + body + button */
.sh-cta { padding: 120px 56px; text-align: center; background: var(--sh-corten); color: var(--sh-bone); }
.sh-cta--dark { background: var(--sh-black); color: var(--sh-bone); }
.sh-cta--bone { background: var(--sh-bone); color: var(--sh-black); }
.sh-cta__inner { max-width: 760px; margin: 0 auto; }
.sh-cta__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4.6vw, 60px); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1; margin: 0 0 20px; color: inherit; }
.sh-cta__body { font-family: var(--sh-sans); font-size: 17px; line-height: 1.6; margin: 0 auto 36px; max-width: 600px; opacity: 0.92; }
@media (max-width: 920px) { .sh-cta { padding: 80px 28px; } }

/* Value Props (Cornerstone "Value Props" element) — header + 3 label/title columns */
.sh-valprops { padding: 120px 56px; }
.sh-valprops__wrap { max-width: 1280px; margin: 0 auto; }
.sh-valprops__head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.sh-valprops__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4.2vw, 58px); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.02; margin: 12px 0 0; color: inherit; }
.sh-valprops__head .sh-deck { margin: 0; }
.sh-valprops__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(11,11,11,0.14); margin-top: 48px; }
.sh-valprop { padding: 34px 0 6px 44px; border-left: 1px solid rgba(11,11,11,0.14); }
.sh-valprop:first-child { padding-left: 0; border-left: 0; }
.sh-valprop__label { display: block; font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sh-steel); margin-bottom: 12px; }
.sh-valprop__title { display: block; font-family: var(--sh-display); font-weight: 800; font-size: clamp(22px, 2.2vw, 32px); text-transform: uppercase; letter-spacing: 0.02em; color: var(--sh-black); line-height: 1; }
.sh-valprops--dark .sh-valprops__grid { border-top-color: rgba(244,241,236,0.16); }
.sh-valprops--dark .sh-valprop { border-left-color: rgba(244,241,236,0.16); }
.sh-valprops--dark .sh-valprop__title { color: var(--sh-bone); }
@media (max-width: 920px) {
  .sh-valprops { padding: 72px 28px; }
  .sh-valprops__head { grid-template-columns: 1fr; gap: 20px; }
  .sh-valprops__grid { grid-template-columns: 1fr; }
  .sh-valprop { padding: 28px 0; border-left: 0; border-top: 1px solid rgba(11,11,11,0.12); }
  .sh-valprop:first-child { border-top: 0; }
}

/* Collection (Cornerstone "Collection" element) — header + featured card + card grid */
.sh-coll { padding: 120px 56px; }
.sh-coll__wrap { max-width: 1280px; margin: 0 auto; }
.sh-coll__head { margin-bottom: 32px; }
.sh-coll__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4.2vw, 58px); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.02; margin: 12px 0 0; color: inherit; }
.sh-coll__feature { display: grid; grid-template-columns: 1.7fr 1fr; border: 1px solid rgba(11,11,11,0.12); margin-bottom: 16px; }
.sh-coll__feature-media { position: relative; background: #0b0b0b; min-height: 380px; }
.sh-coll__feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sh-coll__feature-body { padding: 48px 44px; display: flex; flex-direction: column; }
.sh-coll__feature-heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(24px, 2.4vw, 32px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.06; margin: 14px 0 14px; color: inherit; }
.sh-coll__feature-body .sh-deck { font-size: 14px; line-height: 1.6; margin: 0 0 26px; }
.sh-coll__feature-body .sh-btn { align-self: flex-start; margin-top: auto; }
.sh-coll__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sh-coll__card { display: flex; flex-direction: column; }
.sh-coll__card-media { display: block; aspect-ratio: 4 / 3.3; overflow: hidden; background: #0b0b0b; margin-bottom: 16px; }
.sh-coll__card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--sh-ease, ease); }
.sh-coll__card:hover .sh-coll__card-media img { transform: scale(1.05); }
.sh-coll__card-label { display: block; font-family: var(--sh-sans); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sh-steel); margin-bottom: 8px; }
.sh-coll__card-title { font-family: var(--sh-display); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.2; margin: 0 0 10px; color: var(--sh-black); }
.sh-coll__card-body { font-family: var(--sh-sans); font-size: 12.5px; line-height: 1.55; color: var(--sh-charcoal); margin: 0 0 14px; }
.sh-coll__card-link { display: inline-block; margin-top: auto; font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sh-black); text-decoration: none; }
.sh-coll__card-link:hover { color: var(--sh-corten); }
.sh-coll--dark .sh-coll__feature { border-color: rgba(244,241,236,0.14); }
.sh-coll--dark .sh-coll__card-title { color: var(--sh-bone); }
.sh-coll--dark .sh-coll__card-body { color: var(--sh-silver); }
.sh-coll--dark .sh-coll__card-link { color: var(--sh-bone); }
@media (max-width: 920px) {
  .sh-coll { padding: 72px 28px; }
  .sh-coll__feature { grid-template-columns: 1fr; }
  .sh-coll__grid { grid-template-columns: 1fr 1fr; }
}

/* Materials Index (Cornerstone "Materials Index" element) — header + entry rows */
.sh-matx { padding: 120px 56px; }
.sh-matx__wrap { max-width: 1280px; margin: 0 auto; }
.sh-matx__head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 24px; }
.sh-matx__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(40px, 5vw, 82px); text-transform: uppercase; letter-spacing: 0.01em; line-height: 0.96; margin: 12px 0 0; color: inherit; }
.sh-matx__head .sh-deck { margin: 0; }
.sh-matx__entry { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; padding: 44px 0; border-top: 1px solid rgba(244,241,236,0.14); align-items: start; }
.sh-matx__entry-title { font-family: var(--sh-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 38px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.02; margin: 0 0 12px; color: var(--sh-bone); }
.sh-matx__entry-label { display: block; font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sh-steel); }
.sh-matx__entry-body p { font-family: var(--sh-sans); font-size: 14px; line-height: 1.65; color: var(--sh-silver); margin: 0 0 16px; }
.sh-matx__entry-body p:last-child { margin-bottom: 0; }
.sh-matx--light .sh-matx__entry { border-top-color: rgba(11,11,11,0.14); }
.sh-matx--light .sh-matx__entry-title { color: var(--sh-black); }
.sh-matx--light .sh-matx__entry-body p { color: var(--sh-charcoal); }
@media (max-width: 920px) {
  .sh-matx { padding: 72px 28px; }
  .sh-matx__head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .sh-matx__entry { grid-template-columns: 1fr; gap: 16px; }
}

/* Request a Quote form */
.sh-quote { padding: 100px 56px; }
.sh-quote__wrap { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; }
.sh-quote__crumb { font-family: var(--sh-sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sh-steel); margin: 0 0 24px; }
.sh-quote__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4vw, 56px); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin: 12px 0 18px; color: var(--sh-bone); }
.sh-quote__intro { font-size: 15px; margin: 0 0 40px; max-width: 380px; }
.sh-quote__contact > div { padding: 18px 0; border-top: 1px solid rgba(244,241,236,0.14); }
.sh-quote__clabel { display: block; font-family: var(--sh-sans); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sh-steel); margin-bottom: 8px; }
.sh-quote__contact a, .sh-quote__cval { font-family: var(--sh-sans); font-size: 15px; color: var(--sh-bone); text-decoration: none; display: block; }
.sh-quote__serving { display: block; font-family: var(--sh-sans); font-size: 11px; color: var(--sh-steel); margin-top: 6px; }
.sh-quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sh-field { display: block; margin-bottom: 22px; }
.sh-field > span { display: block; font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sh-steel); margin-bottom: 8px; }
.sh-field input, .sh-field select, .sh-field textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(244,241,236,0.22); padding: 10px 0; color: var(--sh-bone); font-family: var(--sh-sans); font-size: 14px; border-radius: 0; }
.sh-field input::placeholder, .sh-field textarea::placeholder { color: var(--sh-steel); }
.sh-field select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.sh-field option { color: #111; }
.sh-field input:focus, .sh-field select:focus, .sh-field textarea:focus { outline: none; border-bottom-color: var(--sh-corten); }
.sh-quote__doors { display: flex; gap: 8px; }
.sh-quote__door input { position: absolute; opacity: 0; width: 0; height: 0; }
.sh-quote__door span { display: inline-flex; align-items: center; justify-content: center; min-width: 52px; padding: 12px 16px; border: 1px solid rgba(244,241,236,0.22); color: var(--sh-silver); font-family: var(--sh-sans); font-size: 13px; cursor: pointer; transition: background 160ms, color 160ms, border-color 160ms; }
.sh-quote__door input:checked + span { background: var(--sh-corten); border-color: var(--sh-corten); color: var(--sh-bone); }
.sh-quote__door input:focus-visible + span { border-color: var(--sh-corten); }
.sh-quote__drop { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 40px 20px; border: 1px dashed rgba(244,241,236,0.28); text-align: center; cursor: pointer; }
.sh-quote__drop.is-drag { border-color: var(--sh-corten); background: rgba(138,75,42,0.1); }
.sh-quote__drop-text { font-family: var(--sh-sans); font-size: 14px; color: var(--sh-silver); }
.sh-quote__drop-text strong { color: var(--sh-corten); font-weight: 600; }
.sh-quote__drop-hint { font-family: var(--sh-sans); font-size: 11px; color: var(--sh-steel); max-width: 320px; }
.sh-quote__submit { display: flex; align-items: center; gap: 22px; margin-top: 8px; flex-wrap: wrap; }
.sh-quote__alt { font-family: var(--sh-sans); font-size: 12px; color: var(--sh-steel); }
.sh-quote__alt a { color: var(--sh-corten); text-decoration: none; }
.sh-quote__notice { padding: 14px 18px; margin-bottom: 24px; font-family: var(--sh-sans); font-size: 14px; }
.sh-quote__notice--ok { background: rgba(110,115,120,0.14); border-left: 3px solid var(--sh-corten); color: var(--sh-bone); }
.sh-quote__notice--err { background: rgba(179,45,46,0.14); border-left: 3px solid #b32d2e; color: var(--sh-bone); }
@media (max-width: 920px) {
  .sh-quote { padding: 64px 28px; }
  .sh-quote__wrap { grid-template-columns: 1fr; gap: 48px; }
  .sh-quote__row { grid-template-columns: 1fr; gap: 0; }
}

/* Virtual Door Builder (Cornerstone "Virtual Door Builder" element) */
.sh-vdb { padding: 100px 56px; background: var(--sh-black); color: var(--sh-bone); }
.sh-vdb__wrap { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: center; }
.sh-vdb__eyebrow { display: block; font-family: var(--sh-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sh-steel); margin-bottom: 18px; }
.sh-vdb__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.06; letter-spacing: 0.01em; margin: 0 0 20px; color: var(--sh-bone); }
/* Visual CTA variant: eyebrow + heading match the brand style (Corten-dash
   wordmark eyebrow, heavy uppercase Bricolage heading) as in Color Finishes. */
.sh-vdb--cta .sh-vdb__eyebrow { font-family: var(--sh-wordmark); font-size: 12px; color: var(--sh-bone); display: inline-flex; align-items: center; gap: 14px; }
.sh-vdb--cta .sh-vdb__eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--sh-corten); flex: none; }
.sh-vdb--cta .sh-vdb__heading { text-transform: uppercase; letter-spacing: 0.04em; }
.sh-vdb__body { font-family: var(--sh-sans); font-size: 15px; line-height: 1.65; color: var(--sh-silver); margin: 0 0 32px; max-width: 460px; }
.sh-vdb__cta { display: inline-flex; align-items: center; background: var(--sh-bone); color: var(--sh-black); font-family: var(--sh-sans); font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding: 16px 28px; text-decoration: none; transition: background 180ms var(--sh-ease, ease), color 180ms var(--sh-ease, ease); }
.sh-vdb__cta:hover { background: var(--sh-corten); color: var(--sh-bone); }
.sh-vdb__preview { position: relative; }
.sh-vdb__door { transform-origin: center center; box-shadow: -30px 30px 70px rgba(0,0,0,0.5); animation: sh-vdb-spin 7s ease-in-out infinite alternate; will-change: transform; }
.sh-vdb__door img { width: 100%; display: block; }
@keyframes sh-vdb-spin { from { transform: perspective(1700px) rotateY(-24deg); } to { transform: perspective(1700px) rotateY(16deg); } }
@media (prefers-reduced-motion: reduce) { .sh-vdb__door { animation: none; transform: perspective(1700px) rotateY(-11deg); } }
/* 3D model variant (Three.js / model-viewer) — the door auto-rotates itself */
.sh-vdb__door--model { animation: none; transform: none; box-shadow: none; }
.sh-vdb__model { width: 100%; height: clamp(360px, 38vw, 560px); background: transparent; --poster-color: transparent; }
.sh-vdb__toolbar { position: absolute; top: 8%; left: 6%; display: flex; flex-direction: column; gap: 2px; background: rgba(11,11,11,0.82); border: 1px solid rgba(244,241,236,0.1); padding: 6px; backdrop-filter: blur(4px); }
.sh-vdb__tool { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 12px; color: var(--sh-silver); cursor: pointer; background: none; border: 0; font: inherit; transition: color 160ms var(--sh-ease, ease), background 160ms var(--sh-ease, ease); }
.sh-vdb__tool:hover { color: var(--sh-bone); }
.sh-vdb__tool svg { width: 20px; height: 20px; }
.sh-vdb__tool-label { font-family: var(--sh-sans); font-size: 7px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.sh-vdb__tool.is-active { background: rgba(244,241,236,0.12); color: var(--sh-bone); }
.sh-vdb__swatches { position: absolute; right: -2%; bottom: 4%; background: rgba(11,11,11,0.9); border: 1px solid rgba(244,241,236,0.1); padding: 14px 16px 16px; backdrop-filter: blur(4px); }
.sh-vdb__swatch-title { font-family: var(--sh-sans); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sh-silver); margin-bottom: 10px; }
.sh-vdb__swatch-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.sh-vdb__swatch { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(244,241,236,0.22); padding: 0; cursor: pointer; background-size: cover; background-position: center; -webkit-appearance: none; appearance: none; outline: 2px solid transparent; outline-offset: 2px; transition: outline-color 150ms var(--sh-ease, ease); }
.sh-vdb__swatch.is-active { outline-color: var(--sh-corten); }
.sh-vdb__model canvas { display: block; }
@media (max-width: 920px) {
  .sh-vdb { padding: 64px 28px; }
  .sh-vdb__wrap { grid-template-columns: 1fr; gap: 40px; }
  .sh-vdb__door { transform: none; box-shadow: 0 20px 50px rgba(0,0,0,0.5); animation: none; }
  .sh-vdb__toolbar { left: 2%; }
  .sh-vdb__swatch-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 560px) { .sh-vdb__toolbar { display: none; } .sh-vdb__swatches { right: 2%; } }
@media (max-width: 920px) {
  .sh-specs { padding: 72px 28px; }
  .sh-specs__wrap { grid-template-columns: 1fr; gap: 40px; }
  .sh-spec { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 920px) {
  .sh-finishes { padding: 72px 28px; }
  .sh-finishes__head { grid-template-columns: 1fr; gap: 16px; }
  .sh-finishes__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
}
@media (max-width: 920px) { .sh-proof__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ---- Anatomy spec split --------------------------------------- */
.sh-anatomy { display: grid; grid-template-columns: 1fr 1fr; }
.sh-anatomy__media { position: relative; min-height: 520px; background: #0b0b0b; overflow: hidden; }
.sh-anatomy__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sh-anatomy__body { background: var(--sh-bone); padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; }
.sh-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-top: 8px; }
.sh-feature { display: flex; align-items: flex-start; gap: 10px; font-family: var(--sh-sans); font-size: 14px; line-height: 1.4; color: var(--sh-charcoal); }
.sh-feature svg { flex: none; margin-top: 2px; }
@media (max-width: 920px) { .sh-anatomy { grid-template-columns: 1fr; } .sh-anatomy__media { min-height: 320px; } .sh-anatomy__body { padding: 56px 28px; } }

/* ---- Gallery --------------------------------------------------- */
.sh-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sh-gallery figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: #0b0b0b; }
.sh-gallery figure.is-hidden { display: none; }
.sh-gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.sh-gallery-filter { font-family: var(--sh-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sh-steel); background: transparent; border: 1px solid rgba(11,11,11,0.18); padding: 9px 16px; cursor: pointer; transition: background 160ms, color 160ms, border-color 160ms; }
.sh-gallery-filter:hover { border-color: var(--sh-corten); color: var(--sh-black); }
.sh-gallery-filter.is-active { background: var(--sh-corten); border-color: var(--sh-corten); color: var(--sh-bone); }
.sh-section--dark .sh-gallery-filter { color: var(--sh-silver); border-color: rgba(244,241,236,0.22); }
.sh-section--dark .sh-gallery-filter:hover { color: var(--sh-bone); border-color: var(--sh-corten); }
.sh-section--dark .sh-gallery-filter.is-active { color: var(--sh-bone); }
.sh-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 920px) { .sh-gallery { grid-template-columns: 1fr 1fr; } }

/* ---- Editorial media ------------------------------------------ */
.sh-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #0b0b0b; }
.sh-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-media__caption { position: absolute; left: 16px; bottom: 12px; color: rgba(244,241,236,0.85); font-family: var(--sh-sans); font-size: 11px; letter-spacing: 0.06em; text-shadow: 0 1px 3px rgba(0,0,0,0.6); }

/* ---- Footer ---------------------------------------------------- */
/* Hide Pro's empty default footer (x-colophon); the Steelhead footer is global. */
.x-colophon { display: none; }

.sh-footer { background: var(--sh-black); color: var(--sh-bone); padding: 72px 56px 32px; }
.sh-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 64px; max-width: 1280px; margin: 0 auto; }
.sh-footer h4 { font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sh-silver); margin: 0 0 18px; }
.sh-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sh-footer a, .sh-footer li { font-family: var(--sh-sans); font-size: 13px; color: var(--sh-bone); text-decoration: none; }
.sh-footer__bar { max-width: 1280px; margin: 56px auto 0; padding-top: 22px; border-top: 1px solid rgba(244,241,236,0.12); display: flex; justify-content: space-between; font-family: var(--sh-sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sh-steel); }
.sh-footer__social { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.sh-footer__social a { color: var(--sh-silver); display: inline-flex; align-items: center; transition: color 0.15s ease; }
.sh-footer__social a:hover { color: var(--sh-bone); }
.sh-footer__social svg { width: 18px; height: 18px; display: block; fill: currentColor; }
@media (max-width: 920px) {
  .sh-footer { padding: 56px 32px 28px; }
  .sh-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  /* Let grid cells shrink and long content (e.g. the email) wrap instead of
     overflowing the viewport. */
  .sh-footer__grid > * { min-width: 0; }
  .sh-footer a, .sh-footer li, .sh-footer address { overflow-wrap: break-word; }
  /* Give the brand its own full-width row so the STEELHEAD wordmark can't
     overlap the Doors column heading. */
  .sh-footer__grid > :first-child { grid-column: 1 / -1; }
  .sh-footer__bar { flex-direction: column; gap: 12px; }
}
/* Single column on phones. */
@media (max-width: 560px) { .sh-footer__grid { grid-template-columns: 1fr; } }

/* ---- Lockup (horizontal mark + wordmark) ----------------------- */
.sh-lockup { display: inline-flex; align-items: center; gap: 12.5px; }
.sh-lockup__mark { height: 57.5px; width: auto; }
.sh-lockup__text { display: flex; flex-direction: column; gap: 5px; }
.sh-lockup__word { font-family: var(--sh-wordmark); font-weight: 700; font-size: 23.75px; letter-spacing: 0.16em; line-height: 1; color: var(--sh-black); }
.sh-lockup__tag { font-family: var(--sh-sans); font-weight: 500; font-size: 10.625px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--sh-steel); white-space: nowrap; }
.sh-lockup--light .sh-lockup__word { color: var(--sh-bone); }
.sh-lockup--light .sh-lockup__tag { color: var(--sh-silver); }

/* Virtual Door Builder embed */
.sh-builder-embed { width: 100%; height: calc(100dvh - 72px); min-height: 640px; background: var(--sh-black); }
.sh-builder-embed__frame { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 980px) { .sh-builder-embed { height: calc(100dvh - 60px); min-height: 560px; } }
/* Builder page hides the site header (see steelhead_render_site_header), so the
   embed fills the whole viewport with no header offset. */
.page-id-382 .sh-builder-embed,
body.page-template-template-blank-8-php .sh-builder-embed { height: 100dvh; min-height: 100dvh; }

/* Window Layouts */
.sh-winl { padding: 100px 56px; }
.sh-winl__wrap { max-width: 1280px; margin: 0 auto; }
.sh-winl__head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.sh-winl__heading { font-family: var(--sh-display); font-weight: 800; font-size: clamp(34px, 4.4vw, 60px); line-height: 0.96; text-transform: uppercase; letter-spacing: 0.01em; margin: 14px 0 0; color: var(--sh-black); }
.sh-winl--dark .sh-winl__heading { color: var(--sh-bone); }
.sh-winl__intro { font-size: 16px; line-height: 1.6; margin: 0 0 6px; max-width: 460px; }
.sh-winl__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 30px; }
.sh-winl__media { border: 1px solid rgba(11,11,11,0.12); background: #fff; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 22px 26px; margin-bottom: 20px; }
.sh-winl__card--dark .sh-winl__media { background: var(--sh-black); border-color: rgba(244,241,236,0.14); }
.sh-winl--dark .sh-winl__media { background: var(--sh-bone); }
.sh-winl--dark .sh-winl__card--dark .sh-winl__media { background: var(--sh-black); }
.sh-winl__svg { width: 100%; height: 100%; display: block; }
.sh-winl__media--photo { padding: 0; }
.sh-winl__media--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-winl__label { display: block; font-family: var(--sh-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sh-corten); margin-bottom: 9px; }
.sh-winl__name { font-family: var(--sh-display); font-weight: 800; font-size: 18px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--sh-black); margin: 0 0 10px; }
.sh-winl--dark .sh-winl__name { color: var(--sh-bone); }
.sh-winl__body { font-family: var(--sh-sans); font-size: 13.5px; line-height: 1.62; color: var(--sh-steel); margin: 0; max-width: 330px; }
.sh-winl--dark .sh-winl__body { color: var(--sh-silver); }
@media (max-width: 980px) {
  .sh-winl { padding: 72px 30px; }
  .sh-winl__head { grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 40px; }
  .sh-winl__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sh-winl { padding: 56px 24px; }
  .sh-winl__grid { grid-template-columns: 1fr; }
}

/* Thank You page */
.sh-thankyou { min-height: calc(100dvh - 82px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.sh-thankyou__inner { max-width: 620px; margin: 0 auto; }
.sh-thankyou__badge { display: inline-flex; align-items: center; justify-content: center; width: 74px; height: 74px; border-radius: 50%; background: rgba(138, 75, 42, 0.14); border: 1px solid var(--sh-corten); color: var(--sh-corten); margin-bottom: 30px; }
.sh-thankyou__badge svg { width: 34px; height: 34px; }
.sh-thankyou__title { font-family: var(--sh-display); font-weight: 600; font-size: clamp(52px, 9vw, 92px); line-height: 0.95; letter-spacing: -0.02em; color: var(--sh-bone); margin: 16px 0 22px; }
.sh-thankyou__deck { font-size: 17px; line-height: 1.6; max-width: 468px; margin: 0 auto 38px; }
.sh-thankyou__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sh-thankyou__call { margin-top: 34px; font-family: var(--sh-sans); font-size: 13px; letter-spacing: 0.04em; color: var(--sh-steel); }
.sh-thankyou__call a { color: var(--sh-bone); text-decoration: none; border-bottom: 1px solid var(--sh-corten); padding-bottom: 1px; }
.sh-thankyou__call a:hover { color: var(--sh-corten); }
@media (max-width: 600px) { .sh-thankyou { min-height: calc(100dvh - 64px); padding: 56px 20px; } }

/* Honeypot: off-screen bot trap on quote forms — never shown to real users. */
.sh-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
