/* ============================================================
   J & S Welding and Construction — Premium Design System
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand — black & silver, industrial premium */
  --ink:        #0a0b0d;   /* true black base */
  --ink-2:      #101216;   /* raised dark surface */
  --ink-3:      #181b20;   /* card on dark */
  --steel:      #2a2e35;   /* borders on dark */
  --steel-soft: #3a404a;

  --amber:      #c8ced7;   /* silver accent — reads on dark */
  --amber-deep: #5d6671;   /* graphite accent — reads on light */
  --ember:      #8b95a1;   /* cool steel — req / minor accents */
  --silver-grad: linear-gradient(178deg, #eceef2 0%, #c6ccd4 55%, #aab1bb 100%);

  --paper:      #d4dae1;   /* brushed-silver page (matches hero) */
  --paper-2:    #c6cdd6;   /* deeper silver alt section */
  --white:      #ffffff;

  --ink-text:   #14171c;   /* body text on light */
  --ink-soft:   #49515b;   /* secondary text on light */
  --ink-mute:   #79828d;   /* muted */
  --on-dark:    #e6e9ee;   /* text on dark */
  --on-dark-soft:#99a2ad;  /* secondary on dark */

  --line:       #b9c1cb;   /* hairline on light (reads on silver) */

  /* Type */
  --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / shape */
  --radius:   10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-sm: 0 2px 10px rgba(10,11,13,.08);
  --shadow:    0 16px 50px rgba(10,11,13,.16);
  --shadow-lg: 0 30px 80px rgba(10,11,13,.26);
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink-text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Type scale ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; }
.h-eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.h-eyebrow.on-dark { color: var(--amber); }
.h-eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.display-1 { font-size: clamp(2.7rem, 6.2vw, 5.4rem); }
.display-2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
.display-3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px,6vw,90px) 0; }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--ink2 { background: var(--ink-2); color: var(--on-dark); }
.section--paper2 { background: var(--paper-2); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-680 { max-width: 680px; }
.maxw-760 { max-width: 760px; }

.section-head { margin-bottom: clamp(36px,5vw,64px); }
.section-head .lead { margin-top: 18px; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--silver-grad);
  --fg: var(--ink-text);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: .98rem;
  letter-spacing: .01em;
  padding: 16px 28px;
  background: var(--bg); color: var(--fg);
  border: 1px solid rgba(20,23,28,.10);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow: 0 10px 26px rgba(10,11,13,.22);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(10,11,13,.32); }
.btn:hover svg { transform: translateX(4px); }
.btn--ghost {
  --bg: transparent; --fg: var(--on-dark);
  border: 1.5px solid var(--steel-soft);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: var(--amber); box-shadow: none; transform: translateY(-3px); }
.btn--dark { --bg: var(--ink); --fg: var(--white); box-shadow: var(--shadow-sm); }
.btn--dark:hover { box-shadow: var(--shadow); }
.btn--outline-ink {
  --bg: transparent; --fg: var(--ink-text);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn--outline-ink:hover { border-color: var(--ink); background: var(--ink); color: var(--white); box-shadow: none; }
.btn--lg { padding: 19px 34px; font-size: 1.05rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700;
  color: var(--amber-deep);
}
.text-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 14px 40px rgba(0,0,0,.32);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--white); flex: none; }
.brand-mark { width: auto; height: 58px; flex: none; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: .01em; white-space: nowrap; }
.brand-name b { color: var(--amber); }
.brand-sub { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: 4px; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--on-dark); font-size: .94rem; font-weight: 500;
  padding: 10px 16px; border-radius: 8px;
  transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--amber); }
