/* ==========================================================================
   HanzPro — Precision Metal Solutions
   Design tokens
   --------------------------------------------------------------------------
   Palette is drawn from the logo's own world: bead-blasted aluminium ground,
   graphite type, a machined "layout blue" accent (the ink toolmakers coat
   stock with before scribing), and a brass note for warmth.
   ========================================================================== */

:root {
  /* Color */
  --alu:        #EFF1F2;  /* bead-blasted aluminium — page ground */
  --alu-deep:   #E2E6E8;  /* recessed panel */
  --alu-edge:   #CBD2D6;  /* machined edge / hairline */
  --graphite:   #14181B;  /* type, near-black like the logo's "hanz" */
  --graphite-2: #5A646B;  /* secondary type */
  --layout:     #1D5BBF;  /* layout blue — the single accent */
  --layout-lo:  #0F3D86;  /* pressed state */
  --brass:      #B08A3E;  /* warmth, used once */
  --white:      #FFFFFF;

  /* Type */
  --display: 'Archivo', system-ui, -apple-system, sans-serif;
  --body:    'Source Serif 4', Georgia, serif;
  --mono:    'Roboto Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Space */
  --gut: 24px;
  --max: 1200px;
  --sec: clamp(64px, 9vw, 120px);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ========================================================================== */

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

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

body {
  margin: 0;
  background: var(--alu);
  color: var(--graphite);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

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

a { color: var(--layout); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--layout);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--graphite); color: var(--white);
  padding: 12px 20px; z-index: 200;
}
.skip:focus { left: 16px; top: 16px; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* --- shared type devices ------------------------------------------------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--layout);
  flex: none;
}
.eyebrow--on { color: rgba(255,255,255,.72); }
.eyebrow--on::before { background: rgba(255,255,255,.6); }

.sec__h2 {
  font-size: clamp(30px, 4.1vw, 50px);
  max-width: 19ch;
  margin: 0 0 20px;
}

.sec__lede {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--graphite-2);
  max-width: 62ch;
  margin: 0 0 48px;
}

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .005em;
  padding: 15px 28px;
  border: 1px solid var(--graphite);
  border-radius: 2px;
  background: var(--graphite);
  color: var(--white);
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease),
              transform .18s var(--ease);
}
.btn:hover {
  background: var(--layout);
  border-color: var(--layout);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); background: var(--layout-lo); }

.btn--ghost {
  background: transparent;
  color: var(--graphite);
  border-color: var(--alu-edge);
}
.btn--ghost:hover {
  background: transparent;
  color: var(--layout);
  border-color: var(--layout);
}

.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--full { width: 100%; padding: 17px 28px; }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 241, 242, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--alu-edge);
  background: rgba(239, 241, 242, .95);
}

.nav__in {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 74px;
}

.nav__logo { flex: none; display: block; }
.nav__logo img { height: 30px; width: auto; }

.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--graphite);
}
.nav__links a:hover { color: var(--layout); text-decoration: none; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: clamp(64px, 9vw, 110px) 0 0;
  position: relative;
  overflow: hidden;
}

/* faint machined-grid ground, evokes a surface plate */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--alu-edge) 1px, transparent 1px),
    linear-gradient(90deg, var(--alu-edge) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .28;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 10%, transparent 72%);
  pointer-events: none;
}

.hero__in { position: relative; }

.hero__h1 {
  font-size: clamp(40px, 7.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -.035em;
  max-width: 15ch;
  margin: 0 0 26px;
}
.hero__h1 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}
.hero__h1 .hl {
  font-family: var(--mono);
  font-weight: 500;
  font-size: .78em;
  letter-spacing: -.02em;
  color: var(--layout);
  background: linear-gradient(transparent 62%, rgba(29,91,191,.14) 62%);
  padding: 0 .06em;
}

