@charset "utf-8";
/* ==========================================================================
   GRIPWORK theme - anti-slip tape manufacturer, Japan market
   Structure-first skin: hazard-stripe accents, sand paper base, tread grid
   ========================================================================== */

:root {
  --gw-ink: #161d1a;
  --gw-ink-soft: #3d4a45;
  --gw-mute: #6d7b75;
  --gw-line: #dfdacd;
  --gw-line-soft: #ece7dc;
  --gw-sand: #f6f3ea;
  --gw-sand-deep: #efeadd;
  --gw-white: #ffffff;
  --gw-moss: #1f6b4d;
  --gw-moss-deep: #164f39;
  --gw-moss-soft: #e6f1eb;
  --gw-safety: #ffcc00;
  --gw-safety-deep: #e3a900;
  --gw-alert: #d8461f;
  --gw-radius: 4px;
  --gw-radius-lg: 10px;
  --gw-shadow: 0 2px 0 rgba(22, 29, 26, .06), 0 14px 34px -22px rgba(22, 29, 26, .35);
  --gw-shadow-lift: 0 3px 0 rgba(22, 29, 26, .08), 0 26px 48px -26px rgba(22, 29, 26, .45);
  --gw-stripe: repeating-linear-gradient(135deg, var(--gw-safety) 0 12px, var(--gw-ink) 12px 24px);
  --gw-tread: repeating-linear-gradient(90deg, rgba(22, 29, 26, .07) 0 2px, transparent 2px 9px);
  --gw-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --gw-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, Menlo, monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.gw-theme {
  margin: 0;
  padding: 0;
  font-family: var(--gw-font);
  font-size: 15px;
  line-height: 1.85;
  color: var(--gw-ink);
  background: var(--gw-sand);
  overflow-x: hidden;
}

body.gw-theme img { max-width: 100%; height: auto; display: block; }
body.gw-theme a { color: inherit; text-decoration: none; transition: color .18s ease, background .18s ease, border-color .18s ease; }
body.gw-theme a:hover { color: var(--gw-moss); }
body.gw-theme h1, body.gw-theme h2, body.gw-theme h3, body.gw-theme h4 { margin: 0; font-weight: 700; line-height: 1.4; letter-spacing: .01em; }
body.gw-theme p { margin: 0 0 1em; }
body.gw-theme ul, body.gw-theme ol { margin: 0; padding: 0; }
body.gw-theme table { border-collapse: collapse; width: 100%; }
body.gw-theme figure { margin: 0; }
body.gw-theme button { font-family: inherit; }

.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gw-ink);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
}
.skip-nav:focus { left: 12px; top: 12px; color: #fff; }

.gw-wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.gw-wrap-narrow { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 24px; }

.gw-stripe-rule { height: 8px; background: var(--gw-stripe); }
.gw-stripe-rule-thin { height: 4px; background: var(--gw-stripe); }

/* ---------- eyebrow / headings ---------- */
.gw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gw-font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gw-moss);
  font-weight: 700;
}
.gw-kicker::before { content: ""; width: 26px; height: 3px; background: var(--gw-safety); }
.gw-kicker-light { color: var(--gw-safety); }
.gw-kicker-light::before { background: var(--gw-safety); }

.gw-h2 { font-size: 30px; margin: 12px 0 14px; }
.gw-h2 em { font-style: normal; color: var(--gw-moss); }
.gw-lead { color: var(--gw-ink-soft); max-width: 760px; margin: 0; }

.gw-sectionhead { margin-bottom: 34px; }
.gw-sectionhead-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 40px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gw-line);
}
.gw-sectionhead-light .gw-h2, .gw-sectionhead-light .gw-lead { color: #fff; }
.gw-sectionhead-light { border-bottom-color: rgba(255, 255, 255, .22); }

.gw-blocktitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 5px solid var(--gw-safety);
}
.gw-blocktitle i { color: var(--gw-moss); font-size: 17px; }