.nav-cta { display: flex; align-items: center; gap: 26px; flex: none; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--on-dark); font-weight: 600; font-size: .94rem; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; color: var(--amber); }
.nav-phone:hover { color: var(--white); }
.nav-login { display: inline-flex; align-items: center; gap: 7px; color: var(--on-dark); font-weight: 600; font-size: .94rem; white-space: nowrap; transition: .2s; }
.nav-login svg { width: 15px; height: 15px; color: var(--amber); }
.nav-login:hover { color: var(--white); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1.5px solid var(--steel-soft); position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--white); transform: translate(-50%,-50%); transition: .3s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%,-7px); }
.nav-toggle span::after  { transform: translate(-50%,7px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%,0) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translate(-50%,0) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: radial-gradient(120% 90% at 80% 0%, #1d2733 0%, var(--ink) 55%);
  color: var(--on-dark); overflow: hidden; padding-top: 120px; padding-bottom: clamp(64px, 9vw, 96px);
}
.hero::after { /* ember glow */
  content: ""; position: absolute; right: -10%; top: -20%; width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(150,166,188,.16), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 .spark { color: var(--amber); }
.hero .lead { color: var(--on-dark-soft); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-trust {
  position: relative; z-index: 2; margin-top: clamp(48px,7vw,84px);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  border-top: 1px solid var(--steel); padding-top: 34px; max-width: 860px;
}
.trust-stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem,3vw,2.5rem); color: var(--white); }
.trust-stat .n span { color: var(--amber); }
.trust-stat .l { font-size: .82rem; color: var(--on-dark-soft); margin-top: 4px; letter-spacing: .02em; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: var(--on-dark-soft); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll i { width: 1px; height: 40px; background: linear-gradient(var(--amber), transparent); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0%{transform:scaleY(.2);transform-origin:top;opacity:.4} 50%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(.2);transform-origin:bottom;opacity:.4} }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; background: radial-gradient(120% 120% at 85% -10%, #1d2733, var(--ink) 60%);
  color: var(--on-dark); padding: 180px 0 80px; overflow: hidden;
}
.page-hero .inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { margin: 20px 0 18px; }
.page-hero .lead { color: var(--on-dark-soft); }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: .85rem; color: var(--on-dark-soft); }
.crumbs a:hover { color: var(--amber); }
.crumbs span { opacity: .5; }

/* ============================================================
   Stakes strip
   ============================================================ */
.stakes { background: var(--ink-2); color: var(--on-dark); }
.stakes-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px,5vw,72px); align-items: center; }
.stakes-list { display: grid; gap: 18px; margin-top: 26px; }
.stakes-item { display: flex; gap: 16px; align-items: flex-start; }
.stakes-item .x { flex: none; width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,.08); color: var(--amber); display: grid; place-items: center; }
.stakes-item .x svg { width: 16px; height: 16px; }
.stakes-item p { color: var(--on-dark-soft); }
.stakes-item b { color: var(--white); font-weight: 600; }

