/* ============================================================
   iKitchen Cabinetry — Design System
   Built to the brand kit: /iKitchen/Branding/kit/
   Ink · Slate · Brass · Bone · Paper. Square corners. No shadows.
   ============================================================ */

:root {
  /* Brand palette — locked, from brand kit README */
  --ink:        #1d2129;   /* backgrounds, headlines */
  --slate:      #3f4652;   /* the logo's grey, body text on light */
  --brass:      #b98a4b;   /* the one accent — max ~7% of a surface */
  --deep-brass: #8a6b39;   /* brass on light backgrounds (link colour) */
  --bone:       #f0ece5;   /* section fields */
  --paper:      #faf8f5;   /* default page white — never pure #fff */
  --muted:      #5c6472;   /* secondary text */
  --hair:       #e4e1dc;   /* rules and borders */
  --white:      #ffffff;

  /* Legacy aliases so existing markup keeps working */
  --ink-deep: #171b22;
  --ink-soft: #3f4652;
  --ink-mute: #5c6472;
  --gold: #b98a4b;
  --gold-light: #d4a76a;
  --warm: #faf8f5;
  --warm-deep: #f0ece5;
  --sage: #1d2129;
  --line: #e4e1dc;
  --line-dark: rgba(255,255,255,.12);

  /* Type */
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, Menlo, monospace;

  /* Scale */
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-lg: 1.0625rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.75rem;
  --text-3xl: clamp(30px, 3.6vw, 46px);
  --text-4xl: clamp(32px, 4.4vw, 56px);
  --text-hero: clamp(40px, 6vw, 74px);

  --space-section: clamp(64px, 8vw, 96px);
  --space-block: clamp(2rem, 4vw, 3rem);
  --container: 1240px;
  --container-narrow: 820px;
  --ease: cubic-bezier(.22,1,.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(--sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: #b98a4b; color: #1d2129; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: 1.5rem; }
.hero-title { font-family: var(--serif); font-size: var(--text-hero); font-weight: 400; line-height: .98; }
.mono { font-family: var(--mono); }

/* Signature move: wide-tracked micro-caps eyebrow above a large serif name */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--deep-brass);
  margin-bottom: .75rem;
  display: block;
}
.lede { font-size: var(--text-lg); color: var(--muted); line-height: 1.65; max-width: 640px; }
.caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a8477;
}

/* ---------- Layout ---------- */
.container, .wrap { max-width: var(--container); margin-inline: auto; padding-inline: clamp(24px, 4vw, 40px); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: clamp(24px, 4vw, 40px); }
.section, section.block { padding-block: var(--space-section); }
.section-warm, .process { background: var(--bone); }
.section-dark, .section-sage { background: var(--ink); color: rgba(255,255,255,.72); }
.section-dark h1, .section-dark h2, .section-dark h3,
.section-sage h1, .section-sage h2, .section-sage h3 { color: var(--white); }
.section-dark .lede, .section-sage .lede { color: rgba(255,255,255,.72); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-block); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; } .mt-4 { margin-top: 2.5rem; }
.mx-auto { margin-inline: auto; }

.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.head h2 { margin: 10px 0 0; }