/* ---------- buttons ---------- */
.gw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--gw-radius);
  cursor: pointer;
  background: var(--gw-ink);
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.gw-btn:hover { color: #fff; transform: translateY(-1px); }
.gw-btn-safety { background: var(--gw-safety); color: var(--gw-ink); border-color: var(--gw-safety); }
.gw-btn-safety:hover { background: var(--gw-safety-deep); border-color: var(--gw-safety-deep); color: var(--gw-ink); }
.gw-btn-moss { background: var(--gw-moss); border-color: var(--gw-moss); }
.gw-btn-moss:hover { background: var(--gw-moss-deep); border-color: var(--gw-moss-deep); }
.gw-btn-ink { background: var(--gw-ink); border-color: var(--gw-ink); }
.gw-btn-outline { background: transparent; color: var(--gw-ink); border-color: var(--gw-ink); }
.gw-btn-outline:hover { background: var(--gw-ink); color: #fff; }
.gw-btn-ghost { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); color: #fff; }
.gw-btn-ghost:hover { background: #fff; color: var(--gw-ink); border-color: #fff; }
.gw-btn-lg { padding: 15px 30px; font-size: 15px; }
.gw-btn-sm { padding: 8px 14px; font-size: 12.5px; }
.gw-btn-block { width: 100%; }
.gw-btn-line { background: #06c755; border-color: #06c755; }
.gw-btn-line:hover { background: #05a948; border-color: #05a948; }
.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--gw-safety);
  border-radius: var(--gw-radius);
  background: var(--gw-safety);
  color: var(--gw-ink);
  cursor: pointer;
}
.btn-primary:hover { background: var(--gw-safety-deep); border-color: var(--gw-safety-deep); color: var(--gw-ink); }

/* ---------- reveal ---------- */
.gw-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.gw-reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   HEADER : slim notice bar + split brand row (utility over nav)
   ========================================================================== */
.gw-notice {
  background: var(--gw-ink);
  color: #f2efe6;
  font-size: 12.5px;
}
.gw-notice-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
}
.gw-notice-msg { display: inline-flex; align-items: center; gap: 9px; }
.gw-notice-msg i { color: var(--gw-safety); }
.gw-notice-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.gw-notice-meta a { color: #f2efe6; display: inline-flex; align-items: center; gap: 7px; }
.gw-notice-meta a:hover { color: var(--gw-safety); }

.gw-head { background: #fff; border-bottom: 1px solid var(--gw-line); position: relative; z-index: 60; }
.gw-head.is-stuck { position: sticky; top: 0; box-shadow: 0 12px 26px -22px rgba(22, 29, 26, .8); }
.gw-head-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 16px 0 12px;
}
.gw-brand { display: inline-flex; align-items: center; gap: 12px; }
.gw-brand img { max-height: 54px; width: auto; }
.gw-brand-tag {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gw-mute);
  font-family: var(--gw-font-mono);
  text-transform: uppercase;
}
.gw-head-search { position: relative; }
.gw-head-search form { display: flex; align-items: stretch; border: 2px solid var(--gw-ink); border-radius: var(--gw-radius); overflow: hidden; background: #fff; }
.gw-head-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  background: transparent;
}
.gw-head-search button {
  border: 0;
  background: var(--gw-ink);
  color: #fff;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.gw-head-search button:hover { background: var(--gw-moss); }
.gw-searchtip { margin: 6px 0 1em !important; font-size: 11.5px; color: var(--gw-mute); }

.gw-head-utils { display: flex; align-items: center; gap: 10px; }
.gw-util {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: var(--gw-sand);
}
.gw-util:hover { border-color: var(--gw-ink); }
.gw-qbadge {
  display: none;
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gw-alert);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}
.gw-burger {
  display: none;
  width: 46px;
  height: 44px;
  border: 2px solid var(--gw-ink);
  border-radius: var(--gw-radius);
  background: #fff;
  cursor: pointer;
  padding: 0 11px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.gw-burger span { display: block; width: 100%; min-width: 20px; height: 2px; min-height: 2px; flex: 0 0 auto; background: var(--gw-ink); }

.gw-navbar { border-top: 1px solid var(--gw-line-soft); background: #fff; }
.gw-navbar-in { display: flex; align-items: stretch; gap: 4px; flex-wrap: wrap; }
.gw-navlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 15px 16px;
  font-size: 14.5px;
  font-weight: 700;
  border-bottom: 3px solid transparent;
}
.gw-navlink:hover, .gw-navlink.active { border-bottom-color: var(--gw-safety); color: var(--gw-ink); }
.gw-navdrop { position: relative; }
.gw-navdrop > .gw-navlink i { font-size: 11px; color: var(--gw-mute); }
.gw-flyout {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 640px;
  background: #fff;
  border: 1px solid var(--gw-line);
  border-top: 4px solid var(--gw-safety);
  box-shadow: var(--gw-shadow-lift);
  padding: 24px 26px 20px;
  display: none;
  z-index: 70;
}
.gw-navdrop:hover .gw-flyout, .gw-navdrop:focus-within .gw-flyout { display: block; }
.gw-flyout-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 26px; }
.gw-flyout-col > a { display: block; }
.gw-flyout-parent {
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--gw-line);
}
.gw-flyout-child { font-size: 13px; color: var(--gw-ink-soft); padding: 4px 0 4px 12px; position: relative; }
.gw-flyout-child::before { content: ""; position: absolute; left: 0; top: 15px; width: 6px; height: 2px; background: var(--gw-safety); }
.gw-flyout-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gw-line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gw-flyout-all { font-size: 13px; font-weight: 700; color: var(--gw-moss); display: inline-flex; align-items: center; gap: 8px; }
.gw-flyout-note { font-size: 12px; color: var(--gw-mute); }

/* left drawer */
.gw-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(400px, 88vw);
  background: #fff;
  transform: translateX(-102%);
  transition: transform .32s ease;
  z-index: 220;
  overflow-y: auto;
  box-shadow: 26px 0 60px -30px rgba(0, 0, 0, .6);
}
.gw-drawer.on { transform: none; }
.gw-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--gw-ink);
  color: #fff;
}
.gw-drawer-head strong { font-family: var(--gw-font-mono); letter-spacing: .2em; font-size: 13px; }
.gw-drawer-close { background: none; border: 0; color: #fff; font-size: 21px; cursor: pointer; }
.gw-drawer-search { padding: 18px 22px; border-bottom: 1px solid var(--gw-line-soft); background: var(--gw-sand); }
.gw-drawer-search form { display: flex; border: 2px solid var(--gw-ink); border-radius: var(--gw-radius); overflow: hidden; background: #fff; }
.gw-drawer-search input { flex: 1; min-width: 0; border: 0; padding: 10px 12px; font-family: inherit; outline: none; }
.gw-drawer-search button { border: 0; background: var(--gw-ink); color: #fff; padding: 0 16px; cursor: pointer; }
.gw-drawer nav { padding: 8px 0 18px; }
.gw-drawer nav > a {
  display: block;
  padding: 14px 22px;
  font-weight: 700;
  border-bottom: 1px solid var(--gw-line-soft);
}
.gw-dsec { border-bottom: 1px solid var(--gw-line-soft); }
.gw-dsec > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  background: none;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  color: var(--gw-ink);
}
.gw-dsec > button i { transition: transform .2s ease; color: var(--gw-mute); }
.gw-dsec.open > button i { transform: rotate(180deg); }
.gw-dsub { display: none; padding: 4px 22px 16px; background: var(--gw-sand); }
.gw-dsec.open .gw-dsub { display: block; }
.gw-dsub a { display: block; padding: 8px 0; font-size: 13.5px; color: var(--gw-ink-soft); border-bottom: 1px dashed var(--gw-line); }
.gw-drawer-cta { padding: 18px 22px 34px; display: grid; gap: 10px; }
.gw-scrim {
  position: fixed;
  inset: 0;
  background: rgba(22, 29, 26, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  z-index: 210;
}
.gw-scrim.on { opacity: 1; visibility: visible; }

/* ==========================================================================
   PAGE HEAD (interior pages)
   ========================================================================== */
.gw-pagehead {
  background: var(--gw-white);
  border-bottom: 1px solid var(--gw-line);
  padding: 30px 0 34px;
  position: relative;
}
.gw-pagehead::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 4px; background: var(--gw-stripe); }
.gw-pagehead h1 { font-size: 32px; margin: 10px 0 10px; }
.gw-pagehead p { margin: 0; color: var(--gw-ink-soft); max-width: 860px; }
.gw-pagehead-slim { padding: 18px 0 20px; }
.gw-pagehead-slim::after { display: none; }
.gw-pagehead-sand { background: var(--gw-sand-deep); }

.gw-crumb { font-size: 12px; color: var(--gw-mute); }
.gw-crumb a { color: var(--gw-mute); }
.gw-crumb a:hover { color: var(--gw-moss); }
.gw-crumb-light, .gw-crumb-light a { color: rgba(255, 255, 255, .75); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.gw-sec { padding: 74px 0; }
.gw-sec-tight { padding: 52px 0; }
.gw-sec-sand { background: var(--gw-sand-deep); }
.gw-sec-white { background: #fff; }
.gw-sec-ink { background: var(--gw-ink); color: #f4f1e8; }
.gw-sec-ink .gw-lead { color: rgba(244, 241, 232, .82); }
.gw-sec-moss { background: var(--gw-moss-deep); color: #eef6f1; }
.gw-sec-tread { background: var(--gw-sand); background-image: var(--gw-tread); }

/* ==========================================================================
   HOME : hero with use-case selector
   ========================================================================== */
.gw-hero { background: var(--gw-ink); color: #f4f1e8; position: relative; overflow: hidden; }
.gw-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: var(--gw-stripe);
}
.gw-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 50px;
  padding: 74px 24px 84px;
  align-items: start;
}
.gw-hero h1 { font-size: 46px; line-height: 1.28; margin: 16px 0 18px; }
.gw-hero h1 em { font-style: normal; display: block; color: var(--gw-safety); }
.gw-hero p { color: rgba(244, 241, 232, .82); max-width: 560px; }
.gw-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 30px; }
.gw-hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .16); }
.gw-hero-facts div { background: var(--gw-ink); padding: 16px 14px; }
.gw-hero-facts dt { font-size: 27px; font-weight: 700; color: var(--gw-safety); font-family: var(--gw-font-mono); }
.gw-hero-facts dt small { font-size: 13px; margin-left: 3px; color: #fff; }
.gw-hero-facts dd { margin: 4px 0 0; font-size: 12.5px; color: rgba(244, 241, 232, .78); }

.gw-picker { background: #fff; color: var(--gw-ink); border: 1px solid rgba(255, 255, 255, .2); box-shadow: var(--gw-shadow-lift); }
.gw-picker-head { padding: 18px 22px; border-bottom: 1px solid var(--gw-line); }
.gw-picker-head strong { display: block; font-size: 16px; }
.gw-picker-head span { font-size: 12px; color: var(--gw-mute); }
.gw-picker-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--gw-line); }
.gw-picker-tabs button {
  border: 0;
  background: var(--gw-sand);
  padding: 13px 6px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  color: var(--gw-ink-soft);
  border-right: 1px solid var(--gw-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.gw-picker-tabs button:last-child { border-right: 0; }
.gw-picker-tabs button i { font-size: 16px; color: var(--gw-moss); }
.gw-picker-tabs button.on { background: #fff; color: var(--gw-ink); box-shadow: inset 0 -3px 0 var(--gw-safety); }
.gw-picker-pane { display: none; padding: 22px; }
.gw-picker-pane.on { display: block; }
.gw-picker-pane h3 { font-size: 17px; margin-bottom: 8px; }
.gw-picker-pane p { font-size: 13.5px; color: var(--gw-ink-soft); }
.gw-picker-spec { margin: 0 0 16px; border-top: 1px solid var(--gw-line-soft); }
.gw-picker-spec div { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--gw-line-soft); font-size: 13px; }
.gw-picker-spec dt { color: var(--gw-mute); }
.gw-picker-spec dd { margin: 0; font-weight: 700; text-align: right; }

/* USP hazard strip */
.gw-uspstrip { background: var(--gw-safety); color: var(--gw-ink); }
.gw-uspstrip-in { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.gw-uspstrip-in > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 20px;
  font-size: 13.5px;
  font-weight: 700;
  border-right: 2px dashed rgba(22, 29, 26, .25);
}
.gw-uspstrip-in > div:last-child { border-right: 0; }
.gw-uspstrip i { font-size: 20px; }

/* 3 step chooser */
.gw-steprow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gw-stepcard {
  background: #fff;
  border: 1px solid var(--gw-line);
  padding: 26px 24px 24px;
  position: relative;
}
.gw-stepcard::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--gw-stripe); }
.gw-stepcard b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gw-ink);
  color: var(--gw-safety);
  font-family: var(--gw-font-mono);
  font-size: 16px;
  margin-bottom: 14px;
}
.gw-stepcard-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  background: var(--gw-ink);
  color: var(--gw-safety);
  font-family: var(--gw-font-mono);
  font-size: 14px;
  font-weight: 700;
}
.gw-stepcard h3 { font-size: 17px; margin-bottom: 8px; }
.gw-stepcard p { font-size: 13.5px; color: var(--gw-ink-soft); margin: 0; }