/* ============================================================
   Services / specialty cards
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.svc-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px 34px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc-card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--ink); transition: width .4s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-icon { width: 58px; height: 58px; border-radius: 14px; background: var(--ink); color: var(--amber); display: grid; place-items: center; margin-bottom: 22px; }
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.svc-card p { color: var(--ink-soft); margin-bottom: 20px; }
.svc-num { position: absolute; top: 28px; right: 30px; font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--line); }

/* feature list */
.feat-list { display: grid; gap: 12px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.feat-list svg { flex: none; width: 20px; height: 20px; color: var(--amber-deep); margin-top: 3px; }
.feat-list.on-dark li { color: var(--on-dark-soft); }
.feat-list.on-dark b { color: var(--white); }

/* ============================================================
   Plan steps (StoryBrand)
   ============================================================ */
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
.plan-step {
  position: relative; padding: 36px 30px 34px; border-radius: var(--radius-lg);
  background: var(--ink-3); border: 1px solid var(--steel);
}
.plan-step .step-n {
  width: 50px; height: 50px; border-radius: 50%; background: var(--amber); color: var(--ink);
  font-family: var(--display); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 20px;
}
.plan-step h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.plan-step p { color: var(--on-dark-soft); }
.plan-connector { display: none; }

/* ============================================================
   Guide / about split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.media-card {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  background: linear-gradient(135deg, #232f3c, #131920);
  min-height: 440px; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; color: var(--on-dark-soft);
  border: 1px solid var(--steel);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.media-card .ph { position: relative; text-align: center; padding: 30px; }
.media-card .ph svg { width: 64px; height: 64px; margin: 0 auto 14px; color: var(--steel-soft); }
.media-card .ph .t { font-family: var(--display); font-weight: 700; color: var(--on-dark); }
.media-card .ph .s { font-size: .82rem; }
.badge-float {
  position: absolute; z-index: 3; background: var(--white); color: var(--ink-text);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.badge-float.br { right: -18px; bottom: 30px; }
.badge-float .bf-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--ink); display: grid; place-items: center; color: var(--amber); }
.badge-float .bf-icon svg { width: 22px; height: 22px; }
.badge-float .n { font-family: var(--display); font-weight: 800; font-size: 1.4rem; line-height: 1; }
.badge-float .l { font-size: .78rem; color: var(--ink-mute); }

.cred-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; }
.cred { display: flex; gap: 12px; align-items: center; }
.cred .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--paper-2); display: grid; place-items: center; color: var(--amber-deep); flex: none; }
.cred .ic svg { width: 22px; height: 22px; }
.cred .n { font-family: var(--display); font-weight: 800; font-size: 1.05rem; }
.cred .l { font-size: .8rem; color: var(--ink-mute); }

/* ============================================================
   Container Canopies — size cards w/ SVG
   ============================================================ */
.canopy-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.canopy-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s;
}
.canopy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.canopy-visual { background: linear-gradient(160deg,#e0e4ea,#c5ccd5); padding: 30px 30px 0; position: relative; }
.canopy-visual .truss-tag {
  position: absolute; top: 18px; right: 18px; background: var(--ink); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 50px; text-transform: uppercase;
}
.canopy-visual svg { width: 100%; height: auto; display: block; }
.canopy-body { padding: 26px 30px 30px; }
.canopy-body h3 { font-size: 1.55rem; }
.canopy-spec { display: flex; gap: 22px; margin: 16px 0 18px; flex-wrap: wrap; }
.canopy-spec div { line-height: 1.2; }
.canopy-spec .v { font-family: var(--display); font-weight: 800; font-size: 1.15rem; }
.canopy-spec .k { font-size: .74rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .08em; }
.canopy-price { display: flex; align-items: baseline; gap: 8px; padding-top: 16px; border-top: 1px solid var(--line); }
.canopy-price .from { font-size: .8rem; color: var(--ink-mute); }
.canopy-price .amt { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--ink-text); }

/* ---------- Pricing table ---------- */
.price-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.price-tab {
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  padding: 12px 20px; border-radius: 50px; border: 1.5px solid var(--line);
  color: var(--ink-soft); transition: .25s;
}
.price-tab:hover { border-color: var(--ink); }
.price-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
/* Quick-nav: even, equal-width tabs (no ragged wrapping) */
.quick-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.quick-nav .price-tab { text-align: center; }
@media (max-width: 640px) { .quick-nav { grid-template-columns: 1fr 1fr; } }
.price-panel { display: none; }
.price-panel.active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.price-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
table.price { width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px; }
table.price thead th {
  background: var(--ink); color: var(--white); font-family: var(--display); font-weight: 700;
  text-align: left; padding: 16px 22px; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
}
table.price thead th:last-child, table.price td:last-child { text-align: right; }
table.price td { padding: 15px 22px; border-top: 1px solid var(--line); font-size: .95rem; }
table.price tbody tr:hover { background: var(--paper); }
table.price .grp td {
  background: var(--paper-2); font-family: var(--display); font-weight: 800; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft);
}
table.price .sku { color: var(--ink-mute); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .8rem; }
table.price .amt { font-family: var(--display); font-weight: 800; color: var(--ink-text); white-space: nowrap; }
.price-note { font-size: .82rem; color: var(--ink-mute); margin-top: 16px; text-align: center; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; grid-auto-flow: dense; }
.g-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 220px;
  background: linear-gradient(150deg,#222e3a,#10151c); border: 1px solid var(--steel);
  display: grid; place-items: center; color: var(--on-dark-soft);
}
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item .g-ph { position: relative; text-align: center; }
.g-item .g-ph svg { width: 42px; height: 42px; margin: 0 auto 8px; opacity: .5; }
.g-item .g-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2; background: rgba(13,17,23,.7);
  backdrop-filter: blur(6px); color: var(--white); font-size: .78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 50px;
}
.g-wide { grid-column: span 8; } .g-reg { grid-column: span 4; }
.g-half { grid-column: span 6; } .g-tall { grid-row: span 2; min-height: 456px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; text-align: left; color: var(--ink); -webkit-tap-highlight-color: transparent; }
.faq-q span { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.faq-icon { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; position: relative; transition: .3s; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); transition: .3s var(--ease); }
.faq-icon::before { width: 14px; height: 2px; } .faq-icon::after { width: 2px; height: 14px; }
.faq-item.open .faq-icon { background: var(--ink); border-color: var(--ink); }
.faq-item.open .faq-icon::before { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--ink-soft); max-width: 700px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 85% 50%, rgba(150,166,188,.16), transparent 60%);
}
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.cta-inner h2 { color: var(--white); }
.cta-inner .lead { color: var(--on-dark-soft); margin-top: 16px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-phone { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--white); display: inline-flex; gap: 12px; align-items: center; }
.cta-phone svg { width: 26px; height: 26px; color: var(--amber); }

