/* ==========================================================================
   Bunker Family Store, LLC — bunkerfamilystore.com
   Shared stylesheet
   ========================================================================== */

/* ---------- Self-hosted Inter (no third-party font CDN) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/inter-latin-700-normal.woff2") format("woff2");
}

:root {
  /* Core palette */
  --ink:        #0E1A2B;
  --ink-2:      #16283F;
  --steel:      #1F3B5C;
  --steel-soft: #E8EDF4;
  --accent:     #B4741C;
  --accent-hi:  #D18E2C;
  --accent-soft:#FBF3E6;

  --paper:      #FFFFFF;
  --paper-2:    #F6F8FA;
  --paper-3:    #EEF1F6;
  --line:       #D9E0EA;
  --line-soft:  #E7ECF3;

  --body:       #3B4A5C;
  --body-2:     #617082;
  --ok:         #1D7A4C;
  --ok-soft:    #E7F5ED;

  /* Type */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Layout */
  --wrap: 1140px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(14, 26, 43, .06), 0 1px 3px rgba(14, 26, 43, .05);
  --shadow-md: 0 2px 4px rgba(14, 26, 43, .05), 0 8px 24px rgba(14, 26, 43, .07);
  --shadow-lg: 0 4px 8px rgba(14, 26, 43, .05), 0 20px 48px rgba(14, 26, 43, .12);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--steel); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -0.018em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.9vw, 2.05rem); }
h3 { font-size: 1.14rem; letter-spacing: -0.01em; }
h4 { font-size: 1rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

strong { color: var(--ink-2); font-weight: 600; }

/* ---------- Layout helpers ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; }

section { padding: 76px 0; }
section.tight { padding: 52px 0; }
.bg-soft { background: var(--paper-2); }
.bg-line { border-top: 1px solid var(--line-soft); }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .85em;
  display: block;
}

.lede { font-size: 1.15rem; color: var(--body-2); max-width: 62ch; }

.section-head { max-width: 68ch; margin-bottom: 44px; }
.section-head p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--sans);
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .005em;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  text-align: center;
  line-height: 1.3;
}

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hi); border-color: var(--accent-hi); color: #fff; }

.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-2); border-color: var(--ink-2); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--paper-2); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.09); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand:hover { color: inherit; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; white-space: nowrap;
}
.brand-sub {
  font-size: .655rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--body-2); white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .925rem; font-weight: 500; color: var(--body);
  padding: 9px 13px; border-radius: var(--radius);
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a.current { color: var(--ink); font-weight: 600; }
.nav .btn { margin-left: 10px; padding: 10px 18px; font-size: .9rem; }
.nav .btn:hover { background: var(--accent-hi); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 8px 10px; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(180,116,28,.20), transparent 62%),
    linear-gradient(168deg, #0E1A2B 0%, #16283F 52%, #1F3B5C 100%);
  color: #fff;
  padding: 84px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.033) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 20ch; margin-bottom: .55em; }
.hero .eyebrow { color: var(--accent-hi); }
.hero p.lede { color: rgba(255,255,255,.80); font-size: 1.2rem; max-width: 56ch; }
.hero .btn-row { margin-top: 34px; }

.hero-body { padding-bottom: 78px; }

/* Credential strip under hero */
.cred-strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.17);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cred {
  padding: 22px 24px 22px 0;
  border-right: 1px solid rgba(255,255,255,.10);
}
.cred:last-child { border-right: 0; }
.cred:not(:first-child) { padding-left: 24px; }
.cred-label {
  font-size: .655rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.52); margin-bottom: 5px;
}
.cred-value {
  font-family: var(--mono); font-size: 1.02rem; font-weight: 600;
  color: #fff; letter-spacing: .01em;
}
.cred-value.plain { font-family: var(--sans); font-size: .96rem; }

/* ---------- Page header (interior pages) ---------- */

.page-head {
  background: linear-gradient(168deg, #0E1A2B 0%, #16283F 100%);
  color: #fff;
  padding: 66px 0 58px;
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: .4em; }
.page-head p { color: rgba(255,255,255,.78); max-width: 64ch; font-size: 1.1rem; margin-bottom: 0; }
.page-head .eyebrow { color: var(--accent-hi); }

/* ---------- Cards ---------- */

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-soft { background: var(--paper-2); border-color: var(--line-soft); }
.card h3 { margin-bottom: .45em; }
.card p { font-size: .965rem; margin-bottom: 0; }
.card p + p { margin-top: .8em; }

.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }

.card-num {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  color: var(--accent); letter-spacing: .08em; margin-bottom: 12px;
}

.cap-card { display: flex; flex-direction: column; }
.cap-card ul { margin: 16px 0 0; }

/* Feature list */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative; padding-left: 27px; margin-bottom: .55em;
  font-size: .96rem;
}
.ticks li:last-child { margin-bottom: 0; }
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .46em;
  width: 15px; height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* ---------- Data table (company info) ---------- */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .955rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: 0; }
.data-table th {
  width: 34%;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-2);
  white-space: nowrap;
}
.data-table td { color: var(--body); }
.data-table .m { font-family: var(--mono); font-size: .93rem; color: var(--ink-2); font-weight: 600; letter-spacing: .01em; }
.data-table caption {
  caption-side: top; text-align: left; padding: 0 0 14px;
  font-size: .8rem; color: var(--body-2);
}

/* NAICS list */
.code-list { list-style: none; margin: 0; padding: 0; }
.code-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  font-size: .96rem;
}
.code-list li:last-child { border-bottom: 0; }
.code-list .code {
  font-family: var(--mono); font-weight: 700; color: var(--ink);
  font-size: .95rem; flex-shrink: 0; min-width: 62px;
}
.code-list .primary-tag {
  font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent);
  padding: 2px 7px; border-radius: 3px; margin-left: 8px; white-space: nowrap;
}