.hero__sub {
  font-size: clamp(17px, 1.75vw, 20px);
  color: var(--graphite-2);
  max-width: 60ch;
  margin: 0 0 34px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(56px, 7vw, 84px);
}

/* --- SIGNATURE: the spec strip ------------------------------------------- */

.specstrip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  border-top: 1px solid var(--graphite);
  border-left: 1px solid var(--alu-edge);
  background: var(--alu-deep);
}

.spec {
  padding: 22px 20px 24px;
  border-right: 1px solid var(--alu-edge);
  border-bottom: 1px solid var(--alu-edge);
  position: relative;
  transition: background .2s var(--ease);
}
.spec:hover { background: var(--white); }

/* scribe tick, like a machinist's witness mark */
.spec::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--layout);
  transition: width .45s var(--ease);
}
.spec:hover::before { width: 100%; }

.spec dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin-bottom: 10px;
  line-height: 1.4;
}

.spec dd {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.spec__n {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.spec__u {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--graphite-2);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trustbar {
  background: var(--graphite);
  color: var(--white);
}
.trustbar__in {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trustbar p {
  margin: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.62);
}
.trustbar strong {
  color: var(--white);
  font-weight: 500;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.sec { padding: var(--sec) 0; }
.sec--alt {
  background: var(--alu-deep);
  border-top: 1px solid var(--alu-edge);
  border-bottom: 1px solid var(--alu-edge);
}

/* --- material cards ------------------------------------------------------ */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--alu-edge);
  border: 1px solid var(--alu-edge);
}

.card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-3px); z-index: 2; }

.card__img {
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--alu-deep) 0 10px,
      var(--alu) 10px 20px
    );
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--alu-edge);
  position: relative;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; }

.card__ph, .shot span, .portrait span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--graphite-2);
  background: var(--white);
  border: 1px dashed var(--alu-edge);
  padding: 7px 12px;
  border-radius: 2px;
}

.card__body { padding: 26px 24px 28px; }
.card__body h3 {
  font-size: 21px;
  margin: 0 0 10px;
}
.card__body p {
  font-size: 15.5px;
  color: var(--graphite-2);
  line-height: 1.6;
  margin: 0 0 16px;
}

.card--flat { grid-column: span 1; }

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.tags li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--graphite);
  background: var(--alu);
  border: 1px solid var(--alu-edge);
  padding: 5px 9px;
  border-radius: 2px;
}

/* --- capability grid ----------------------------------------------------- */

.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--alu-edge);
  border: 1px solid var(--alu-edge);
  margin-bottom: 56px;
}

.cap {
  background: var(--alu);
  padding: 30px 26px 32px;
  transition: background .2s var(--ease);
}
.cap:hover { background: var(--white); }

.cap__n {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
  color: var(--layout);
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.cap__n span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--graphite-2);
}

.cap h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.cap p {
  font-size: 15px;
  color: var(--graphite-2);
  line-height: 1.6;
  margin: 0;
}

/* --- gallery ------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shot {
  margin: 0;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--alu) 0 10px,
      var(--alu-deep) 10px 20px
    );
  border: 1px solid var(--alu-edge);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  padding: 9px 12px;
  background: rgba(20,24,27,.86);
  color: var(--white);
}

/* --- quality ------------------------------------------------------------- */

.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.certs {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--alu-edge);
  border: 1px solid var(--alu-edge);
}
.certs li {
  background: var(--white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.certs strong {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
}
.certs span {
  font-size: 14px;
  color: var(--graphite-2);
}

.steps {
  list-style: none;
  counter-reset: s;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--alu-edge);
}
.steps li {
  counter-increment: s;
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 14px 4px;
  border-bottom: 1px solid var(--alu-edge);
  font-size: 15.5px;
  color: var(--graphite);
}
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--layout);
  flex: none;
  width: 22px;
  letter-spacing: .04em;
}

/* --- company ------------------------------------------------------------- */