/* ============================================================
   Contact / forms
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px,5vw,64px); }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:first-of-type { border-top: 1px solid var(--line); }
.contact-info .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--ink); color: var(--amber); display: grid; place-items: center; flex: none; }
.contact-info .ic svg { width: 24px; height: 24px; }
.contact-info .k { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); }
.contact-info .v { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.contact-info .v a:hover { color: var(--amber-deep); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--display); font-weight: 700; font-size: .85rem; margin-bottom: 8px; letter-spacing: .02em; }
.field .req { color: var(--ember); }
.input, .textarea, .select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); font: inherit; color: var(--ink-text); transition: .25s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--amber-deep); background: var(--white); box-shadow: 0 0 0 4px rgba(93,102,113,.16); }
.textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 8px; }
.form-success { display: none; padding: 16px; border-radius: var(--radius); background: rgba(93,102,113,.12); color: var(--amber-deep); font-weight: 600; margin-bottom: 20px; }
.form-success.show { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--on-dark-soft); padding: 80px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--steel); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 320px; font-size: .95rem; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--steel); display: grid; place-items: center; color: var(--on-dark-soft); transition: .25s; }
.footer-social a:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a:hover { color: var(--amber); }
.footer-col .fc-line { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .fc-line svg { width: 16px; height: 16px; color: var(--amber); flex: none; margin-top: 4px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 28px; font-size: .85rem; }
.footer-bottom a:hover { color: var(--amber); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}
.reveal[data-d="3"]{transition-delay:.24s}.reveal[data-d="4"]{transition-delay:.32s}
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .hero-scroll i { animation: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-phone, .nav-login { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .svc-grid, .canopy-grid, .plan-grid, .split, .stakes-grid, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-wide,.g-reg,.g-half { grid-column: span 1; } .g-tall { grid-row: span 1; min-height: 220px; }
  .badge-float.br { right: 14px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .canopy-spec { gap: 16px; }
  /* Keep the uppercase hero headline from clipping on narrow screens */
  .hero h1 { font-size: clamp(2.05rem, 8.5vw, 2.7rem); }
}

/* Canopy feature grid — responsive 4 → 2 → 1 columns */
.feat-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .feat-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feat-grid-4 { grid-template-columns: 1fr; } }