/* ---------- Buttons — square, no radius, no shadow ---------- */
.btn {
  display: inline-block;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary, .btn-gold { background: var(--brass); color: var(--ink); }
.btn-primary:hover, .btn-gold:hover { background: #c99a5b; color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2b3140; color: var(--white); }
.btn-light { background: var(--ink); color: var(--white); }
.btn-light:hover { background: var(--brass); color: var(--ink); }
.btn-outline, .btn-ghost { border-color: rgba(255,255,255,.35); color: var(--white); background: transparent; }
.btn-outline:hover, .btn-ghost:hover { border-color: var(--white); color: var(--white); }
.link-arrow, .link-more {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--deep-brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}
.link-arrow:hover, .link-more:hover { color: var(--ink); }

/* ---------- Top bar ---------- */
.topbar {
  background: #171b22;
  color: rgba(255,255,255,.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a:hover { color: var(--brass); }
.topbar-left { display: flex; gap: 1.5rem; }

/* ---------- Header / Nav — dark ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding-block: 20px;
}
.logo { flex-shrink: 0; }
.logo img { height: 40px; width: auto; max-width: none; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.72); position: relative; transition: color .2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--brass);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.72); white-space: nowrap; }
.nav-cta .btn { padding: 12px 20px; font-size: 11px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.14);
  min-width: 240px; padding: .5rem 0;
  opacity: 0; visibility: hidden; transition: all .2s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: .6rem 1.4rem;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: .02em; text-transform: none; color: rgba(255,255,255,.6);
}
.dropdown a:hover { background: rgba(255,255,255,.06); color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: flex-end; background: var(--ink); overflow: hidden; }
.hero-media, .hero > img, .hero > video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  /* Legible at the bottom, but the footage stays visible up top. */
  background: linear-gradient(to top,
    rgba(29,33,41,.92) 0%,
    rgba(29,33,41,.72) 28%,
    rgba(29,33,41,.34) 58%,
    rgba(29,33,41,.10) 100%);
}
.hero-content, .hero-inner { position: relative; z-index: 2; width: 100%; padding-block: 120px 64px; }
.hero-content .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.hero h1, .hero .hero-title { color: var(--white); margin: 0; }
.hero .eyebrow { color: var(--brass); }
/* keeps type crisp over bright frames of the footage */
.hero h1, .hero .hero-title, .hero .eyebrow, .hero-sub, .hero p { text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.hero-sub, .hero p { max-width: 520px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.72); }
.hero-cta { display: flex; flex-direction: column; gap: 10px; }
.hero .breadcrumbs { color: rgba(255,255,255,.45); }
.hero .breadcrumbs a:hover { color: var(--brass); }

/* ---------- Stats bar ---------- */
.stats { background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); }
.stats .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; padding-block: 34px; }
.stats .n { font-family: var(--serif); font-size: 38px; color: var(--white); line-height: 1; }
.stats .l { margin-top: 8px; font-size: 10px; font-weight: 600; letter-spacing: .22em; color: rgba(255,255,255,.45); text-transform: uppercase; }

/* ---------- Cards ---------- */
.card { display: block; background: transparent; }
.card-img, .card-photo, .prod-card-img {
  aspect-ratio: 4/5; overflow: hidden; background: var(--bone);
}
.card-img img, .prod-card-img img, .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-img img, .prod-card:hover .prod-card-img img { transform: scale(1.03); }
.card-body { padding-top: 14px; }
.card-title, .card h3 {
  font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.1;
  margin: 14px 0 6px; color: var(--ink);
}
.card:hover .card-title, .card:hover h3 { color: var(--deep-brass); }
.card .meta, .meta { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: #8a8477; text-transform: uppercase; }

.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }
.prod-card { display: block; background: transparent; border: 0; }
.prod-card h3 { font-family: var(--serif); font-size: 22px; margin: 14px 0 6px; }
.pill {
  display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--hair); padding: 4px 10px; margin: 2px 4px 2px 0;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: #ddd7cc; }
.step { background: var(--bone); padding: 28px 24px 0; }
.step .k { font-family: var(--mono); font-size: 11px; color: var(--brass); }
.step h4 { margin: 12px 0 8px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.step p { margin: 0 0 28px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ---------- Materials ---------- */
.materials { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; }
.swatches { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.swatch { aspect-ratio: 3/2; background: var(--bone); position: relative; overflow: hidden; }
.swatch img { width: 100%; height: 100%; object-fit: cover; }
.swatch span {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #6b6459;
}
.spec-list { border-top: 1px solid var(--hair); }
.spec-list div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--hair); font-size: 15px; }
.spec-list .v { color: var(--muted); text-align: right; }

/* ---------- Quote band ---------- */
.quote { background: var(--ink); }
.quote .container { padding-block: 88px; }
.quote p { margin: 0; max-width: 900px; font-family: var(--serif); font-size: clamp(26px,3.2vw,40px); line-height: 1.28; color: var(--white); }
.quote .who { margin-top: 24px; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); }

/* ---------- Trade / CTA band (brass) ---------- */
.trade, .cta-band { background: var(--brass); color: var(--ink); position: relative; }
.trade .container, .cta-band .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding-block: 60px; flex-wrap: wrap;
}
.trade h2, .cta-band h2 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(28px,3.4vw,40px); font-weight: 400; line-height: 1.05; max-width: 640px; color: var(--ink); }
.trade .eyebrow, .cta-band .eyebrow { color: rgba(29,33,41,.6); }
.cta-band p { color: rgba(29,33,41,.75); max-width: 620px; }
.cta-band::before, .cta-band::after { display: none; }

/* Photo CTA bands: cover + centred, ink scrim, white type */
.cta-band[style*="background-image"] {
  background-color: var(--ink);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.cta-band[style*="background-image"]::before {
  content: ""; display: block; position: absolute; inset: 0;
  background: rgba(29,33,41,.74);
}
.cta-band[style*="background-image"] .container { position: relative; z-index: 2; }
.cta-band[style*="background-image"] h2 { color: var(--white); }
.cta-band[style*="background-image"] p { color: rgba(255,255,255,.75); }
.cta-band[style*="background-image"] .eyebrow { color: var(--brass); }
.cta-band[style*="background-image"] .btn-light,
.cta-band[style*="background-image"] .btn-dark { background: var(--brass); color: var(--ink); }
.cta-band[style*="background-image"] .btn-light:hover,
.cta-band[style*="background-image"] .btn-dark:hover { background: #c99a5b; color: var(--ink); }
.cta-band .btn-light, .trade .btn-light { background: var(--ink); color: var(--white); }
.cta-band .btn-outline, .trade .btn-outline { border-color: rgba(29,33,41,.4); color: var(--ink); }
.cta-band .btn-outline:hover, .trade .btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Forms ---------- */
form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; max-width: 820px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  border: 0; border-bottom: 1px solid var(--slate); background: transparent;
  padding: 10px 0; font-family: var(--sans); font-size: 15px; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-bottom-color: var(--brass); }
.field.full { grid-column: 1 / -1; }
form .btn { border: 0; cursor: pointer; font-family: var(--sans); }

/* ---------- Tables ---------- */
.spec-table, .sku-table, .prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .sku-table th, .prose th {
  text-align: left; font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--hair); padding: 12px 14px 12px 0;
}
.spec-table td, .sku-table td, .prose td { padding: 12px 14px 12px 0; border-bottom: 1px solid var(--hair); color: var(--slate); }
.sku-wrap { overflow-x: auto; border: 1px solid var(--hair); }
.sku-table th { position: sticky; top: 0; background: var(--paper); }