.company {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.company__l p {
  color: var(--graphite-2);
  font-size: 17px;
}
.company__l strong { color: var(--graphite); font-weight: 600; }

.portrait {
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--alu) 0 10px,
      var(--alu-deep) 10px 20px
    );
  border: 1px solid var(--alu-edge);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }

.portrait__cap {
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--graphite-2);
  letter-spacing: .03em;
}
.portrait__cap strong {
  color: var(--graphite);
  font-weight: 500;
}

/* ==========================================================================
   RFQ
   ========================================================================== */

.rfq {
  background: var(--graphite);
  color: var(--white);
  padding: var(--sec) 0;
  position: relative;
}
/* one brass hairline — the single warm note in the whole page */
.rfq::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent 60%);
}

.rfq__in {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.rfq h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 17ch;
  margin: 0 0 20px;
  color: var(--white);
}
.rfq__lede {
  color: rgba(255,255,255,.66);
  font-size: 17px;
  max-width: 48ch;
  margin: 0 0 28px;
}

.rfq__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.rfq__list li {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .03em;
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  gap: 11px;
}
.rfq__list li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--layout);
  flex: none;
  transform: rotate(45deg);
}

.rfq__mail {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.rfq__mail a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.35); }
.rfq__mail a:hover { text-decoration: none; border-bottom-color: var(--white); }

.rfq__addr {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-family: var(--mono);
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: .03em;
  color: rgba(255,255,255,.62);
  display: grid;
  gap: 1px;
}
.rfq__addr strong {
  color: rgba(255,255,255,.4);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.is-hidden { display: none; }

/* --- form ---------------------------------------------------------------- */

.form {
  background: var(--white);
  padding: 32px;
  border-radius: 2px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin-bottom: 7px;
}
.field label i {
  font-style: normal;
  color: var(--layout);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--graphite);
  background: var(--alu);
  border: 1px solid var(--alu-edge);
  border-radius: 2px;
  padding: 12px 13px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--layout);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,91,191,.12);
}

.field input[type="file"] {
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  margin-right: 12px;
  padding: 8px 14px;
  border: 1px solid var(--alu-edge);
  border-radius: 2px;
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
}

.field.is-bad input,
.field.is-bad textarea { border-color: #C0392B; }

.hint {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--graphite-2);
  margin: 7px 0 0;
}

.formnote,
.formstat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--graphite-2);
  text-align: center;
  margin: 14px 0 0;
}
.formstat:empty { margin: 0; }
.formstat.is-bad { color: #C0392B; }
.formstat.is-ok  { color: #1E7A46; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.foot {
  background: var(--alu-deep);
  border-top: 1px solid var(--alu-edge);
  padding: clamp(48px, 6vw, 72px) 0 0;
}

.foot__in {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.foot__brand img { height: 26px; width: auto; margin-bottom: 16px; }
.foot__brand p {
  font-size: 14.5px;
  color: var(--graphite-2);
  max-width: 34ch;
  margin: 0;
}

.foot__col { display: flex; flex-direction: column; gap: 9px; }
.foot__col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin: 0 0 6px;
}
.foot__col a {
  font-size: 14.5px;
  color: var(--graphite);
}
.foot__col a:hover { color: var(--layout); text-decoration: none; }

.foot__iso {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--graphite-2);
  margin: 6px 0 0;
}

.foot__legal {
  border-top: 1px solid var(--alu-edge);
  padding-top: 22px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.foot__legal p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--graphite-2);
  margin: 0;
}

/* ==========================================================================
   REVEAL (scroll-in)
   ========================================================================== */