/* ---------- Status badge ---------- */

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600;
  padding: 5px 12px 5px 10px;
  border-radius: 100px;
  background: var(--ok-soft); color: var(--ok);
  border: 1px solid rgba(29,122,76,.2);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); flex-shrink: 0; }
.badge-light {
  background: rgba(255,255,255,.11); color: #fff;
  border-color: rgba(255,255,255,.22);
}
.badge-light .dot { background: #4ADE80; }

/* ---------- Split panel ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.split-wide { grid-template-columns: 1.15fr 1fr; }

/* ---------- Stat row ---------- */

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--paper); padding: 26px 24px; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1.1; }
.stat-num .unit { font-size: 1.1rem; color: var(--body-2); font-weight: 600; }
.stat-label { font-size: .87rem; color: var(--body-2); margin-top: 4px; }

/* ---------- Process steps ---------- */

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps li {
  position: relative;
  padding: 0 0 30px 56px;
  border-left: 1px solid var(--line);
  margin-left: 17px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: -18px; top: -2px;
  width: 35px; height: 35px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: var(--mono); font-size: .85rem; font-weight: 700;
  border-radius: 50%;
  border: 4px solid var(--paper);
}
.bg-soft .steps li::before { border-color: var(--paper-2); }
.steps h3 { margin-bottom: .3em; }
.steps p { font-size: .96rem; margin-bottom: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(150deg, var(--ink) 0%, var(--steel) 100%);
  color: #fff;
  padding: 66px 0;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 88% 108%, rgba(180,116,28,.26), transparent 62%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.80); max-width: 58ch; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.cta-inner > div { flex: 1 1 420px; }
.cta-inner .btn-row { flex: 0 0 auto; }

/* ---------- Notice / callout ---------- */

.callout {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .96rem;
}
.callout strong { color: #7A4E0F; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

fieldset { border: 0; padding: 0; margin: 0 0 30px; }
fieldset:last-of-type { margin-bottom: 24px; }
legend {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  padding: 0; margin-bottom: 18px;
}

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }

label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
label .opt { font-weight: 400; color: var(--body-2); font-size: .82rem; }
.req { color: var(--accent); }

input[type=text], input[type=email], input[type=tel], input[type=date],
input[type=number], select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .96rem;
  color: var(--ink);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 132px; resize: vertical; line-height: 1.6; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23617082' d='M6 8 0 1.4 1.4 0 6 4.6 10.6 0 12 1.4z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(31,59,92,.11);
}

.help { font-size: .82rem; color: var(--body-2); margin-top: 6px; }

.hp { position: absolute; left: -9999px; opacity: 0; }

.check-row { display: flex; gap: 10px; align-items: flex-start; }
.check-row input { margin-top: 4px; width: auto; }
.check-row label { font-weight: 400; font-size: .9rem; color: var(--body); margin-bottom: 0; }

.form-note { font-size: .84rem; color: var(--body-2); margin-top: 16px; }

.alert {
  padding: 14px 18px; border-radius: var(--radius);
  font-size: .93rem; margin-bottom: 26px;
  border-left: 3px solid;
}
.alert-ok { background: var(--ok-soft); border-color: var(--ok); color: #14603A; }
.alert-err { background: #FDECEC; border-color: #C0392B; color: #8E2A20; }

/* ---------- Contact blocks ---------- */

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line-soft); }
.contact-list li:last-child { border-bottom: 0; }
.contact-ico {
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--radius); background: var(--steel-soft); color: var(--steel);
}
.contact-ico svg { width: 18px; height: 18px; }
.contact-label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--body-2); margin-bottom: 2px; }
.contact-val { font-size: 1rem; color: var(--ink); font-weight: 500; }
.contact-val a { color: var(--ink); }
.contact-val a:hover { color: var(--accent); }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,.66); font-size: .92rem; }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 {
  color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 15px;
}
.site-footer a { color: rgba(255,255,255,.66); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.5); }
.footer-blurb { margin-top: 16px; max-width: 34ch; font-size: .9rem; }
.footer-codes { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono); font-size: .74rem; font-weight: 600;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86); padding: 4px 9px; border-radius: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.11);
  padding: 20px 0;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .84rem; color: rgba(255,255,255,.5);
}

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.center { text-align: center; }
.mono { font-family: var(--mono); }
.small { font-size: .88rem; }
.muted { color: var(--body-2); }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; color: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 940px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split-wide { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .cred { border-bottom: 1px solid rgba(255,255,255,.10); }
  .cred:nth-child(2n) { border-right: 0; }
  .cred:nth-child(2n+1) { padding-left: 0; }
  .cred:nth-child(n+3) { border-bottom: 0; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; font-size: 1rem; }
  .nav .btn { margin: 8px 0 0; justify-content: center; padding: 13px 18px; }
  .site-header { position: relative; }
  .hero { padding-top: 56px; }
  .hero-body { padding-bottom: 54px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .data-table th { width: auto; white-space: normal; }
  .data-table th, .data-table td { padding: 12px 15px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; width: 100%; }
  .nav .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-head { padding: 48px 0 44px; }
}

@media (max-width: 520px) {
  .cred-grid { grid-template-columns: 1fr; }
  .cred { border-right: 0; padding-left: 0 !important; }
  .brand-sub { display: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav { display: none; }
  body { font-size: 11pt; }
  .hero, .page-head { background: #fff; color: #000; }
  .hero h1, .page-head h1 { color: #000; }
}