/* Canopy benefits grid — responsive 3 → 2 → 1 columns */
.feat-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .feat-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid-3 { grid-template-columns: 1fr; } }

/* Pricing table on mobile — hide SKU column so prices stay visible (no horizontal scroll) */
@media (max-width: 640px) {
  table.price { min-width: 0; }
  table.price thead th:nth-child(2),
  table.price td.sku { display: none; }
  table.price thead th, table.price td { padding-left: 16px; padding-right: 16px; }
}

/* ---------- Mobile menu drawer ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); display: flex;
  flex-direction: column; justify-content: center; padding: 40px var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease); gap: 6px;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a { color: var(--on-dark); font-family: var(--display); font-weight: 700; font-size: 1.8rem; padding: 12px 0; border-bottom: 1px solid var(--steel); transition: .2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--amber); padding-left: 10px; }
.mobile-menu .mm-foot { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu .mm-foot .btn { justify-content: center; }
.mobile-menu .mm-phone { color: var(--amber); font-family: var(--display); font-weight: 800; font-size: 1.4rem; }

/* ============================================================
   INDUSTRIAL LAYER
   Crisp fabricated corners, hazard accents, blueprint marks
   ============================================================ */

/* 1. Squarer, machined corners throughout */
:root {
  --radius:    3px;
  --radius-lg: 4px;
  --radius-xl: 6px;
}
.btn { letter-spacing: .04em; text-transform: uppercase; }
.svc-icon  { border-radius: 6px; }
.bf-icon   { border-radius: 5px; }
.cred .ic  { border-radius: 5px; }
.stakes-item .x { border-radius: 4px; }

/* 2. Plan step number — square machined plate instead of soft circle */
.plan-step .step-n {
  border-radius: 4px;
  background: var(--silver-grad);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}

/* 3. Canopy spec tag — square hazard-style chip, not a pill */
.canopy-visual .truss-tag {
  border-radius: 3px;
  border-left: 3px solid var(--amber);
  letter-spacing: .12em;
}

/* 7. Brushed-steel hairline along the header edge */
.site-header.scrolled {
  border-bottom: 1px solid var(--steel);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 14px 40px rgba(0,0,0,.4);
}

/* ============================================================
   INDUSTRIAL LAYER II
   Rivets, brushed panels, mono telemetry, hazard banding
   ============================================================ */

/* 2. svc-num as a clean index marker */
.svc-num {
  font-weight: 800; font-size: 1.5rem; top: 30px; right: 32px;
  letter-spacing: -.02em;
}

/* 3. Square the last soft pills */
.price-tab, .g-item .g-tag, .canopy-visual .truss-tag { border-radius: 3px; }
.svc-icon, .bf-icon, .cred .ic, .contact-info .ic, .footer-social a { border-radius: 5px; }

/* 4. Rivets + brushed sheen + heavier plate on plan steps */
.plan-step {
  border-width: 1.5px; border-color: var(--steel-soft);
  background:
    radial-gradient(circle at 12px 12px, rgba(255,255,255,.22) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at calc(100% - 12px) 12px, rgba(255,255,255,.22) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 12px calc(100% - 12px), rgba(255,255,255,.22) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), rgba(255,255,255,.22) 0 1.4px, transparent 2.2px),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 40%),
    var(--ink-3);
  background-repeat: no-repeat;
}

/* 5. Heavier machined borders on dark media/gallery panels */
.media-card, .g-item { border-width: 1.5px; border-color: var(--steel-soft); }

/* 7. Brushed top edge on the CTA band */
.cta-band { border-top: 1px solid var(--steel); }

/* ============================================================
   INDUSTRIAL LAYER III
   Stencil headings, cut-steel corners, registration framing
   ============================================================ */


/* 2. Brushed machined edge on silver buttons (refined, not chamfered) */
.btn:not(.btn--ghost):not(.btn--outline-ink) {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -1px 0 rgba(20,23,28,.12), 0 10px 26px rgba(10,11,13,.22);
}
.btn:not(.btn--ghost):not(.btn--outline-ink):hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -1px 0 rgba(20,23,28,.12), 0 18px 40px rgba(10,11,13,.32);
}