.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rv.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {
  .cards, .caps, .gallery { grid-template-columns: repeat(2, 1fr); }
  .specstrip { grid-template-columns: repeat(3, 1fr); }
  .quality, .company, .rfq__in { grid-template-columns: 1fr; }
  .company__r { max-width: 320px; }
  .foot__in { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__in { gap: 16px; justify-content: space-between; }
  .nav__logo img { height: 26px; }

  .hero { padding-top: 52px; }
  .hero__h1 { letter-spacing: -.03em; }
  .hero__cta .btn { flex: 1 1 100%; }

  .specstrip { grid-template-columns: repeat(2, 1fr); }
  .spec { padding: 18px 16px 20px; }

  .cards, .caps, .gallery { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 24px 20px; }

  .trustbar__in { gap: 10px 28px; }
  .foot__in { grid-template-columns: 1fr; gap: 30px; }
  .foot__legal { flex-direction: column; }
}

/* ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .rv { opacity: 1; transform: none; }
}

@media print {
  .nav, .hero__cta, .rfq__r, .skip { display: none; }
  body { background: #fff; }
}

/* ==========================================================================
   ENGLISH / ENGINEERING  — the differentiator section
   ========================================================================== */

.english__in {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.english__body {
  font-size: 16.5px;
  color: var(--graphite-2);
  max-width: 60ch;
}
.english__body strong { color: var(--graphite); font-weight: 600; }

.fluent {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--graphite);
  background: var(--white);
}
.fluent li {
  display: grid;
  gap: 3px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--alu-edge);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--graphite);
  letter-spacing: .01em;
}
.fluent li span {
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--graphite-2);
}

/* ==========================================================================
   VIDEO
   ========================================================================== */

.vids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vid { margin: 0; }
.vid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--graphite);
  border: 1px solid var(--alu-edge);
  border-radius: 2px;
  display: block;
}
.vid figcaption {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--graphite-2);
  letter-spacing: .02em;
}
.vid figcaption strong {
  font-family: var(--display);
  font-size: 15px;
  color: var(--graphite);
  letter-spacing: 0;
}

/* ==========================================================================
   CERTIFICATES  (now clickable)
   ========================================================================== */

.certs__h {
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin: 36px 0 14px;
}
.certs li { padding: 0; }
.certs li a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding: 15px 20px;
  color: var(--graphite);
  text-decoration: none;
  transition: background .18s var(--ease), padding-left .18s var(--ease);
}
.certs li a::after {
  content: "PDF \2197";
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .08em;
  color: var(--layout);
  margin-left: auto;
  flex: none;
}
.certs li a[href$=".jpg"]::after { content: "IMG \2197"; }
.certs li a:hover {
  background: var(--alu);
  padding-left: 26px;
  text-decoration: none;
}
.certs__note {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--graphite-2);
}

/* ==========================================================================
   MATERIAL GRADES TABLE
   ========================================================================== */

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.grades {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
  border: 1px solid var(--alu-edge);
}
table.grades th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--graphite-2);
  background: var(--alu-deep);
  padding: 13px 18px;
  border-bottom: 1px solid var(--graphite);
  white-space: nowrap;
}
table.grades td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--alu-edge);
  font-size: 15px;
}
table.grades tr:last-child td { border-bottom: none; }
table.grades tbody tr:hover { background: var(--alu); }
table.grades code {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--graphite);
}
table.grades td.yes {
  font-family: var(--mono);
  font-size: 12px;
  color: #1E7A46;
  letter-spacing: .02em;
}

/* ==========================================================================
   COMMERCIAL TERMS
   ========================================================================== */

.terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--alu-edge);
  border: 1px solid var(--alu-edge);
}
.term {
  background: var(--alu);
  padding: 24px 22px 26px;
  transition: background .2s var(--ease);
}
.term:hover { background: var(--white); }
.term dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin-bottom: 10px;
}
.term dd {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--graphite);
  font-variant-numeric: tabular-nums;
}
.term dd em {
  display: block;
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--graphite-2);
  line-height: 1.5;
}

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */

