/* ============================================================
   International Printing Group — Catalog Site
   Design tokens from the IPG Design System (claude.ai/design)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Avant Garde Demi';
  src: url('../fonts/AvantGarde-Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ipg-orange: #EA7C28;
  --ipg-teal:   #299CB7;
  --ipg-purple: #6F3A92;
  --ipg-green:  #16B24B;

  /* Tints for chips / soft backgrounds */
  --tint-orange: #FDF0E5;
  --tint-teal:   #E5F4F8;
  --tint-purple: #F0EAF7;
  --tint-green:  #E5F6EC;

  /* Shades for hover states */
  --shade-orange: #C9661D;
  --shade-teal:   #1F7D93;
  --shade-purple: #5A2E77;
  --shade-green:  #0F9038;

  /* Neutrals */
  --gray-900: #14181B;
  --gray-800: #23292E;
  --gray-700: #3A4249;
  --gray-500: #6B7680;
  --gray-400: #97A1AA;
  --gray-300: #C2CAD1;
  --gray-200: #E1E6EA;
  --gray-100: #F0F2F4;
  --gray-050: #F7F8F9;
  --white: #FFFFFF;

  --text-primary: #14181B;
  --text-secondary: #3A4249;
  --text-muted: #6B7680;
  --border-subtle: #E1E6EA;

  /* Type */
  --font-display: 'Avant Garde Demi', 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --font-sans: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --tracking-wide: 0.05em;
  --tracking-widest: 0.16em;
  --lh-tight: 1.08;
  --lh-relaxed: 1.65;

  /* Layout */
  --max-w: min(1160px, 88%);
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 10px rgba(20,24,27,.07);
  --shadow-md: 0 10px 32px rgba(20,24,27,.12);
  --shadow-lg: 0 18px 50px rgba(20,24,27,.18);

  /* Per-page accent (overridden by body class) */
  --accent: var(--ipg-teal);
  --accent-shade: var(--shade-teal);
  --accent-tint: var(--tint-teal);
}
body.cat-orange { --accent: var(--ipg-orange); --accent-shade: var(--shade-orange); --accent-tint: var(--tint-orange); }
body.cat-teal   { --accent: var(--ipg-teal);   --accent-shade: var(--shade-teal);   --accent-tint: var(--tint-teal); }
body.cat-purple { --accent: var(--ipg-purple); --accent-shade: var(--shade-purple); --accent-tint: var(--tint-purple); }
body.cat-green  { --accent: var(--ipg-green);  --accent-shade: var(--shade-green);  --accent-tint: var(--tint-green); }
body.cat-dark   { --accent: var(--gray-900);   --accent-shade: #000;                --accent-tint: var(--gray-100); }

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: var(--max-w); margin-inline: auto; }

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: var(--lh-tight);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: currentColor; }
.eyebrow.no-rule::before { display: none; }
.lead { font-size: 1.16rem; line-height: var(--lh-relaxed); color: var(--text-secondary); }
.body-copy { font-size: 1rem; line-height: var(--lh-relaxed); color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: .2s;
  line-height: 1;
}
.btn-orange { background: var(--ipg-orange); color: #fff; }
.btn-orange:hover { background: var(--shade-orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(234,124,40,.35); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-shade); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--gray-900); color: #fff; }
.btn-dark:hover { background: var(--gray-700); }
.btn-white { background: #fff; color: var(--gray-900); }
.btn-white:hover { background: var(--gray-100); }

/* ---------- Color strip ---------- */
.color-strip { display: flex; height: 6px; }
.color-strip span { flex: 1; }
.color-strip span:nth-child(1) { background: var(--ipg-teal); }
.color-strip span:nth-child(2) { background: var(--ipg-orange); }
.color-strip span:nth-child(3) { background: var(--ipg-green); }
.color-strip span:nth-child(4) { background: var(--ipg-purple); }

/* ---------- Header ---------- */
.topbar {
  background: var(--gray-900);
  color: var(--gray-400);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gray-300); text-decoration: none; transition: .15s; }
.topbar a:hover { color: var(--ipg-orange); }
.topbar-links { display: flex; gap: 26px; }

header.site {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200), 0 4px 20px rgba(20,24,27,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo-link img { height: 40px; width: auto; }
nav.main { display: flex; align-items: center; }
nav.main ul { display: flex; list-style: none; align-items: center; }
nav.main a {
  display: block;
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  transition: .15s;
  white-space: nowrap;
  border-radius: var(--radius-md);
}
nav.main a:hover { color: var(--ipg-teal); }
nav.main a.active { color: var(--ipg-teal); }
nav.main a.nav-cta { background: var(--ipg-orange); color: #fff; margin-left: 12px; padding: 11px 22px; }
nav.main a.nav-cta:hover { background: var(--shade-orange); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--gray-900); transition: .3s; }

/* ---------- Page hero (category pages) ---------- */
.cat-hero { background: var(--accent); color: #fff; position: relative; overflow: hidden; }
body.cat-dark .cat-hero { background: var(--gray-900); }
.cat-hero-inner { padding: 92px 0 84px; position: relative; z-index: 1; max-width: 640px; }
.cat-hero .eyebrow { color: rgba(255,255,255,.85); }
.cat-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; margin-bottom: 20px; }
.cat-hero p { font-size: 1.12rem; line-height: var(--lh-relaxed); color: rgba(255,255,255,.92); }
.cat-hero .globe {
  position: absolute; right: -70px; top: -70px; width: 340px; opacity: .12; z-index: 0;
}

/* ---------- Section scaffolding ---------- */
section.block { padding: 96px 0; }
section.block.tight { padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: .25s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--gray-050); }
.prod-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prod-card:hover .thumb img { transform: scale(1.04); }
.prod-card .bar { height: 6px; background: var(--accent); }
.prod-card .body { padding: 22px 24px 26px; flex: 1; }
.prod-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 1.12rem; margin-bottom: 8px; }
.prod-card p { font-size: .93rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Feature list (category pages) ---------- */
.feature-cols { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 8px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1.02rem; font-weight: 600; color: var(--text-secondary);
}
.check-list li::before {
  content: ''; flex: none; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); margin-top: 9px;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery .item {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); background: var(--gray-050); aspect-ratio: 4 / 3;
}
.gallery .item.wide { grid-column: span 2; }
.gallery .item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery .item:hover img { transform: scale(1.04); }
.gallery .cap {
  position: absolute; left: 0; bottom: 0;
  font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: #fff; background: rgba(20,24,27,.78); padding: 6px 14px; border-top-right-radius: var(--radius-md);
}