/* category index list (home) */
.gw-catindex { border-top: 2px solid var(--gw-ink); counter-reset: gwcat; }
.gw-catrow {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 130px 44px;
  gap: 20px;
  align-items: center;
  padding: 20px 6px;
  border-bottom: 1px solid var(--gw-line);
  background: transparent;
}
.gw-catrow:hover { background: #fff; }
.gw-catrow { counter-increment: gwcat; }
.gw-catrow-no { font-family: var(--gw-font-mono); font-size: 13px; color: var(--gw-mute); }
.gw-catrow-no::before { content: counter(gwcat, decimal-leading-zero); }
.gw-catrow h3 { font-size: 19px; }
.gw-catrow p { margin: 4px 0 0; font-size: 13px; color: var(--gw-mute); }
.gw-catrow-thumb { width: 130px; height: 84px; overflow: hidden; background: var(--gw-sand-deep); border: 1px solid var(--gw-line); }
.gw-catrow-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gw-catrow-go {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gw-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gw-catrow:hover .gw-catrow-go { background: var(--gw-safety); }

.gw-noimg {
  width: 100%;
  height: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gw-sand-deep);
  color: var(--gw-mute);
  font-size: 24px;
}

/* product cards (home + list) */
.gw-cardgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.gw-cardgrid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gw-pcard { background: #fff; border: 1px solid var(--gw-line); display: flex; flex-direction: column; }
.gw-pcard:hover { box-shadow: var(--gw-shadow-lift); }
.gw-pcard-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--gw-sand-deep); border-bottom: 1px solid var(--gw-line); }
.gw-pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gw-pcard:hover .gw-pcard-media img { transform: scale(1.05); }
.gw-pcard-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gw-pcard-cat { font-size: 11.5px; color: var(--gw-moss); font-weight: 700; }
.gw-pcard-body h3 { font-size: 16px; }
.gw-pcard-body p { font-size: 13px; color: var(--gw-mute); margin: 0; }
.gw-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.gw-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  padding: 3px 9px;
  background: var(--gw-moss-soft);
  color: var(--gw-moss-deep);
  border-radius: 999px;
  font-weight: 700;
}
.gw-pcard-foot { margin-top: auto; display: grid; grid-template-columns: 1fr auto; gap: 8px; }

/* zigzag case rows */
.gw-zig { display: grid; gap: 26px; counter-reset: gwzig; }
.gw-zigrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--gw-line);
}
.gw-zigrow:nth-child(even) .gw-zigrow-media { order: 2; }
.gw-zigrow-media { min-height: 260px; overflow: hidden; background: var(--gw-sand-deep); }
.gw-zigrow-media img { width: 100%; height: 100%; object-fit: cover; }
.gw-zigrow-body { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.gw-zigrow-body h3 { font-size: 22px; }
.gw-zigrow-body p { color: var(--gw-ink-soft); font-size: 14px; margin: 0; }
.gw-zigrow { counter-increment: gwzig; }
.gw-zigrow-no { font-family: var(--gw-font-mono); font-size: 12px; color: var(--gw-mute); letter-spacing: .18em; }
.gw-zigrow-no::after { content: " " counter(gwzig, decimal-leading-zero); }
.gw-zigrow-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--gw-moss); font-size: 13.5px; }

/* quality checkerboard */
.gw-checkgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .16); }
.gw-checkgrid > div { background: var(--gw-moss-deep); padding: 28px 30px; }
.gw-checkgrid i { font-size: 24px; color: var(--gw-safety); }
.gw-checkgrid h3 { font-size: 18px; margin: 12px 0 8px; }
.gw-checkgrid p { margin: 0; font-size: 13.5px; color: rgba(238, 246, 241, .82); }

/* certificate ribbon */
.gw-ribbon { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.gw-ribbon-item {
  flex: 0 0 190px;
  background: #fff;
  border: 1px solid var(--gw-line);
  padding: 14px;
  text-align: center;
}
.gw-ribbon-item img { width: 100%; height: 132px; object-fit: contain; background: var(--gw-sand); }
.gw-ribbon-item i { font-size: 34px; color: var(--gw-safety-deep); display: block; padding: 44px 0; background: var(--gw-sand); }
.gw-ribbon-item span { display: block; margin-top: 10px; font-size: 12.5px; font-weight: 700; }

/* faq (shared) */
.gw-faqcols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 26px; align-items: start; }
.gw-faq { display: grid; gap: 12px; }
.gw-faqitem { background: #fff; border: 1px solid var(--gw-line); border-left: 4px solid var(--gw-safety); }
.gw-faqitem summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 46px 16px 18px;
  font-weight: 700;
  font-size: 14.5px;
  position: relative;
  display: flex;
  gap: 10px;
}
.gw-faqitem summary::-webkit-details-marker { display: none; }
.gw-faqitem summary i { color: var(--gw-moss); }
.gw-faqlist { display: grid; gap: 12px; }
.gw-faqmark { position: absolute; right: 18px; top: 50%; width: 13px; height: 13px; margin-top: -6px; }
.gw-faqmark::before, .gw-faqmark::after { content: ""; position: absolute; background: var(--gw-ink); }
.gw-faqmark::before { left: 0; top: 5px; width: 13px; height: 2px; }
.gw-faqmark::after { left: 5px; top: 0; width: 2px; height: 13px; transition: transform .2s ease; }
.gw-faqitem[open] .gw-faqmark::after { transform: scaleY(0); }
.gw-faqbody { padding: 0 18px 18px; font-size: 13.5px; color: var(--gw-ink-soft); border-top: 1px dashed var(--gw-line); padding-top: 14px; }
.gw-faqbody p:last-child { margin-bottom: 0; }
.gw-faq-noresult { text-align: center; color: var(--gw-mute); padding: 26px 0; }

/* news list on home */
.gw-newsmini { border-top: 1px solid var(--gw-line); }
.gw-newsmini a {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--gw-line);
}
.gw-newsmini a:hover { background: #fff; }
.gw-newsmini time { font-family: var(--gw-font-mono); font-size: 12.5px; color: var(--gw-mute); }
.gw-newsmini h3 { font-size: 15.5px; }
.gw-newsmini p { margin: 3px 0 0; font-size: 12.5px; color: var(--gw-mute); }

/* home CTA */
.gw-homecta { background: var(--gw-moss-deep); color: #eef6f1; }
.gw-homecta-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px); gap: 44px; align-items: center; }
.gw-homecta h2 { font-size: 28px; margin: 12px 0 12px; }
.gw-homecta p { color: rgba(238, 246, 241, .84); margin: 0; }
.gw-inlineform { background: #fff; padding: 24px; color: var(--gw-ink); border-top: 5px solid var(--gw-safety); }
.gw-inlineform h3 { font-size: 17px; margin-bottom: 12px; }

/* forms */
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 12px; }
body.gw-theme input[type=text], body.gw-theme input[type=email], body.gw-theme input[type=tel], body.gw-theme textarea, body.gw-theme select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  font-size: 14px;
  font-family: inherit;
  background: var(--gw-sand);
  color: var(--gw-ink);
  outline: none;
}
body.gw-theme textarea { margin-bottom: 12px; resize: vertical; }
body.gw-theme input:focus, body.gw-theme textarea:focus { border-color: var(--gw-moss); background: #fff; box-shadow: 0 0 0 3px rgba(31, 107, 77, .12); }
.gw-formnote, .gw-homecta .gw-formnote { margin-top: 14px; font-size: 12px; color: var(--gw-mute); display: flex; gap: 8px; align-items: flex-start; }
.gw-formnote i { color: var(--gw-moss); }

/* ==========================================================================
   PRODUCT LIST : filter chip bar + card grid
   ========================================================================== */
.gw-filterbar { background: #fff; border: 1px solid var(--gw-line); padding: 18px 20px; margin-bottom: 28px; }
.gw-filterbar-row { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; }
.gw-filterbar-row + .gw-filterbar-row { border-top: 1px dashed var(--gw-line); }
.gw-filterbar-label {
  flex: 0 0 116px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gw-mute);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-top: 6px;
}
.gw-filterchips { display: flex; flex-wrap: wrap; gap: 8px; }
.gw-fchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--gw-sand);
}
.gw-fchip:hover { border-color: var(--gw-ink); }
.gw-fchip.on { background: var(--gw-ink); color: #fff; border-color: var(--gw-ink); }
.gw-fchip-sub { font-size: 12.5px; font-weight: 500; background: #fff; }
.gw-listmeta { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; font-size: 13px; color: var(--gw-mute); }
.gw-listnotice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--gw-moss-soft);
  border-left: 4px solid var(--gw-moss);
  padding: 14px 18px;
  font-size: 13.5px;
  margin-bottom: 24px;
}
.gw-listnotice i { color: var(--gw-moss); margin-top: 4px; }