.inds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--alu-edge);
  border: 1px solid var(--alu-edge);
}
.ind {
  background: var(--white);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ind h3 { font-size: 18px; margin: 0; }
.ind p {
  margin: 0;
  font-size: 14.5px;
  color: var(--graphite-2);
  line-height: 1.55;
}
.ind__case {
  font-family: var(--mono) !important;
  font-size: 11.5px !important;
  color: var(--layout) !important;
  padding: 9px 11px;
  background: rgba(29,91,191,.06);
  border-left: 2px solid var(--layout);
  line-height: 1.5 !important;
}
.ind__geo {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--graphite-2);
}

/* ==========================================================================
   COMPANY PHOTO / ADDRESS
   ========================================================================== */

.company__r img {
  width: 100%;
  border: 1px solid var(--alu-edge);
  border-radius: 2px;
}
.company__addr {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--alu-edge);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.85;
  letter-spacing: .02em;
  color: var(--graphite-2);
}
.company__addr strong {
  display: block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--graphite-2);
  margin-bottom: 5px;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE — new sections
   ========================================================================== */

@media (max-width: 1000px) {
  .english__in { grid-template-columns: 1fr; }
  .vids        { grid-template-columns: 1fr; }
  .terms, .inds{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .terms, .inds { grid-template-columns: 1fr; }
  .term dd { font-size: 24px; }
}

/* ==========================================================================
   FORM: honeypot (must be invisible to humans, present in the DOM for bots)
   ========================================================================== */

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   THANK-YOU PAGE
   ========================================================================== */

.ty {
  padding: clamp(64px, 10vw, 130px) 0 clamp(64px, 9vw, 110px);
  min-height: 60vh;
}
.ty__in { max-width: 760px; }

.ty__h1 {
  font-family: var(--display);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 17ch;
}
.ty__sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--graphite-2);
  max-width: 56ch;
  margin: 0 0 44px;
}

.ty__steps {
  list-style: none;
  counter-reset: t;
  margin: 0 0 40px;
  padding: 0;
  border-top: 1px solid var(--graphite);
}
.ty__steps li {
  counter-increment: t;
  padding: 18px 0;
  border-bottom: 1px solid var(--alu-edge);
  display: grid;
  gap: 5px;
  font-size: 16px;
  color: var(--graphite);
}
.ty__steps li span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--layout);
}

.ty__note {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--graphite-2);
  margin: 0 0 32px;
}

/* ==========================================================================
   RFQ: "email us your drawing" callout
   ========================================================================== */

.mailnote {
  margin: 4px 0 20px;
  padding: 16px 18px;
  background: var(--alu);
  border: 1px solid var(--alu-edge);
  border-left: 2px solid var(--layout);
  border-radius: 2px;
}
.mailnote strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 5px;
}
.mailnote p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--graphite-2);
}
.mailnote a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--layout);
  border-bottom: 1px solid rgba(29,91,191,.35);
  word-break: break-all;
}
.mailnote a:hover { text-decoration: none; border-bottom-color: var(--layout); }

.field label .opt {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--graphite-2);
  text-transform: uppercase;
  margin-left: 5px;
  opacity: .75;
}

/* thank-you: email-the-drawing block */
.ty__mail {
  margin: 0 0 36px;
  padding: 22px 24px;
  background: var(--alu-deep);
  border: 1px solid var(--alu-edge);
  border-left: 2px solid var(--layout);
  border-radius: 2px;
}
.ty__mail strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  margin-bottom: 7px;
  color: var(--graphite);
}
.ty__mail p { margin: 0; font-size: 15.5px; color: var(--graphite-2); }
.ty__mail a {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--layout);
  border-bottom: 1px solid rgba(29,91,191,.35);
}

/* ==========================================================================
   INSPECTION BAND
   ========================================================================== */

.inspect__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.inspect__grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--alu-edge);
  border-radius: 2px;
  background: var(--alu-deep);
}
.inspect__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.inspect__grid figure:hover img { transform: scale(1.03); }

@media (max-width: 1000px) { .inspect__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .inspect__grid { grid-template-columns: 1fr; } }