/* ---------- Services grid (home) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: .25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card .bar { height: 8px; }
.svc-card .inner { padding: 26px 28px 30px; display: flex; flex-direction: column; height: 100%; }
.svc-card .num-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.svc-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 1.35rem; }
.svc-card .num { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--gray-300); font-size: .95rem; }
.svc-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; flex: 1; }
.svc-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; line-height: 1.45; color: var(--text-muted); }
.svc-card li::before { content: ''; flex: none; width: 6px; height: 6px; border-radius: 50%; margin-top: 8px; background: var(--dot, var(--gray-400)); }
.svc-card .go { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ind-card {
  background: var(--white); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.ind-card .head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
}
.ind-card .ico {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.ind-card .ico svg { width: 22px; height: 22px; }
.ind-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 1.05rem; }
.ind-card .bar { height: 5px; }
.ind-card ul { list-style: none; padding: 18px 24px 24px; display: flex; flex-direction: column; gap: 9px; }
.ind-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--text-muted); }
.ind-card li::before { content: ''; flex: none; width: 6px; height: 6px; border-radius: 50%; margin-top: 8px; background: var(--dot, var(--gray-400)); }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.55); color: #fff;
  border-radius: 999px; padding: 9px 18px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

/* ---------- Sustainability ---------- */
.sus { background: var(--ipg-green); color: #fff; position: relative; overflow: hidden; }
.sus .globe { position: absolute; left: -70px; bottom: -90px; width: 330px; opacity: .12; }
.sus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 54px; margin-top: 44px; }
.sus-item { border-left: 4px solid rgba(255,255,255,.65); padding-left: 22px; }
.sus-item h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 1.2rem; margin-bottom: 8px; }
.sus-item p { color: rgba(255,255,255,.92); font-size: .98rem; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ipg-teal); color: #fff; position: relative; overflow: hidden; }
.cta-band .globe { position: absolute; right: -80px; top: -80px; width: 360px; opacity: .12; }
.cta-inner { padding: 84px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: #fff; max-width: 18ch; }
.cta-inner p { color: rgba(255,255,255,.92); max-width: 46ch; margin-top: 12px; font-size: 1.05rem; }

/* ---------- Quote form ---------- */
.quote-wrap { display: grid; grid-template-columns: 5fr 7fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.quote-info { background: var(--gray-900); padding: 60px 52px; }
.quote-info img.qi-logo { height: 34px; margin-bottom: 42px; }
.quote-info h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 1.5rem; color: #fff; margin-bottom: 38px; }
.qi { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.qi .dot { width: 38px; height: 38px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex: none; }
.qi b { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.qi a, .qi span.val { color: var(--gray-200); text-decoration: none; font-size: .95rem; line-height: 1.55; }
.qi a:hover { color: var(--ipg-teal); }
.quote-form { background: var(--white); padding: 60px 52px; }
.quote-form h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 1.5rem; margin-bottom: 8px; }
.quote-form > p { color: var(--text-muted); font-size: .95rem; margin-bottom: 34px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.frow.full { grid-template-columns: 1fr; }
.form-note { padding: 13px 16px; font-size: .93rem; font-weight: 600; margin-bottom: 16px; }
.captcha-note { font-size: .78rem; color: var(--gray-500, #888); margin-bottom: 16px; line-height: 1.5; }
.captcha-note a { color: inherit; }
.form-note.ok  { background: #e5f6ec; color: #0e7a35; border-left: 4px solid var(--ipg-green); }
.form-note.err { background: #fdecec; color: #b3261e; border-left: 4px solid #b3261e; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: .95rem; padding: 13px 15px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  background: var(--gray-050); color: var(--text-primary);
  transition: .15s; outline: none; -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ipg-teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(41,156,183,.12);
}
.quote-form .btn { width: 100%; margin-top: 6px; padding: 16px; }

/* ---------- Footer ---------- */
footer.site { background: var(--gray-900); }
.foot-body { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding: 68px 0 56px; border-bottom: 1px solid var(--gray-800); }
.foot-brand img { height: 34px; margin-bottom: 20px; }
.foot-brand p { color: var(--gray-500); font-size: .9rem; line-height: 1.75; max-width: 30ch; }
.foot-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 20px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: var(--gray-400); text-decoration: none; font-size: .9rem; transition: .15s; }
.foot-col a:hover { color: var(--ipg-teal); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 14px; }
.foot-bottom p { color: var(--gray-700); font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.foot-dots { display: flex; gap: 7px; }
.foot-dots span { width: 10px; height: 10px; border-radius: 2px; display: block; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Home hero ---------- */
.hero-home { position: relative; background: var(--gray-900); overflow: hidden; }
.hero-home .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.hero-home .edge { position: absolute; right: 0; top: 0; bottom: 0; width: 8px; display: flex; flex-direction: column; z-index: 2; }
.hero-home .edge span { flex: 1; }
.hero-home .edge span:nth-child(1) { background: var(--ipg-teal); }
.hero-home .edge span:nth-child(2) { background: var(--ipg-orange); }
.hero-home .edge span:nth-child(3) { background: var(--ipg-green); }
.hero-home .edge span:nth-child(4) { background: var(--ipg-purple); }
.hero-home-inner { position: relative; z-index: 1; padding: 108px 0 96px; }
.hero-home h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; margin: 18px 0 24px; max-width: 16ch; }
.hero-home h1 em { font-style: normal; color: var(--ipg-orange); }
.hero-home .sub { font-size: 1.12rem; color: var(--gray-400); max-width: 52ch; margin-bottom: 42px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; border-top: 1px solid var(--gray-800); padding-top: 40px; flex-wrap: wrap; }
.hstat { padding-right: 48px; margin-right: 48px; border-right: 1px solid var(--gray-800); }
.hstat:last-child { border-right: none; }
.hstat strong { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: #fff; line-height: 1; }
.hstat strong em { font-style: normal; color: var(--ipg-orange); }
.hstat span { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-500); margin-top: 7px; }

/* ---------- About split (home) ---------- */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; bottom: -22px; right: -20px;
  background: var(--ipg-orange); border-radius: var(--radius-lg);
  padding: 26px 32px; text-align: center; box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: #fff; line-height: 1; }
.about-badge span { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-top: 5px; }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .topbar-links { display: none; }
  .burger { display: flex; }
  nav.main {
    position: fixed; inset: 74px 0 auto 0;
    background: var(--white); border-bottom: 3px solid var(--ipg-teal);
    transform: translateY(-130%); transition: .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 12px 32px rgba(20,24,27,.14); z-index: 99;
  }
  nav.main.open { transform: none; }
  nav.main ul { flex-direction: column; padding: 12px; align-items: stretch; }
  nav.main a { padding: 13px 16px; }
  nav.main a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .svc-grid, .prod-grid, .ind-grid, .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .item.wide { grid-column: span 2; }
  .feature-cols { grid-template-columns: 1fr; gap: 40px; }
  .about-wrap { grid-template-columns: 1fr; gap: 52px; }
  .about-badge { right: 0; }
  .sus-grid { grid-template-columns: 1fr; }
  .quote-wrap { grid-template-columns: 1fr; }
  section.block { padding: 72px 0; }
  .hstat { border-right: none; padding-right: 0; margin-right: 0; width: 100%; border-bottom: 1px solid var(--gray-800); padding-bottom: 16px; margin-bottom: 16px; }
  .hstat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
}
@media (max-width: 620px) {
  .svc-grid, .prod-grid, .ind-grid, .gallery { grid-template-columns: 1fr; }
  .gallery .item.wide { grid-column: span 1; }
  .frow { grid-template-columns: 1fr; }
  .quote-info, .quote-form { padding: 42px 26px; }
  .cta-inner { padding: 64px 0; }
}