/* ==========================================================================
   PRODUCT DETAIL : title band + info left / gallery right + anchor tabs
   ========================================================================== */
.gw-pdpband { background: var(--gw-sand-deep); border-bottom: 1px solid var(--gw-line); padding: 26px 0 28px; }
.gw-pdpband-in { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center; }
.gw-pdpband h1 { font-size: 32px; margin: 10px 0 0; }
.gw-pdpband .gw-pdp-cat { font-size: 12px; font-weight: 700; color: var(--gw-moss); display: inline-flex; gap: 7px; align-items: center; }

.gw-pdp { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: 44px; align-items: start; }
.gw-pdp-lead { font-size: 15px; color: var(--gw-ink-soft); }
.gw-pdp-assure { display: grid; gap: 10px; margin: 22px 0; }
.gw-pdp-assure div { display: flex; gap: 11px; align-items: center; background: #fff; border: 1px solid var(--gw-line); padding: 12px 15px; font-size: 13.5px; font-weight: 700; }
.gw-pdp-assure i { color: var(--gw-moss); }
.gw-pdp-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gw-pdp-share { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 12.5px; color: var(--gw-mute); }
.gw-pdp-share a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gw-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.gw-pdp-share a:hover { background: var(--gw-ink); color: #fff; border-color: var(--gw-ink); }

.gw-gallery { position: sticky; top: 20px; }
.gw-gallery-main { border: 1px solid var(--gw-line); background: #fff; padding: 14px; }
.gw-gallery-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.gw-gallery-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.gw-gallery-thumbs button { padding: 0; border: 1px solid var(--gw-line); background: #fff; cursor: pointer; overflow: hidden; }
.gw-gallery-thumbs button.active { border: 2px solid var(--gw-safety); }
.gw-gallery-thumbs img { aspect-ratio: 1; object-fit: cover; width: 100%; }

.gw-anchorbar { background: var(--gw-ink); position: sticky; top: 0; z-index: 40; }
.gw-anchorbar-in { display: flex; gap: 4px; overflow-x: auto; }
.gw-anchorbar a {
  padding: 14px 20px;
  color: rgba(244, 241, 232, .8);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.gw-anchorbar a:hover { color: #fff; border-bottom-color: var(--gw-safety); }

.gw-spectable { background: #fff; border: 1px solid var(--gw-line); font-size: 14px; }
.gw-spectable th, .gw-spectable td { padding: 13px 18px; border-bottom: 1px solid var(--gw-line-soft); text-align: left; vertical-align: top; }
.gw-spectable th { width: 32%; background: var(--gw-sand); font-weight: 700; color: var(--gw-ink-soft); }
.gw-spectable tr:last-child th, .gw-spectable tr:last-child td { border-bottom: 0; }

.gw-howto { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gw-howto li { list-style: none; background: #fff; border: 1px solid var(--gw-line); padding: 18px; }
.gw-howto li b { font-family: var(--gw-font-mono); color: var(--gw-moss); font-size: 13px; }
.gw-howto li h3 { font-size: 15px; margin: 8px 0 6px; }
.gw-howto li p { font-size: 13px; color: var(--gw-mute); margin: 0; }

.gw-relatedrow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gw-relatedrow a { background: #fff; border: 1px solid var(--gw-line); display: block; }
.gw-relatedrow img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gw-relatedrow span { display: block; padding: 12px 14px; font-size: 13.5px; font-weight: 700; }

.gw-pager { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.gw-pager-cell { background: #fff; border: 1px solid var(--gw-line); }
.gw-pager-next { text-align: right; }
.pager-link { display: block; padding: 16px 20px; font-size: 13.5px; font-weight: 700; }
.pager-empty { color: var(--gw-mute); font-weight: 500; }

/* ==========================================================================
   QUOTE LIST (product_inquiry)
   ========================================================================== */
.gw-quotesteps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--gw-line); border: 1px solid var(--gw-line); margin-bottom: 24px; }
.gw-quotesteps span { background: #fff; padding: 14px 16px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.gw-quotesteps b {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gw-safety);
  color: var(--gw-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
}
.gw-quotetable { background: #fff; border: 1px solid var(--gw-line); font-size: 14px; }
.gw-quotetable th, .gw-quotetable td { padding: 14px 16px; border-bottom: 1px solid var(--gw-line-soft); text-align: left; vertical-align: middle; }
.gw-quotetable thead th { background: var(--gw-ink); color: #fff; font-size: 13px; }
.gw-qimg { width: 108px; }
.gw-qimg img { width: 92px; height: 70px; object-fit: cover; border: 1px solid var(--gw-line); }
.gw-qtitle { font-weight: 700; }
.gw-qty { display: inline-flex; align-items: stretch; border: 1px solid var(--gw-line); border-radius: var(--gw-radius); overflow: hidden; background: #fff; }
body.gw-theme .gw-qty a { width: 36px; display: inline-flex; align-items: center; justify-content: center; background: var(--gw-sand); font-weight: 700; font-size: 16px; user-select: none; }
body.gw-theme .gw-qty a:hover { background: var(--gw-ink); color: #fff; }
body.gw-theme .gw-qty input[type=text] { width: 56px; border: 0; border-left: 1px solid var(--gw-line); border-right: 1px solid var(--gw-line); border-radius: 0; text-align: center; padding: 9px 4px; background: #fff; font-weight: 700; }
body.gw-theme .gw-qty input[type=text]:focus { box-shadow: none; border-color: var(--gw-line); }
.gw-qremove { color: var(--gw-alert); font-size: 17px; }
.gw-quotehint { margin: 16px 0 0; font-size: 13px; color: var(--gw-mute); }
.gw-quoteform { background: #fff; border: 1px solid var(--gw-line); border-top: 5px solid var(--gw-safety); padding: 28px; max-width: 760px; margin: 34px auto 0; }
.gw-quoteform h2 { font-size: 20px; margin-bottom: 8px; }

.gw-empty { background: #fff; border: 1px dashed var(--gw-line); padding: 60px 24px; text-align: center; }
.gw-empty i { font-size: 40px; color: var(--gw-line); }
.gw-empty h2 { font-size: 20px; margin: 16px 0 8px; }
.gw-empty p { color: var(--gw-mute); }

/* ==========================================================================
   ABOUT : timeline + numbers band + promise rows
   ========================================================================== */
.gw-timeline { position: relative; padding-left: 0; }
.gw-timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--gw-line); }
.gw-tlitem { position: relative; width: 50%; padding: 0 40px 34px 0; }
.gw-tlitem:nth-child(even) { margin-left: 50%; padding: 0 0 34px 40px; }
.gw-tlitem::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gw-safety);
  border: 3px solid var(--gw-sand);
}
.gw-tlitem:nth-child(even)::after { right: auto; left: -7px; }
.gw-tlitem time { font-family: var(--gw-font-mono); font-size: 13px; color: var(--gw-moss); font-weight: 700; }
.gw-tlitem h3 { font-size: 17px; margin: 6px 0 6px; }
.gw-tlitem p { font-size: 13.5px; color: var(--gw-ink-soft); margin: 0; }

.gw-numberband { background: var(--gw-ink); color: #fff; }
.gw-numberband-in { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .16); }
.gw-numberband-in > div { background: var(--gw-ink); padding: 28px 22px; text-align: center; }
.gw-numberband dt { font-size: 34px; font-weight: 700; font-family: var(--gw-font-mono); color: var(--gw-safety); }
.gw-numberband dt small { font-size: 14px; color: #fff; margin-left: 4px; }
.gw-numberband dd { margin: 6px 0 0; font-size: 13px; color: rgba(255, 255, 255, .8); }

.gw-promiserow { display: grid; gap: 16px; }
.gw-promise {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  background: #fff;
  border: 1px solid var(--gw-line);
  padding: 24px 26px;
  align-items: start;
}
.gw-promise-icon {
  width: 84px;
  height: 84px;
  background: var(--gw-moss-soft);
  color: var(--gw-moss-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.gw-promise h3 { font-size: 18px; margin-bottom: 8px; }
.gw-promise p { margin: 0; color: var(--gw-ink-soft); font-size: 14px; }

.gw-paper { background: #fff; border: 1px solid var(--gw-line); padding: 34px 38px; }

/* ==========================================================================
   MANUFACTURING : alternating stepper + inspection checklist
   ========================================================================== */
.gw-flow { counter-reset: gwflow; }
.gw-flowitem {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px dashed var(--gw-line);
  align-items: start;
}
.gw-flowitem-no {
  font-family: var(--gw-font-mono);
  font-size: 34px;
  font-weight: 700;
  color: var(--gw-line);
  line-height: 1;
}
.gw-flowitem h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.gw-flowitem h3 i { color: var(--gw-moss); font-size: 16px; }
.gw-flowitem p { margin: 8px 0 0; color: var(--gw-ink-soft); font-size: 14px; }
.gw-flowitem-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

.gw-checklist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gw-checklist > * {
  list-style: none;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gw-line);
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--gw-ink);
}
.gw-checklist > * > i { color: var(--gw-moss); margin-top: 4px; }
.gw-checklist h3 { font-size: 15px; margin: 0 0 4px; }
.gw-checklist p { margin: 0; color: var(--gw-mute); font-size: 12.5px; }
.gw-checklist strong { display: block; }
.gw-checklist span { color: var(--gw-mute); font-size: 12.5px; }

/* page head : ink variant (manufacturing) */
.gw-pagehead-ink { background: var(--gw-ink); color: #f4f1e8; }
.gw-pagehead-ink h1 { color: #fff; }
.gw-pagehead-ink p { color: rgba(244, 241, 232, .78); }
.gw-pagehead-ink .gw-kicker { color: var(--gw-safety); }
.gw-pagehead-ink .gw-crumb, .gw-pagehead-ink .gw-crumb a { color: rgba(244, 241, 232, .7); }
.gw-pagehead-ink .gw-crumb a:hover { color: var(--gw-safety); }

/* section head : invert (on ink / moss backgrounds) */
.gw-sectionhead-invert h2, .gw-sectionhead-invert .gw-h2 { color: #fff; }
.gw-sectionhead-invert .gw-kicker { color: var(--gw-safety); }
.gw-sectionhead-invert .gw-lead, .gw-sectionhead-invert p { color: rgba(238, 246, 241, .82); }

/* process flow rail (manufacturing) */
.gw-flowrail { display: grid; gap: 0; margin: 0; padding: 0; border-left: 3px solid var(--gw-line); }
.gw-flowrail > li {
  list-style: none;
  position: relative;
  padding: 0 0 30px 34px;
}
.gw-flowrail > li:last-child { padding-bottom: 0; }
.gw-flowrail-no {
  position: absolute;
  left: -22px;
  top: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gw-ink);
  color: var(--gw-safety);
  font-family: var(--gw-font-mono);
  font-size: 13px;
  font-weight: 700;
  border: 3px solid var(--gw-safety);
}
.gw-flowrail h3 { font-size: 19px; margin: 8px 0 6px; }
.gw-flowrail p { margin: 0; color: var(--gw-ink-soft); font-size: 14px; max-width: 760px; }
.gw-flowrail em {
  display: inline-block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--gw-font-mono);
  font-size: 12px;
  color: var(--gw-moss-deep);
  background: var(--gw-moss-soft);
  padding: 5px 10px;
}

/* ==========================================================================
   SOLUTIONS list : indexed alternating rows / detail sand hero
   ========================================================================== */
.gw-solhero { background: var(--gw-sand-deep); border-bottom: 1px solid var(--gw-line); padding: 30px 0 40px; position: relative; }
.gw-solhero::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 4px; background: var(--gw-stripe); }
.gw-solhero-in { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: end; }
.gw-solhero h1 { font-size: 34px; margin: 12px 0 12px; }
.gw-solhero p { margin: 0; color: var(--gw-ink-soft); max-width: 720px; }

.gw-soldetail { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
.gw-solside { position: sticky; top: 20px; display: grid; gap: 16px; }
.gw-panel { background: #fff; border: 1px solid var(--gw-line); padding: 22px; }
.gw-panel h2, .gw-panel h3 { font-size: 16px; display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.gw-panel h2 i, .gw-panel h3 i { color: var(--gw-moss); }
.gw-panel p { font-size: 13.5px; color: var(--gw-ink-soft); }
.gw-panel-accent { border-top: 5px solid var(--gw-safety); }
.gw-panel-dl { font-size: 13px; }
.gw-panel-dl div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--gw-line); }
.gw-panel-dl dt { color: var(--gw-mute); }
.gw-panel-dl dd { margin: 0; font-weight: 700; text-align: right; }
.gw-panel-links { display: grid; gap: 8px; }
.gw-panel-links a { font-size: 13.5px; display: flex; gap: 8px; align-items: baseline; }
.gw-panel-links a i { color: var(--gw-safety-deep); font-size: 11px; }

.gw-pilllinks { display: flex; flex-wrap: wrap; gap: 10px; }
.gw-pilllinks a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.gw-pilllinks a:hover { border-color: var(--gw-ink); }

.gw-caselist { display: grid; gap: 18px; counter-reset: gwcase; }
.gw-case {
  display: grid;
  grid-template-columns: 84px minmax(0, 320px) minmax(0, 1fr);
  gap: 24px;
  background: #fff;
  border: 1px solid var(--gw-line);
  padding: 20px;
  align-items: center;
}
.gw-case { counter-increment: gwcase; }
.gw-case-no { font-family: var(--gw-font-mono); font-size: 28px; color: var(--gw-line); font-weight: 700; text-align: center; }
.gw-case-no::before { content: counter(gwcase, decimal-leading-zero); }
.gw-case-media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--gw-sand-deep); }
.gw-case-media img { width: 100%; height: 100%; object-fit: cover; }
.gw-case-body h2 { font-size: 20px; margin-bottom: 8px; }
.gw-case-body p { font-size: 13.5px; color: var(--gw-ink-soft); margin: 0 0 12px; }

/* ==========================================================================
   CERTIFICATES : record table + thumb strip
   ========================================================================== */
.gw-certtable { background: #fff; border: 1px solid var(--gw-line); font-size: 14px; }
.gw-certtable th, .gw-certtable td { padding: 15px 18px; border-bottom: 1px solid var(--gw-line-soft); text-align: left; vertical-align: middle; }
.gw-certtable thead th { background: var(--gw-ink); color: #fff; font-size: 12.5px; letter-spacing: .06em; }
.gw-certtable tbody tr:hover { background: var(--gw-sand); }
.gw-certtable-thumb { width: 96px; }
.gw-certtable-thumb img { width: 82px; height: 60px; object-fit: cover; border: 1px solid var(--gw-line); }
.gw-certtable-thumb .gw-noimg { width: 82px; height: 60px; min-height: 0; font-size: 17px; }
.gw-certtable time { font-family: var(--gw-font-mono); font-size: 12.5px; color: var(--gw-mute); }
.gw-certnote { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 26px; }
.gw-certnote div { background: var(--gw-moss-soft); padding: 18px 20px; border-left: 4px solid var(--gw-moss); }
.gw-certnote strong { display: block; font-size: 14.5px; }
.gw-certnote span { font-size: 12.5px; color: var(--gw-ink-soft); }

/* ==========================================================================
   CONTACT : form left + info right + channel strip bottom
   ========================================================================== */
.gw-contact { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 36px; align-items: start; }
.gw-formcard { background: #fff; border: 1px solid var(--gw-line); border-top: 6px solid var(--gw-safety); padding: 30px 32px; }
.gw-formcard h2 { font-size: 22px; margin-bottom: 8px; }
.gw-formcard > p { color: var(--gw-mute); font-size: 13.5px; }
.gw-officecard { background: var(--gw-ink); color: #f4f1e8; padding: 26px 28px; }
.gw-officecard h3 { font-size: 17px; margin-bottom: 14px; color: #fff; }
.gw-officecard table { font-size: 13.5px; }
.gw-officecard th, .gw-officecard td { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); text-align: left; vertical-align: top; }
.gw-officecard th { width: 34%; color: var(--gw-safety); font-weight: 700; }
.gw-officecard a { color: #f4f1e8; }
.gw-officecard a:hover { color: var(--gw-safety); }
.gw-tips { font-size: 13.5px; }
.gw-tips li { list-style: none; padding: 9px 0 9px 26px; border-bottom: 1px dashed var(--gw-line); position: relative; }
.gw-tips li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--gw-moss); font-size: 12px; }
.gw-channelstrip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--gw-line); border: 1px solid var(--gw-line); }
.gw-channelstrip > * { background: #fff; padding: 22px 20px; display: flex; gap: 13px; align-items: center; }
.gw-channelstrip i { font-size: 22px; color: var(--gw-moss); }
.gw-channelstrip strong { display: block; font-size: 14px; }
.gw-channelstrip span { font-size: 12.5px; color: var(--gw-mute); word-break: break-all; }

/* ==========================================================================
   FAQ page : anchor chips + grouped accordion
   ========================================================================== */
.gw-faqtools { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--gw-line); padding: 18px 20px; margin-bottom: 26px; }
.gw-faqtools input { max-width: 420px; }
.gw-faqcount { font-size: 12.5px; color: var(--gw-mute); font-family: var(--gw-font-mono); }

/* ==========================================================================
   CATALOG : contents checklist + inline request form
   ========================================================================== */
.gw-catalog { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 40px; align-items: start; }
.gw-catalog-toc { counter-reset: gwtoc; display: grid; gap: 12px; }
.gw-catalog-toc li {
  list-style: none;
  counter-increment: gwtoc;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 4px;
  background: #fff;
  border: 1px solid var(--gw-line);
  padding: 16px 18px;
  align-items: center;
}
.gw-catalog-toc li::before {
  content: counter(gwtoc, decimal-leading-zero);
  font-family: var(--gw-font-mono);
  font-size: 15px;
  color: var(--gw-moss);
  font-weight: 700;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}
.gw-catalog-toc strong { display: block; font-size: 14.5px; grid-column: 2; grid-row: 1; }
.gw-catalog-toc span { font-size: 12.5px; color: var(--gw-mute); grid-column: 2; grid-row: 2; }
.gw-catalog-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: var(--gw-mute); margin-top: 18px; }
.gw-catalog-meta span { display: inline-flex; gap: 7px; align-items: center; }

/* ==========================================================================
   ARTICLES : magazine list + single narrow reading view
   ========================================================================== */
.gw-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  background: #fff;
  border: 1px solid var(--gw-line);
  margin-bottom: 28px;
}
.gw-featured-media { min-height: 300px; overflow: hidden; background: var(--gw-sand-deep); }
.gw-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.gw-featured-body { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.gw-featured-body h2 { font-size: 26px; }
.gw-featured-body p { color: var(--gw-ink-soft); margin: 0; }
.gw-artmeta { display: flex; gap: 16px; align-items: center; font-size: 12.5px; color: var(--gw-mute); flex-wrap: wrap; }
.gw-artmeta time { font-family: var(--gw-font-mono); }
.gw-artmeta em { font-style: normal; color: var(--gw-moss); font-weight: 700; }

.gw-artgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.gw-artcard { display: grid; grid-template-columns: 190px minmax(0, 1fr); background: #fff; border: 1px solid var(--gw-line); }
.gw-artcard-media { overflow: hidden; background: var(--gw-sand-deep); }
.gw-artcard-media img { width: 100%; height: 100%; object-fit: cover; }
.gw-artcard-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 9px; }
.gw-artcard-body h2, .gw-artcard-body h3 { font-size: 16.5px; }
.gw-artcard-body p { font-size: 13px; color: var(--gw-mute); margin: 0; }

.gw-progress { position: fixed; left: 0; top: 0; height: 4px; width: 0; background: var(--gw-safety); z-index: 300; }
.gw-reading { background: #fff; border: 1px solid var(--gw-line); padding: 40px 46px; }
.gw-reading h1 { font-size: 32px; margin: 12px 0 16px; }
.gw-artcover { margin: 24px 0; border: 1px solid var(--gw-line); }
.gw-arttags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--gw-line); }
.gw-arttags-label { font-size: 12.5px; color: var(--gw-mute); font-weight: 700; }
.gw-arttag { font-size: 12.5px; padding: 5px 12px; background: var(--gw-sand-deep); border-radius: 999px; }
.gw-arttag:hover { background: var(--gw-safety); }
.gw-share { display: inline-flex; align-items: center; gap: 8px; }
.gw-share a { width: 32px; height: 32px; border: 1px solid var(--gw-line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.gw-share a:hover { background: var(--gw-ink); color: #fff; }

/* detail content typography */
.detail-content { font-size: 15px; line-height: 1.95; color: var(--gw-ink-soft); word-break: break-word; }
.detail-content h2 { font-size: 22px; color: var(--gw-ink); margin: 34px 0 14px; padding-left: 13px; border-left: 5px solid var(--gw-safety); }
.detail-content h3 { font-size: 18px; color: var(--gw-ink); margin: 26px 0 12px; }
.detail-content img { margin: 18px 0; border: 1px solid var(--gw-line); }
.detail-content ul, .detail-content ol { margin: 0 0 18px; padding-left: 22px; }
.detail-content li { margin-bottom: 7px; }
.detail-content blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--gw-moss-soft);
  border-left: 4px solid var(--gw-moss);
  color: var(--gw-ink);
}
.detail-content a { color: var(--gw-moss); text-decoration: underline; }
.detail-content table { font-size: 14px; margin: 20px 0; border: 1px solid var(--gw-line); background: #fff; }
.detail-content th, .detail-content td { border: 1px solid var(--gw-line-soft); padding: 11px 14px; text-align: left; }
.detail-content th { background: var(--gw-sand); }
.gw-tablewrap { overflow-x: auto; }

/* ==========================================================================
   SEARCH / TAGS
   ========================================================================== */
.gw-searchagain { display: flex; gap: 10px; margin-top: 18px; max-width: 620px; }
.gw-searchagain input { background: #fff; }
.gw-searchagain button { flex: 0 0 auto; border: 2px solid var(--gw-ink); background: var(--gw-ink); color: #fff; padding: 0 20px; font-weight: 700; cursor: pointer; border-radius: var(--gw-radius); }
.gw-resultlist { counter-reset: gwres; border-top: 2px solid var(--gw-ink); }
.gw-resultrow {
  counter-increment: gwres;
  display: grid;
  grid-template-columns: 52px 132px minmax(0, 1fr) 40px;
  gap: 20px;
  align-items: center;
  padding: 18px 6px;
  border-bottom: 1px solid var(--gw-line);
}
.gw-resultrow:hover { background: #fff; }
.gw-resultrow::before { content: counter(gwres, decimal-leading-zero); font-family: var(--gw-font-mono); color: var(--gw-mute); font-size: 13px; }
.gw-resultrow-media { width: 132px; height: 88px; overflow: hidden; border: 1px solid var(--gw-line); background: var(--gw-sand-deep); }
.gw-resultrow-media img { width: 100%; height: 100%; object-fit: cover; }
.gw-resultrow-body em { font-style: normal; font-size: 11.5px; color: var(--gw-moss); font-weight: 700; }
.gw-resultrow-body h2 { font-size: 17px; margin: 4px 0 6px; }
.gw-resultrow-body p { margin: 0; font-size: 13px; color: var(--gw-mute); }
.gw-resultrow-go { width: 40px; height: 40px; border: 1px solid var(--gw-line); display: inline-flex; align-items: center; justify-content: center; background: #fff; }

.gw-taggrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gw-tagcard { background: #fff; border: 1px solid var(--gw-line); padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.gw-tagcard time { font-family: var(--gw-font-mono); font-size: 12px; color: var(--gw-mute); }
.gw-tagcard em { font-style: normal; font-size: 11.5px; color: var(--gw-moss); font-weight: 700; }
.gw-tagcard h2 { font-size: 16.5px; }
.gw-tagcard p { font-size: 13px; color: var(--gw-mute); margin: 0; }

.gw-tagfilter { display: flex; align-items: center; gap: 10px; max-width: 460px; margin-top: 16px; background: #fff; border: 2px solid var(--gw-ink); padding: 0 14px; border-radius: var(--gw-radius); }
.gw-tagfilter input { border: 0; background: transparent; padding: 11px 0; }
.gw-tagfilter input:focus { box-shadow: none; background: transparent; }
.gw-hotchips { display: flex; flex-wrap: wrap; gap: 10px; }
body.gw-theme a.gw-hotchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gw-ink);
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--gw-radius);
}
body.gw-theme a.gw-hotchip:hover, body.gw-theme a.gw-hotchip.on { background: var(--gw-moss); color: #fff; border-color: var(--gw-moss); }
.gw-hotchip small { color: var(--gw-safety); font-family: var(--gw-font-mono); }
.gw-cloud { background: #fff; border: 1px solid var(--gw-line); padding: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.gw-cloudtag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--gw-sand); border: 1px solid var(--gw-line); border-radius: 999px; font-size: 13px; }
.gw-cloudtag:hover { background: var(--gw-safety); border-color: var(--gw-safety); }
.gw-cloudtag em { font-style: normal; font-family: var(--gw-font-mono); font-size: 11px; color: var(--gw-mute); }
.gw-cloud-empty { margin-top: 16px; font-size: 13px; color: var(--gw-mute); }
.gw-tagrank { counter-reset: gwtr; background: #fff; border: 1px solid var(--gw-line); }
.gw-tagrank a {
  counter-increment: gwtr;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto 30px;
  gap: 14px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px dashed var(--gw-line);
}
.gw-tagrank a:last-child { border-bottom: 0; }
.gw-tagrank a::before { content: counter(gwtr, decimal-leading-zero); font-family: var(--gw-font-mono); font-size: 13px; color: var(--gw-moss); font-weight: 700; }
.gw-tagrank a:hover { background: var(--gw-sand); }
.gw-tagrank strong { font-size: 15px; }
.gw-tagrank span { font-size: 12px; color: var(--gw-mute); font-family: var(--gw-font-mono); }
.gw-tagrank i { color: var(--gw-mute); }
.gw-tagfilter-hint { display: inline-block; margin-left: 12px; font-size: 12.5px; color: var(--gw-mute); font-family: var(--gw-font-mono); }

/* ==========================================================================
   LEGAL
   ========================================================================== */
.gw-legal { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 34px; align-items: start; }
.gw-legal-index { position: sticky; top: 20px; background: #fff; border: 1px solid var(--gw-line); padding: 20px; }
.gw-legal-index strong { display: block; font-size: 13px; margin-bottom: 12px; letter-spacing: .08em; font-family: var(--gw-font-mono); }
.gw-legal-index a { display: block; font-size: 13px; padding: 7px 0; border-bottom: 1px dashed var(--gw-line); color: var(--gw-ink-soft); }
.gw-legaldoc { background: #fff; border: 1px solid var(--gw-line); padding: 36px 40px; }
.gw-legaldoc-head { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 22px; margin-bottom: 24px; border-bottom: 2px solid var(--gw-line); }
.gw-legaldoc-head > i { font-size: 30px; color: var(--gw-moss); }
.gw-legaldoc-head h1 { font-size: 27px; margin: 8px 0 8px; }
.gw-legaldoc-head p { margin: 0; color: var(--gw-mute); font-size: 13.5px; }
.gw-legaldoc-body { padding-top: 4px; }
.gw-legaldoc-body > :first-child { margin-top: 0; }
.gw-legalsummary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 26px; }
.gw-legalsummary div { background: var(--gw-sand); border: 1px solid var(--gw-line); padding: 14px 16px; font-size: 12.5px; }
.gw-legalsummary strong { display: block; font-size: 13.5px; margin-bottom: 4px; }

/* ==========================================================================
   BANDS / CTA / pagination / utilities
   ========================================================================== */
.gw-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--gw-ink);
  color: #fff;
  padding: 30px 34px;
  position: relative;
  overflow: hidden;
}
.gw-band::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: var(--gw-stripe); }
.gw-band h2 { font-size: 21px; color: #fff; }
.gw-band p { margin: 6px 0 0; font-size: 13.5px; color: rgba(255, 255, 255, .78); }
.gw-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 40px; }
.pagination span, .pagination a { display: inline-flex; }
.pagination a, .pagination .current, .pagination b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--gw-line);
  background: #fff;
  font-size: 13.5px;
  font-weight: 700;
}
.pagination a:hover { border-color: var(--gw-ink); }
.pagination .current, .pagination b { background: var(--gw-ink); color: #fff; border-color: var(--gw-ink); }
body.gw-theme .pagination .active a { background: var(--gw-ink); color: #fff; border-color: var(--gw-ink); }

/* modal / toast / rails */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 29, 26, .7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 260;
  overflow-y: auto;
}
.modal-overlay.on { display: flex; }
.modal-box { background: #fff; width: 100%; max-width: 640px; padding: 32px 34px; position: relative; border-top: 6px solid var(--gw-safety); }
.modal-box h3 { font-size: 22px; margin-bottom: 8px; }
.modal-desc { color: var(--gw-mute); font-size: 13.5px; }
.modal-close { position: absolute; right: 16px; top: 14px; cursor: pointer; font-size: 20px; color: var(--gw-mute); }
.modal-close:hover { color: var(--gw-alert); }

.success-overlay { position: fixed; inset: 0; background: rgba(22, 29, 26, .74); display: flex; align-items: center; justify-content: center; z-index: 280; padding: 24px; }
.success-box { background: #fff; padding: 40px 36px; text-align: center; max-width: 440px; border-top: 6px solid var(--gw-moss); }
.success-icon { font-size: 46px; color: var(--gw-moss); }
.success-box h3 { font-size: 21px; margin: 14px 0 8px; }
.success-box p { color: var(--gw-mute); font-size: 13.5px; }

.toast-notify {
  position: fixed;
  left: 50%;
  bottom: 32px;
  background: var(--gw-ink);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13.5px;
  z-index: 290;
  transform: translate(-50%, 14px);
  opacity: 0;
  transition: all .3s ease;
  border-left: 4px solid var(--gw-safety);
}
.toast-notify.show { transform: translate(-50%, 0); opacity: 1; }
.toast-notify a { color: var(--gw-safety); font-weight: 700; }

.gw-rail { position: fixed; right: 0; top: 46%; display: grid; gap: 1px; z-index: 120; }
.gw-rail a {
  width: 50px;
  height: 50px;
  background: var(--gw-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.gw-rail a:hover { background: var(--gw-safety); color: var(--gw-ink); }
.gw-rail-wa { background: #25d366 !important; }
.gw-rail-wa:hover { background: #1eb95a !important; color: #fff !important; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  background: var(--gw-safety);
  color: var(--gw-ink);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  border: 2px solid var(--gw-ink);
}
.back-to-top.show { display: inline-flex; }

.mobile-inquiry-bar { display: none; }
.mib-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; font-size: 13.5px; font-weight: 700; }
.mib-quote { background: var(--gw-safety); color: var(--gw-ink); }
.mib-wa { background: #25d366; color: #fff; }

/* cookie bar */
.gw-cookie { position: fixed; left: 0; right: 0; bottom: 0; background: var(--gw-ink); color: #f4f1e8; z-index: 250; border-top: 4px solid var(--gw-safety); }
.gw-cookie-inner { max-width: 1240px; margin: 0 auto; padding: 16px 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; }
.gw-cookie-copy { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; }
.gw-cookie-copy i { color: var(--gw-safety); font-size: 18px; margin-top: 3px; }
.gw-cookie-copy p { margin: 0; }
.gw-cookie-copy a { color: var(--gw-safety); text-decoration: underline; }
.gw-cookie-actions { display: flex; gap: 10px; }
.gw-cookie-actions button { padding: 10px 18px; font-size: 13px; font-weight: 700; border: 2px solid var(--gw-safety); cursor: pointer; background: var(--gw-safety); color: var(--gw-ink); }
.gw-cookie-accept { background: var(--gw-safety); color: var(--gw-ink); border-color: var(--gw-safety); }
.gw-cookie-decline { background: transparent !important; color: #f4f1e8 !important; border-color: rgba(255, 255, 255, .4) !important; }

/* ==========================================================================
   FOOTER : sample band + sitemap matrix + company dl + base
   ========================================================================== */
.gw-sampleband { background: var(--gw-safety); color: var(--gw-ink); padding: 34px 0; }
.gw-sampleband-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 34px; align-items: center; }
.gw-sampleband h2 { font-size: 25px; display: flex; align-items: center; gap: 12px; }
.gw-sampleband p { margin: 8px 0 0; font-size: 14px; }
.gw-sampleband-form { background: var(--gw-ink); padding: 20px 22px; }
.gw-sampleband-form strong { color: #fff; display: flex; align-items: center; gap: 9px; font-size: 14.5px; margin-bottom: 12px; }
.gw-sampleband-form strong i { color: var(--gw-safety); }
.gw-sampleband-form form { display: flex; gap: 8px; }
.gw-sampleband-form input { background: #fff; border-color: var(--gw-ink); }
.gw-sampleband-form button { flex: 0 0 auto; padding: 0 20px; background: var(--gw-safety); color: var(--gw-ink); border: 0; font-weight: 700; cursor: pointer; border-radius: var(--gw-radius); }

.gw-foot { background: var(--gw-ink); color: #cfd6d2; font-size: 13.5px; }
.gw-foot-sitemap { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; padding: 48px 24px 34px; }
.gw-foot-col > span {
  display: block;
  font-family: var(--gw-font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gw-safety);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.gw-foot-col nav { display: grid; gap: 8px; }
.gw-foot-col nav a { color: #cfd6d2; font-size: 13px; }
.gw-foot-col nav a:hover { color: var(--gw-safety); }
.gw-foot-company { border-top: 1px solid rgba(255, 255, 255, .14); padding: 28px 24px; display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: 34px; align-items: start; }
.gw-foot-brand img { max-height: 48px; width: auto; margin-bottom: 14px; }
.gw-foot-brand p { font-size: 12.5px; color: #9fa9a4; margin: 0; }
.gw-foot-dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 30px; }
.gw-foot-dl div { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 12px; padding-bottom: 9px; border-bottom: 1px dashed rgba(255, 255, 255, .14); }
.gw-foot-dl dt { color: var(--gw-safety); font-size: 12px; font-weight: 700; }
.gw-foot-dl dd { margin: 0; font-size: 13px; }
.gw-foot-dl a { color: #cfd6d2; }
.gw-foot-dl a:hover { color: var(--gw-safety); }
.gw-foot-base { border-top: 1px solid rgba(255, 255, 255, .14); }
.gw-foot-base-in { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 18px 24px; font-size: 12px; color: #9fa9a4; }
.gw-foot-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.gw-foot-legal a { color: #9fa9a4; }
.gw-foot-legal a:hover { color: var(--gw-safety); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .gw-cardgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gw-hero h1 { font-size: 40px; }
  .gw-flyout { min-width: 520px; }
}

@media (max-width: 1024px) {
  .gw-head-top { grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; }
  .gw-head-search { display: none; }
  .gw-navbar { display: none; }
  .gw-burger { display: flex; flex: 0 0 42px; width: 42px; height: 40px; padding: 0 10px; }
  .gw-head-utils .gw-util-hide { display: none; }
  .gw-head-utils { gap: 8px; }
  .gw-head-utils .gw-btn { padding: 8px 12px; font-size: 12px; gap: 6px; }
  .gw-hero-grid { grid-template-columns: minmax(0, 1fr); padding: 52px 24px 62px; }
  .gw-pdp { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .gw-gallery { position: static; order: -1; }
  .gw-soldetail, .gw-contact, .gw-catalog, .gw-legal { grid-template-columns: minmax(0, 1fr); }
  .gw-solside, .gw-legal-index { position: static; }
  .gw-numberband-in, .gw-uspstrip-in, .gw-channelstrip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gw-checklist, .gw-certnote, .gw-legalsummary, .gw-taggrid, .gw-steprow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gw-howto, .gw-relatedrow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gw-homecta-in, .gw-sampleband-in, .gw-sectionhead-split, .gw-pdpband-in, .gw-solhero-in { grid-template-columns: minmax(0, 1fr); }
  .gw-foot-sitemap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gw-foot-company { grid-template-columns: minmax(0, 1fr); }
  .gw-case { grid-template-columns: 56px minmax(0, 240px) minmax(0, 1fr); gap: 18px; }
  .gw-featured, .gw-artcard { grid-template-columns: minmax(0, 1fr); }
  .gw-featured-media, .gw-artcard-media { min-height: 220px; max-height: 260px; }
  .gw-timeline::before { left: 7px; }
  .gw-tlitem, .gw-tlitem:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 30px 34px; }
  .gw-tlitem::after, .gw-tlitem:nth-child(even)::after { left: 0; right: auto; }
  .gw-reading { padding: 30px 26px; }
  .gw-paper { padding: 26px 24px; }
}

@media (max-width: 860px) {
  .gw-sec { padding: 52px 0; }
  .gw-sec-tight { padding: 40px 0; }
  .gw-hero h1 { font-size: 32px; }
  .gw-h2 { font-size: 24px; }
  .gw-pagehead h1, .gw-pdpband h1, .gw-solhero h1, .gw-reading h1 { font-size: 25px; }
  .gw-cardgrid, .gw-cardgrid-3, .gw-faqcols, .gw-artgrid, .gw-checkgrid, .gw-zigrow { grid-template-columns: minmax(0, 1fr); }
  .gw-zigrow:nth-child(even) .gw-zigrow-media { order: 0; }
  .gw-zigrow-media { min-height: 200px; }
  .gw-zigrow-body { padding: 24px 22px; }
  .gw-catrow { grid-template-columns: 46px minmax(0, 1fr) 38px; }
  .gw-catrow-thumb { display: none; }
  .gw-resultrow { grid-template-columns: 40px minmax(0, 1fr) 34px; }
  .gw-resultrow-media { display: none; }
  .gw-case { grid-template-columns: minmax(0, 1fr); }
  .gw-case-no { text-align: left; }
  .gw-newsmini a { grid-template-columns: minmax(0, 1fr) 20px; }
  .gw-newsmini time { display: block; grid-column: 1 / -1; }
  .gw-newsmini a > div { grid-column: 1; min-width: 0; }
  .gw-newsmini a > i { grid-column: 2; grid-row: 2; align-self: center; }
  .gw-picker-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gw-picker-tabs button:nth-child(2) { border-right: 0; }
  .gw-hero-facts { grid-template-columns: minmax(0, 1fr); }
  .gw-quotesteps, .gw-steprow, .gw-checklist, .gw-certnote, .gw-legalsummary, .gw-taggrid, .gw-howto, .gw-relatedrow, .gw-uspstrip-in, .gw-numberband-in, .gw-channelstrip, .gw-foot-dl { grid-template-columns: minmax(0, 1fr); }
  .gw-uspstrip-in > div { border-right: 0; border-bottom: 2px dashed rgba(22, 29, 26, .25); }
  .gw-uspstrip-in > div:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .gw-pdp-actions, .gw-pager, .gw-band, .gw-faqtools, .gw-cookie-inner { grid-template-columns: minmax(0, 1fr); }
  .gw-band, .gw-pdpband-in { display: block; }
  .gw-band-actions { margin-top: 18px; }
  .gw-promise { grid-template-columns: minmax(0, 1fr); }
  .gw-promise-icon { width: 62px; height: 62px; font-size: 24px; }
  .gw-flowitem { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .gw-flowitem-no { font-size: 26px; }
  .gw-quotetable thead { display: none; }
  .gw-quotetable, .gw-quotetable tbody { display: block; width: 100%; }
  .gw-quotetable tr { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; gap: 10px 14px; align-items: center; border-bottom: 2px solid var(--gw-line); padding: 14px; }
  .gw-quotetable tr:last-child { border-bottom: 0; }
  .gw-quotetable td { display: block; border: 0; padding: 0; }
  .gw-quotetable td.gw-qimg { grid-row: 1 / span 2; grid-column: 1; width: auto; align-self: start; }
  .gw-qimg img { width: 96px; height: 72px; }
  .gw-quotetable td.gw-qtitle { grid-row: 1; grid-column: 2 / span 2; font-size: 13.5px; line-height: 1.5; }
  .gw-quotetable td:nth-child(3) { grid-row: 2; grid-column: 2; }
  .gw-quotetable td:last-child { grid-row: 2; grid-column: 3; justify-self: end; }
  body.gw-theme .gw-qremove { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gw-line); border-radius: var(--gw-radius); background: #fff; }
  .gw-legaldoc, .gw-formcard { padding: 24px 22px; }
  .gw-spectable th { width: 42%; }
  .gw-rail { display: none; }
  .back-to-top { bottom: 76px; right: 14px; }
  .mobile-inquiry-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 130; }
  body.gw-theme { padding-bottom: 52px; }
  .toast-notify { left: 50%; right: auto; width: calc(100% - 24px); max-width: 420px; bottom: 116px; }
  .gw-notice-meta { display: none; }
  .gw-brand img { max-height: 42px; }
  .gw-brand-tag { display: none; }
  .gw-head-utils .gw-btn { padding: 7px 10px; font-size: 11.5px; }
  .gw-btn-lg { padding: 12px 18px; font-size: 14px; }
}

/* anchor color overrides (body.gw-theme a sets color:inherit, which has
   higher specificity than the component rules above) */
body.gw-theme .gw-btn, body.gw-theme .gw-btn:hover { color: #fff; }
body.gw-theme .gw-btn-safety, body.gw-theme .gw-btn-safety:hover { color: var(--gw-ink); }
body.gw-theme .gw-btn-outline { color: var(--gw-ink); }
body.gw-theme .gw-btn-outline:hover { color: #fff; }
body.gw-theme .gw-btn-ghost { color: #fff; }
body.gw-theme .gw-btn-ghost:hover { color: var(--gw-ink); }
body.gw-theme .gw-rail a { color: #fff; }
body.gw-theme .gw-rail a:hover { background: var(--gw-safety); color: var(--gw-ink); }
body.gw-theme .gw-rail a.gw-rail-wa { color: #fff; }
body.gw-theme .gw-rail a.gw-rail-wa:hover { color: #fff; }
body.gw-theme .back-to-top { color: var(--gw-ink); }
body.gw-theme .mib-quote { color: var(--gw-ink); }
body.gw-theme .mib-wa { color: #fff; }
