/* Grappler USA — industrial, high contrast, readable on a phone in daylight. */

:root {
  --ink: #14181c;
  --ink-soft: #4a555f;
  --faint: #7c8894;
  --paper: #f4f4f2;
  --panel: #fff;
  --line: #d8d8d3;
  --steel: #1f2a33;
  --steel-deep: #131b21;
  --hi: #f0a202;      /* safety yellow */
  --hi-deep: #c07f00;
  --go: #2f6f4f;
  --stop: #a8321f;
  --wrap: 66rem;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
h1,h2,h3 { font-weight: 800; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.02em; color: var(--steel-deep); }
h1 { font-size: clamp(2rem,5vw,3.1rem); text-transform: uppercase; }
h2 { font-size: clamp(1.4rem,3vw,2rem); margin-top: 1.8em; text-transform: uppercase; }
h3 { font-size: 1.15rem; margin-top: 1.4em; }
p, li { max-width: 36rem; }
p { margin: 0 0 1em; }
a { color: var(--steel); text-underline-offset: 2px; }
a:hover { color: var(--hi-deep); }
img { max-width: 100%; height: auto; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.1rem; }
.muted { color: var(--ink-soft); }
.small { font-size: .87rem; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 40rem; }

.banner { padding: .55rem 1rem; text-align: center; font-size: .88rem; font-weight: 600; }
.banner.test { background: #fff4d6; color: #6b4c00; }
.banner.warn { background: #fde8e3; color: #7a2718; }

/* header */
header.site { background: var(--steel-deep); position: sticky; top: 0; z-index: 20; }
header.site .bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; min-height: 62px; }
.brand img { height: 34px; display: block; }
header.site nav { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
header.site nav a { color: #c3ccd4; text-decoration: none; font-size: .92rem; font-weight: 600; }
header.site nav a:hover { color: #fff; }
header.site nav a.tel { color: var(--hi); }
header.site nav a.cart { background: var(--hi); color: #191919; padding: .42rem .8rem; border-radius: 3px; }
header.site nav a.cart:hover { background: #ffb51f; color: #191919; }
.pill { background: #191919; color: var(--hi); border-radius: 2px; padding: 0 .32rem; font-size: .8rem; }

/* sections */
section { padding: 3rem 0; }
section.tight { padding: 1.6rem 0; }
section.steel { background: var(--steel-deep); color: #ccd5dc; }
section.steel h1, section.steel h2, section.steel h3 { color: #fff; }
section.band { background: var(--panel); border-block: 1px solid var(--line); }

.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800; color: var(--hi-deep); margin: 0 0 .7rem; }
section.steel .eyebrow { color: var(--hi); }

.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.hero img { border: 1px solid var(--line); background: #fff; }

.grid { display: grid; gap: 1.4rem; }
.grid.two { grid-template-columns: repeat(auto-fit,minmax(19rem,1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit,minmax(15rem,1fr)); }
.grid p, .grid li { max-width: none; }

.card { background: var(--panel); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.card .pad { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card .shot { background: #fff; border-bottom: 1px solid var(--line); display: grid; place-items: center; padding: 1rem; min-height: 190px; }
.card .shot img { max-height: 190px; width: auto; }
.card h3 { margin: 0 0 .3rem; }
.card .push { margin-top: auto; padding-top: .9rem; }

.tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .45rem; border-radius: 2px; background: var(--line); color: var(--ink-soft); }
.tag.soon { background: #e7edf3; color: var(--steel); }
.tag.spec { background: #fff4d6; color: #6b4c00; }

.price { font-size: 1.5rem; font-weight: 800; color: var(--steel-deep); }
.price.tbd { font-size: 1rem; font-weight: 700; color: var(--ink-soft); }

ul.checks { list-style: none; padding: 0; }
ul.checks li { position: relative; padding-left: 1.5rem; margin-bottom: .5rem; }
ul.checks li::before { content: "▸"; position: absolute; left: 0; color: var(--hi-deep); font-weight: 900; }

ol.steps { padding-left: 1.2rem; }
ol.steps li { margin-bottom: .7rem; }

.btn { display: inline-block; background: var(--hi); color: #191919; padding: .8rem 1.4rem; border: 0; border-radius: 3px; font: inherit; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; text-decoration: none; }
.btn:hover { background: #ffb51f; color: #191919; }
.btn.big { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn.ghost { background: transparent; border: 2px solid var(--steel); color: var(--steel); }
.btn.ghost:hover { background: var(--steel); color: #fff; }
.btn:disabled { background: var(--line); color: var(--faint); cursor: not-allowed; }
.btn-row { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; margin: 1.4rem 0; }

table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
th, td { text-align: left; padding: .7rem .6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--faint); }
td.right, th.right { text-align: right; }
.scroll { overflow-x: auto; }

label.field { display: block; margin-bottom: 1rem; max-width: 30rem; }
label.field span { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .25rem; }
input[type=text],input[type=email],input[type=tel],input[type=number],select,textarea {
  width: 100%; padding: .6rem .7rem; font: inherit; border: 1.5px solid var(--line); border-radius: 3px; background: #fff;
}
input:focus,select:focus,textarea:focus { outline: 2px solid var(--hi); outline-offset: 1px; border-color: var(--hi-deep); }
textarea { min-height: 7rem; resize: vertical; }
input.qty { width: 5rem; }

.note { background: #fff4d6; border-left: 4px solid var(--hi); padding: 1rem 1.1rem; margin: 1.4rem 0; }
.note p:last-child { margin-bottom: 0; }
.errors { background: #fde8e3; border-left: 4px solid var(--stop); padding: 1rem 1.1rem; margin-bottom: 1.5rem; }
.flash { background: #e8f3ec; border-left: 4px solid var(--go); padding: 1rem 1.1rem; margin-bottom: 1.5rem; }

.tiles { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit,minmax(9rem,1fr)); margin-bottom: 1.6rem; }
.tile { background: var(--panel); border: 1px solid var(--line); padding: .9rem 1rem; border-radius: 4px; }
.tile .n { font-size: 1.6rem; font-weight: 800; color: var(--steel-deep); }
.tile .l { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); }

footer.site { background: var(--steel-deep); color: #a9b4be; margin-top: 3rem; padding: 2.5rem 0 1.2rem; }
footer.site a { color: #fff; }
footer.site p { max-width: 20rem; margin: 0 0 .3rem; }
.foot { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fit,minmax(12rem,1fr)); }
.fname { font-weight: 800; color: #fff; font-size: 1.05rem; text-transform: uppercase; }
.fhead { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: #7e8b97; margin-bottom: .5rem !important; }
.legal { border-top: 1px solid #2a3640; margin-top: 2rem; padding-top: 1rem; }
footer.site .muted { color: #7e8b97; }

@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; gap: 1.4rem; }
  header.site nav { gap: .75rem; font-size: .88rem; }
  header.site nav a { font-size: .86rem; }
}