/* ===================== ACCESSIBILITY ===================== */
/* Skip-to-content link — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  border: 1.5px solid var(--amber);
  border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* Tap targets — meet 44px minimum on touch */
.text-link { min-height: 44px; }
.footer-col ul { gap: 2px; }
.footer-col ul a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; }

/* ===================== SILVER HERO (home + inner pages) ===================== */
.hero, .page-hero {
  background: linear-gradient(157deg, #eef0f3 0%, #ced4dc 45%, #b4bbc5 78%, #c5cbd4 100%);
  color: var(--ink-soft);
}
/* Glow → soft light sheen */
.hero::after {
  background: radial-gradient(circle, rgba(255,255,255,.55), transparent 60%);
}
.hero .h-eyebrow.on-dark, .page-hero .h-eyebrow.on-dark { color: var(--amber-deep); }
.hero h1, .page-hero h1 { color: var(--ink); }
.hero h1 .spark { color: var(--amber-deep); }
.hero .lead, .page-hero .lead { color: var(--ink-soft); }
/* Breadcrumbs on the silver page-hero */
.page-hero .crumbs { color: var(--ink-soft); }
.page-hero .crumbs a { color: var(--ink); }
.page-hero .crumbs a:hover { color: var(--amber-deep); }
.page-hero .crumbs span { color: var(--ink-soft); opacity: .55; }
.trust-stat .n { color: var(--ink); }
.trust-stat .n span { color: var(--amber-deep); }
.trust-stat .l { color: var(--ink-soft); }
.hero-scroll { color: var(--ink-soft); }
.hero-scroll i { background: linear-gradient(var(--amber-deep), transparent); }
/* Stats divider in dark ink */
.hero-trust {
  border-top-color: rgba(20,23,28,.18);
}
/* CTAs tuned for the light hero */
.hero-actions .btn--lg:not(.btn--ghost) { --bg: var(--ink); --fg: var(--white); border-color: rgba(20,23,28,.2); }
.hero-actions .btn--ghost { --fg: var(--ink); border-color: rgba(20,23,28,.3); }
.hero-actions .btn--ghost:hover { background: rgba(20,23,28,.06); border-color: var(--ink); }

/* Dark header text + logo while unscrolled over the silver hero (homepage only) */
body.light-hero .site-header:not(.scrolled) .brand-name { color: var(--ink); }
body.light-hero .site-header:not(.scrolled) .brand-name b { color: var(--amber-deep); }
body.light-hero .site-header:not(.scrolled) .brand-sub { color: var(--ink-soft); }
body.light-hero .site-header:not(.scrolled) .brand-mark { filter: brightness(0) opacity(.82); }
body.light-hero .site-header:not(.scrolled) .nav-links a { color: var(--ink-soft); }
body.light-hero .site-header:not(.scrolled) .nav-links a:hover { color: var(--ink); background: rgba(20,23,28,.06); }
body.light-hero .site-header:not(.scrolled) .nav-phone { color: var(--ink); }
body.light-hero .site-header:not(.scrolled) .nav-phone:hover { color: var(--amber-deep); }
body.light-hero .site-header:not(.scrolled) .nav-login { color: var(--ink); }
body.light-hero .site-header:not(.scrolled) .nav-login:hover { color: var(--amber-deep); }
body.light-hero .site-header:not(.scrolled) .nav-toggle { border-color: rgba(20,23,28,.3); }
body.light-hero .site-header:not(.scrolled) .nav-toggle span,
body.light-hero .site-header:not(.scrolled) .nav-toggle span::before,
body.light-hero .site-header:not(.scrolled) .nav-toggle span::after { background: var(--ink); }
body.light-hero .site-header:not(.scrolled) .nav-cta .btn:not(.btn--ghost) { --bg: var(--ink); --fg: var(--white); }