/* ---------- Prose ---------- */
.prose { font-size: 17px; line-height: 1.75; color: var(--slate); }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 .75rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose ul li { list-style: none; position: relative; padding-left: 1rem; margin-bottom: .5rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; background: var(--brass); }
.prose ol { list-style: decimal; }
.prose ol li { margin-bottom: .5rem; }
.prose a { color: var(--deep-brass); border-bottom: 1px solid var(--hair); }
.prose a:hover { border-bottom-color: var(--brass); }
.prose blockquote {
  border-left: 2px solid var(--brass); padding-left: 1.5rem; margin: 2rem 0;
  font-family: var(--serif); font-size: 1.4rem; line-height: 1.35; color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--hair); padding: 1.4rem 0; }
.faq-q { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .5rem; color: var(--ink); }
.faq-a { color: var(--muted); line-height: 1.7; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a:hover { color: var(--brass); }

/* ---------- Filter chips ---------- */
.filter-chip {
  font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--hair); padding: 9px 16px; background: transparent; transition: all .2s;
}
.filter-chip:hover { border-color: var(--brass); color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---------- Swatch library ---------- */
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 14px; }
.swatch-chip { border: 1px solid var(--hair); }
.swatch-chip .sw { aspect-ratio: 3/2; }
.swatch-chip .nm { padding: 8px 10px; font-size: 11px; line-height: 1.4; color: var(--slate); }
.swatch-chip .cd { font-family: var(--mono); font-size: 10px; color: var(--muted); }

/* ---------- Showroom cards ---------- */
.showroom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1px; background: var(--hair); }
.showroom-card { background: var(--paper); padding: 28px 24px; }
.showroom-card h3 { font-size: 22px; margin-bottom: .5rem; }
.showroom-card address { font-style: normal; font-size: 14px; line-height: 1.8; color: var(--muted); }

/* ---------- Product hero / gallery ---------- */
.prod-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.prod-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.55); }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-top: 64px; }
.site-footer h5, .footer-cols h5, .site-footer h4 {
  margin: 0 0 12px; font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--brass);
}
.site-footer a { display: block; color: rgba(255,255,255,.55); font-size: 13px; line-height: 2; }
.site-footer a:hover { color: var(--white); }
.footer-brand img { width: 240px; height: auto; }
.footer-contact { margin-top: 16px; font-size: 13px; line-height: 1.8; }
.footer-contact a { display: inline; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.socials a {
  display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.2); padding: 6px 9px; color: rgba(255,255,255,.55);
}
.socials a:hover { border-color: var(--brass); color: var(--brass); }
.footer-legal, .footer-bar {
  display: flex; justify-content: space-between; gap: 20px; margin-top: 44px;
  padding: 20px 0 32px; border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  color: rgba(255,255,255,.35); flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a { display: inline; font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats .container, .grid-3, .grid-4, .steps, .materials, .footer-cols, form,
  .prod-hero, .grid-2 { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 520px; }
}

@media (max-width: 860px) {
  .topbar-left { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .nav-phone { display: none; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-top: 1px solid rgba(255,255,255,.1);
    padding: .5rem clamp(24px,4vw,40px) 1.5rem;
    max-height: 72vh; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .has-dropdown > a {
    color: var(--brass); font-weight: 700; letter-spacing: .22em;
    border-bottom: 1px solid rgba(255,255,255,.1); padding: .8rem 0 .45rem;
  }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    border: 0; border-left: 2px solid rgba(255,255,255,.14);
    padding: .25rem 0 .5rem .9rem; margin-bottom: .5rem; min-width: 0; background: transparent;
  }
  .dropdown a { padding: .4rem 0; }
  .nav-links > a { padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero::after {
    background: linear-gradient(to top,
      rgba(29,33,41,.94) 0%,
      rgba(29,33,41,.80) 34%,
      rgba(29,33,41,.42) 66%,
      rgba(29,33,41,.14) 100%);
  }
  .hero-content .container { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .hero .breadcrumbs { display: none; }
  .logo img { height: 34px; }
}

@media (max-width: 600px) {
  .stats .container, .grid-2, .grid-3, .grid-4, .steps, .materials,
  .footer-cols, form, .prod-hero { grid-template-columns: 1fr; }
  .section, section.block { padding-block: 64px; }
  .hero-content, .hero-inner { padding-block: 90px 48px; }
  .btn { padding: 14px 22px; font-size: 11px; }
  .trade .container, .cta-band .container { padding-block: 44px; }
  .quote .container { padding-block: 60px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .topbar, .site-footer, .cta-band, .trade { display: none; }
  body { background: #fff; color: #000; }
}
