﻿/* ==========================================================================
   AG Rubber Co - site.css
   THE CATALOG. The industrial mail-order catalog as the design system:
   paper white, heavy ink, hard rules, tabular data, zero radius. Orange is
   functional ink only. Display type is Archivo at heavy weights; body type
   is the system stack, the fastest text there is for a phone on a yard.

   The two-orange rule survives the redesign unchanged:
   --orange (#EA6A1F) is DECORATIVE ONLY: the wordmark "AG", focus rings,
   diagram linework, non-text accents. It never carries text on a light
   ground (3.19:1 on white) and never fills a control that holds text.
   --orange-action (#C4530F) is the INTERACTIVE orange: every button fill,
   every text link. White on it is 4.57:1 and it is 4.57:1 as text on white.
   --orange-action-hover (#A34209) is the pressed/hover step, and doubles as
   the link color on the grey-100 ground where --orange-action would measure
   4.12:1 and miss AA. Ratios are asserted in build/qa.js.
   ========================================================================== */
/* Archivo, self-hosted. One variable file carries every display weight the
   site uses (700 to 900), latin subset, 34 KB. font-display:swap keeps the
   headline readable in the system stack while it arrives. */
@font-face{
  font-family:Archivo;
  font-style:normal;
  font-weight:700 900;
  font-stretch:100%;
  font-display:swap;
  src:url(/assets/fonts/archivo-700-900-latin.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* Metrics-matched fallback. Sized a touch over Archivo so the swap never
   paints a larger text block: a bigger repaint would re-emit the headline's
   LCP entry at font-arrival time and bill the whole font wait against LCP. */
@font-face{
  font-family:"Archivo Fallback";
  src:local("Arial"),local("Helvetica");
  size-adjust:106%;
  ascent-override:90%;
  descent-override:22%;
  line-gap-override:0%;
}

:root{
  --orange:              #EA6A1F;
  --orange-action:       #C4530F;
  --orange-action-hover: #A34209;
  --orange-tint:         #FDEEE3;

  /* Semantic link roles. No new hues: both resolve to an action orange. */
  --link:      var(--orange-action);
  --link-tint: var(--orange-action-hover);

  --grey-900:    #23272B;   /* the ink */
  --grey-800:    #2E3338;
  --grey-700:    #4A5157;   /* body text and the AA placeholder grey */
  --grey-400:    #9AA1A7;
  --grey-200:    #E4E5E7;   /* the hairline */
  --grey-100:    #F2F3F4;   /* the tint ground */
  --white:       #FFFFFF;

  --panel-line:  #3A4046;
  --wrap: 1180px;
  --pad: 24px;

  --font-display: Archivo, "Archivo Fallback", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

/* The [hidden] attribute has to beat the display values set below, or the
   tapered ID fields (a grid) stay on screen while Straight is selected. */
[hidden]{display:none !important}

html{-webkit-text-size-adjust:100%}

body{
  margin:0;
  background:var(--white);
  color:var(--grey-700);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

/* ---------- Type: heavy ink display, quiet body ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--grey-900);
  margin:0 0 .45em;
  line-height:1.02;
}
h1{font-weight:900;font-size:clamp(32px,5.2vw,58px);letter-spacing:-.02em;text-transform:uppercase}
h2{font-weight:900;font-size:clamp(26px,3.8vw,40px);letter-spacing:-.012em}
h3{font-weight:800;font-size:19px;line-height:1.2}
h4{font-weight:700;font-size:17px;line-height:1.25}
p{margin:0 0 1em}
small,.small{font-size:13.5px}

/* The running head. Every section label sits on the section's top rule,
   the way a catalog carries its running headers. The words are content;
   the rule is the structure. */
.eyebrow{
  display:block;
  border-top:3px solid var(--grey-900);
  padding-top:10px;
  font-family:var(--font-body);
  font-size:12.5px;font-weight:800;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--grey-900);margin:0 0 14px;
}

/* Interior headings on resource pages carry the same rule, so the catalog
   grammar holds on pages that never had a section label. */
.narrow h2,
.wrap > h2{
  border-top:3px solid var(--grey-900);
  padding-top:12px;
  margin-top:36px;
}
.narrow h2:first-child,
.wrap > h2:first-child{margin-top:0}
.narrow h1 + h2{margin-top:24px}

.lede{font-size:clamp(16.5px,2.1vw,18.5px);line-height:1.5;color:var(--grey-700)}
.spec-num{font-weight:600;font-variant-numeric:tabular-nums}

a{color:var(--link);text-decoration:none}
a:hover{color:var(--orange-action-hover);text-decoration:underline}

/* Links inside running text are underlined at rest. Color alone does not
   clear the 3:1 distinguishability bar against the body grey, and printed
   catalogs underline their order references anyway. */
main p a:not(.btn):not(.hero-tel),
address a{text-decoration:underline;text-underline-offset:2px}

/* On the grey-100 ground --orange-action drops to 4.12:1, so links there
   take the darker step (5.66:1). Buttons keep their own fill. */
.section--tint a:not(.btn),
.slot a,
table.spec a{color:var(--link-tint)}

/* ---------- Layout ---------- */
.wrap{max-width:var(--wrap);margin:0 auto;padding-left:var(--pad);padding-right:var(--pad)}
.section{padding:clamp(40px,6vw,72px) 0}
.section--tint{background:var(--grey-100)}
.section--dark{background:var(--grey-900)}
.section--dark h2,.section--dark h3{color:var(--white)}
.section--dark p{color:var(--grey-400)}
.section--pad-sm{padding:clamp(30px,4.5vw,52px) 0}

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

.section-head{margin-bottom:26px;max-width:760px}
.section-head p{margin-bottom:0;font-size:17px}

/* ---------- Skip link ---------- */
.skip{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--grey-900);color:var(--white);
  padding:12px 18px;font-weight:600;
}
.skip:focus{left:8px;top:8px}

/* ---------- Announcement strip ---------- */
.strip{
  background:var(--orange-action);color:var(--white);
  font-size:12.5px;font-weight:600;letter-spacing:.03em;
}
.strip .wrap{
  display:flex;justify-content:center;align-items:center;
  gap:14px;padding-top:8px;padding-bottom:8px;text-align:center;
}
.strip .sep{opacity:.5}
.usa{display:inline-flex;align-items:center;gap:8px;white-space:nowrap}
.usa svg{display:block;flex:none}

/* ---------- Nav ---------- */
.nav{
  position:sticky;top:0;z-index:100;
  background:var(--white);border-bottom:3px solid var(--grey-900);
}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:12px;padding-bottom:12px}
.wordmark{
  font-family:var(--font-display);font-weight:900;font-size:21px;
  letter-spacing:-.02em;white-space:nowrap;text-decoration:none;
  display:inline-flex;align-items:center;min-height:44px;text-transform:uppercase;
}
.wordmark:hover{text-decoration:none}
.wordmark .ag{color:var(--orange)}
.wordmark .rc{color:var(--grey-900)}

.nav-links{display:flex;align-items:center;gap:22px}
/* :not(.btn) matters. Without it this rule (0,1,1) outranks .btn-primary
   (0,1,0) and paints the "Get a Quote" button text grey on orange. */
.nav-links a:not(.btn){
  font-size:14.5px;font-weight:600;color:var(--grey-700);text-decoration:none;
  min-height:44px;display:inline-flex;align-items:center;
}
.nav-links a:not(.btn):hover{color:var(--orange-action)}
.nav-tel{font-weight:800;color:var(--grey-900) !important;font-variant-numeric:tabular-nums}
.nav-toggle{
  display:none;background:none;border:2px solid var(--grey-900);
  border-radius:0;padding:8px 11px;cursor:pointer;
  color:var(--grey-900);font-size:18px;line-height:1;min-height:44px;min-width:44px;
}

/* ---------- Buttons: hard rectangles, ink or action orange ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-body);font-weight:600;font-size:16px;
  padding:14px 26px;border-radius:0;border:2px solid transparent;
  cursor:pointer;text-decoration:none;min-height:48px;
  transition:background-color .15s ease,color .15s ease,border-color .15s ease;
}
.btn:hover{text-decoration:none}
.btn-primary{background:var(--orange-action);color:#FFFFFF;border-color:var(--orange-action)}
.btn-primary:hover{background:var(--orange-action-hover);border-color:var(--orange-action-hover);color:#FFFFFF}
.btn-secondary{background:transparent;color:var(--grey-900);border-color:var(--grey-900)}
.btn-secondary:hover{background:var(--grey-900);color:var(--white)}
.btn-ghost-light{background:transparent;color:var(--white);border-color:var(--white)}
.btn-ghost-light:hover{background:var(--white);color:var(--grey-900)}
.btn-lg{font-size:17px;padding:17px 32px;font-weight:700;min-height:56px}
.btn-block{display:flex;width:100%}
.btn-sm{font-size:14px;padding:9px 15px;min-height:44px}

/* ---------- Text on the action-orange fill ----------
   Every control filled with --orange-action carries pure #FFFFFF at weight
   600, and keeps pure white when the fill darkens to --orange-action-hover.
   Specificity here is deliberate: it has to outrank .btn-lg (weight 700) and
   .nav-links a (grey). build/qa.js asserts these declarations and the
   measured contrast ratios so this cannot regress. */
.btn.btn-primary,
.nav-links a.btn-primary,
.mobile-cta .q{
  color:#FFFFFF;
  font-weight:600;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.nav-links a.btn-primary:hover,
.mobile-cta .q:hover,
.mobile-cta .q:focus{
  background:var(--orange-action-hover);
  border-color:var(--orange-action-hover);
  color:#FFFFFF;
}

/* ---------- Browser surfaces carry the palette too ---------- */
::selection{background:var(--orange-tint);color:var(--grey-900)}
input,textarea{caret-color:var(--orange-action)}

/* ---------- Focus ---------- */
:focus-visible{outline:3px solid var(--orange);outline-offset:2px}
.section--dark :focus-visible{outline-color:#FFB47F}

/* ---------- Hero ---------- */
.hero{padding:clamp(28px,4.5vw,52px) 0 clamp(36px,5vw,60px)}
.hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(28px,4.5vw,56px);align-items:start}
.hero h1{margin-bottom:18px}
.hero .lede{max-width:540px;margin-bottom:26px}
.hero-cta{display:flex;flex-wrap:wrap;align-items:center;gap:18px;margin-bottom:28px}
.hero-tel{
  font-size:15px;font-weight:700;color:var(--grey-900);
  border-bottom:3px solid var(--orange);text-decoration:none;
  display:inline-flex;align-items:center;min-height:44px;padding-bottom:2px;
}
.hero-tel:hover{color:var(--orange-action);text-decoration:none}

/* The stat line is a catalog spec row: ruled, tabular, no cards. */
.hero-stats{
  display:flex;flex-wrap:wrap;
  border-top:3px solid var(--grey-900);border-bottom:1px solid var(--grey-200);
  margin-bottom:20px;
}
.hero-stats > div{flex:1 1 130px;padding:12px 16px 12px 0}
.hero-stats > div + div{border-left:1px solid var(--grey-200);padding-left:16px}
.hero-stats .n{font-family:var(--font-display);font-weight:900;font-size:27px;color:var(--grey-900);font-variant-numeric:tabular-nums;line-height:1.05}
.hero-stats .l{font-size:13px;color:var(--grey-700);font-weight:600}

.trust-row{font-size:13.5px;color:var(--grey-700);display:flex;flex-wrap:wrap;gap:8px 16px;align-items:center;font-weight:600}

/* ---------- Photo slots ----------
   The placeholder is always in the box. A real photo, where the file exists,
   is laid over it; site.js hides the <img> if the request fails, so dropping
   a photo in later needs no markup change. */
.slot{
  position:relative;overflow:hidden;
  background:var(--grey-100);border:1.5px solid var(--grey-900);border-radius:0;
  display:flex;align-items:center;justify-content:center;
  color:var(--grey-700);font-size:13px;font-weight:600;text-align:center;padding:16px;
}
.slot-ph{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px}
.slot svg{opacity:.7}
/* No background here on purpose. These are lazy, so below the fold the
   browser has not fetched them yet; a background would paint a blank box
   over the "Photo coming soon" placeholder until the request resolves. */
.slot-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;display:block;
}
.slot-4x3{aspect-ratio:4/3}
.slot-1x1{aspect-ratio:1/1}
.slot-3x2{aspect-ratio:3/2}
.slot-16x9{aspect-ratio:16/9}

/* ---------- RFQ builder: the order form ----------
   White paper, heavy ink border, uppercase field labels. The form reads as
   the catalog's order sheet, which is exactly what it is. */
.rfq-panel{
  background:var(--white);border:3px solid var(--grey-900);border-radius:0;overflow:hidden;
  scroll-margin-top:96px;
}
.rfq-head{padding:16px 20px 12px;border-bottom:3px solid var(--grey-900);display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap}
.rfq-head h2{font-size:22px;color:var(--grey-900);margin:0;text-transform:uppercase;letter-spacing:-.01em}
.rfq-head p{font-size:13px;color:var(--grey-700);margin:0;font-weight:600}
.rfq-body{padding:18px 20px 22px;display:flex;flex-direction:column;gap:15px}

.rfq-field > label,.rfq-legend{
  display:block;font-size:12px;font-weight:800;color:var(--grey-900);
  margin:0 0 7px;padding:0;text-transform:uppercase;letter-spacing:.06em;
}
/* Required marker: a spec-sheet annotation in the same running-head voice
   as the YOUR SPEC tag, not a floating asterisk. Sits on the label line;
   optional fields keep their "(optional)" wording instead. */
.req{
  color:var(--orange-action-hover);font-size:10px;font-weight:800;
  letter-spacing:.09em;margin-left:6px;white-space:nowrap;
}
fieldset.rfq-field{border:0;margin:0;padding:0;min-width:0}
.rfq-note{font-size:12.5px;color:var(--grey-700);margin:6px 0 0;font-weight:400}
.rfq-note-orange{font-size:13px;color:var(--orange-action);margin:8px 0 0;font-weight:600}
.rfq-note-bulk{font-size:13px;color:var(--orange-action);margin:0;font-weight:700}

.chips{display:flex;flex-wrap:wrap;gap:8px}
.chip{position:relative}
.chip input{position:absolute;opacity:0;width:100%;height:100%;left:0;top:0;margin:0;cursor:pointer}
.chip span{
  display:flex;align-items:center;justify-content:center;
  background:var(--white);color:var(--grey-900);border:2px solid var(--grey-900);
  border-radius:0;padding:10px 13px;font-size:14.5px;font-weight:700;
  font-variant-numeric:tabular-nums;min-height:44px;
  transition:background-color .12s ease,color .12s ease;
}
.chip input:hover + span{background:var(--grey-100)}
.chip input:checked + span{background:var(--orange-action);border-color:var(--orange-action);color:#FFFFFF;font-weight:700}
.chip input:focus-visible + span{outline:3px solid var(--orange);outline-offset:2px}

.input,select.input,textarea.input{
  width:100%;background:var(--white);
  border:2px solid var(--grey-900);border-radius:0;
  padding:12px;font-size:16px;font-family:var(--font-body);
  color:var(--grey-900);min-height:48px;
}
.input::placeholder{color:var(--grey-700)}
.input:hover{border-color:var(--grey-800)}
/* A field the user has touched (or tried to submit) and left invalid takes
   the dark action orange on its existing 2px border: only the color moves,
   so nothing shifts at any width. The browser's own validation bubble
   supplies the message text and floats over the layout. */
.input:user-invalid{border-color:var(--orange-action-hover);background:var(--orange-tint)}
textarea.input{min-height:76px;resize:vertical;line-height:1.5}
select.input{
  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 d='M1 1.5 6 6.5l5-5' stroke='%2323272B' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;padding-right:36px;
}

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

.radio-row{display:flex;flex-wrap:wrap;gap:8px}

.rfq-spec{
  background:var(--grey-100);border:2px solid var(--grey-900);border-radius:0;
  padding:12px 14px;
  font-size:13.5px;color:var(--grey-900);line-height:1.5;
  font-variant-numeric:tabular-nums;
}
.rfq-spec .k{
  color:var(--orange-action-hover);font-size:10.5px;font-weight:800;
  letter-spacing:.09em;display:block;margin-bottom:3px;
}
.rfq-sub{font-size:12.5px;color:var(--grey-700);text-align:center;margin:0}
/* Shown only if the Formspree endpoint is still the placeholder. On the
   white order form the guard is orange-tint paper with the dark action
   orange at 5.54:1. */
.rfq-error{
  background:var(--orange-tint);border:2px solid var(--orange-action-hover);border-radius:0;
  color:var(--orange-action-hover);font-size:14px;font-weight:600;line-height:1.5;padding:12px 14px;margin:0;
}
.rfq-usa{display:flex;align-items:center;justify-content:center;gap:8px;color:var(--grey-700);font-size:12.5px;font-weight:600}
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* ---------- Cards: catalog entry boxes, hard edged ---------- */
.card{
  background:var(--white);border:1.5px solid var(--grey-900);border-radius:0;
  overflow:hidden;display:flex;flex-direction:column;
}
.card-media{border-bottom:1.5px solid var(--grey-900)}
.card-media .slot{border:0}
.card-body{padding:18px 20px 20px;display:flex;flex-direction:column;flex:1}
.card-body h3{margin-bottom:6px}
.card-body p{font-size:14.5px;line-height:1.5;margin-bottom:12px}
.card-link{font-size:14px;font-weight:800;color:var(--orange-action);margin-top:auto;text-decoration:none}
.card-link:hover{text-decoration:underline}
a.card{color:inherit;text-decoration:none}
a.card:hover{border-color:var(--orange-action);text-decoration:none}
a.card:hover h3{color:var(--orange-action-hover)}

/* ---------- The industry index: rows, not cards ---------- */
.index-list{border-top:2px solid var(--grey-900)}
.index-row{
  display:grid;grid-template-columns:132px 1fr auto;gap:18px;align-items:center;
  padding:14px 0;border-bottom:1px solid var(--grey-200);
  color:inherit;text-decoration:none;
}
.index-row:hover{text-decoration:none;background:var(--grey-100)}
.index-row:hover h3{color:var(--orange-action-hover)}
.index-row .slot{width:132px}
.index-row h3{margin:0 0 2px}
.index-row p{margin:0;font-size:14.5px}
.index-row .go{font-weight:800;font-size:14px;color:var(--orange-action-hover);white-space:nowrap;padding-right:6px}

/* ---------- The catalog table: the signature ---------- */
/* position:relative matters: the visually-hidden th labels are absolutely
   positioned, and without a positioned ancestor inside the scroll container
   they anchor to the page and drag the document's scrollable width out past
   the viewport at phone sizes. */
.catalog-scroll{position:relative;overflow-x:auto;-webkit-overflow-scrolling:touch;border:2px solid var(--grey-900);background:var(--white)}
table.sizes{border-collapse:collapse;width:100%;font-size:15px;min-width:760px}
table.sizes th{
  font-family:var(--font-body);text-align:left;font-size:12px;letter-spacing:.06em;
  text-transform:uppercase;color:var(--grey-900);background:var(--grey-100);
  padding:10px 14px;border-bottom:2px solid var(--grey-900);font-weight:800;
}
table.sizes td{padding:10px 14px;border-bottom:1px solid var(--grey-200);vertical-align:middle;font-variant-numeric:tabular-nums}
table.sizes tr:last-child td{border-bottom:0}
table.sizes .sz{font-family:var(--font-display);font-weight:900;font-size:21px;color:var(--grey-900);white-space:nowrap}
table.sizes .sz a{color:inherit;display:inline-flex;align-items:center;min-height:44px}
table.sizes .sz a:hover{color:var(--orange-action-hover);text-decoration:none}
table.sizes td.render{width:76px;padding-right:0}
table.sizes td.render svg{display:block;width:60px;height:auto}
table.sizes td.use{min-width:220px}

/* ---------- Seam comparison: one ruled two-cell figure ---------- */
.seam-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;border:2px solid var(--grey-900);margin-bottom:24px;background:var(--white)}
.seam{background:var(--white);border:0;border-radius:0;padding:22px}
.seam + .seam{border-left:2px solid var(--grey-900)}
.seam svg{display:block;width:100%;height:auto}
.seam h3{margin:14px 0 6px;text-transform:uppercase;letter-spacing:.02em}
.seam p{font-size:14.5px;margin:0}
.seam-bad h3{color:var(--grey-700)}

/* ---------- Fit guide: one ruled three-cell figure ---------- */
.fit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border:2px solid var(--grey-900);background:var(--white)}
.fit-grid .fit-card{border:0;border-radius:0}
.fit-grid .fit-card + .fit-card{border-left:2px solid var(--grey-900)}
.fit-card{background:var(--white);border:1.5px solid var(--grey-900);border-radius:0;padding:22px}
.fit-card .n{
  font-family:var(--font-display);font-weight:900;font-size:15px;
  color:#FFFFFF;background:var(--grey-900);
  width:32px;height:32px;border-radius:0;
  display:flex;align-items:center;justify-content:center;margin-bottom:12px;
}
.fit-card p{font-size:14.5px;margin:0}

/* ---------- Application rows: consistent media entries ---------- */
.app-list{border-top:2px solid var(--grey-900)}
.app-row{
  display:grid;grid-template-columns:280px 1fr;gap:22px;
  padding:22px 0;border-bottom:1px solid var(--grey-200);
  color:inherit;text-decoration:none;align-items:start;
}
.app-row:hover{text-decoration:none}
.app-row:hover h3{color:var(--orange-action-hover);text-decoration:underline}
.app-row .tag{font-size:12px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:var(--orange-action-hover);display:block;margin-bottom:5px}
.app-row h3{margin-bottom:6px}
.app-row p{font-size:15px;margin-bottom:8px}
/* The row labels ride on the grey-100 ground, where the action orange
   measures 4.11:1. They take the darker step (5.66:1 on tint, 6.29:1 on
   white), same rule as text links. */
.app-row .go{font-weight:800;font-size:14px;color:var(--orange-action-hover)}

/* Review / testimonial styles deliberately removed. Publishing invented
   customer testimonials is prohibited under the FTC rule on fake reviews,
   and build/qa.js fails on attributed quotes, star glyphs and Review
   schema. Real reviews come back with their own markup and styles. */

/* ---------- FAQ accordion ---------- */
.faq{border-top:2px solid var(--grey-900);max-width:880px}
.faq details{border-bottom:1px solid var(--grey-200)}
.faq summary{
  font-family:var(--font-display);font-weight:800;font-size:17px;color:var(--grey-900);
  padding:17px 40px 17px 0;cursor:pointer;position:relative;list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"";position:absolute;right:8px;top:50%;
  width:11px;height:11px;margin-top:-7px;
  border-right:3px solid var(--orange);border-bottom:3px solid var(--orange);
  transform:rotate(45deg);transition:transform .18s ease;
}
.faq details[open] summary::after{transform:rotate(-135deg);margin-top:-3px}
.faq summary:hover{color:var(--orange-action-hover)}
.faq .answer{padding:0 0 20px;font-size:15px;max-width:70ch}
.faq .answer p:last-child{margin-bottom:0}

/* ---------- Map / pickup ---------- */
.map-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center}
.map-frame{border:2px solid var(--grey-900);border-radius:0;overflow:hidden;line-height:0;background:var(--grey-100)}
.map-frame iframe{width:100%;height:340px;border:0;display:block}
.addr{font-style:normal;font-size:15.5px;line-height:1.7;margin-bottom:20px}
.addr a{font-weight:700}

/* ---------- Breadcrumbs ---------- */
.crumbs{font-size:13px;color:var(--grey-700);padding:16px 0 0;font-weight:600}
.crumbs ol{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px}
.crumbs li:not(:last-child)::after{content:"/";color:var(--grey-400);margin-left:6px}
.crumbs a{color:var(--grey-700)}
.crumbs a:hover{color:var(--orange-action)}
.crumbs [aria-current]{font-weight:800;color:var(--grey-900)}

/* ---------- Tables (spec / cross-reference) ---------- */
.table-scroll{position:relative;overflow-x:auto;-webkit-overflow-scrolling:touch;border:2px solid var(--grey-900);background:var(--white)}
table.spec{border-collapse:collapse;width:100%;font-size:14.5px;min-width:520px}
table.spec th,table.spec td{text-align:left;padding:11px 14px;border-bottom:1px solid var(--grey-200);font-variant-numeric:tabular-nums}
table.spec th{background:var(--grey-100);font-weight:800;color:var(--grey-900);font-size:12.5px;letter-spacing:.04em;text-transform:uppercase;border-bottom:2px solid var(--grey-900)}
table.spec tr:last-child td{border-bottom:0}
table.spec caption{caption-side:bottom;font-size:12.5px;color:var(--grey-700);padding:10px 12px;text-align:left}

/* ---------- CTA band ---------- */
.cta-band{background:var(--grey-900);padding:clamp(32px,5vw,44px) 0;border-top:3px solid var(--grey-900)}
.cta-band .wrap{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.cta-band h2{font-size:clamp(22px,3vw,28px);color:var(--white);margin:0 0 4px}
.cta-band p{font-size:14.5px;color:var(--grey-400);margin:0}

/* ---------- Footer ---------- */
.footer{background:var(--grey-900);color:var(--grey-400);padding:48px 0 0;font-size:14px}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1.2fr;gap:30px}
.footer h3{font-size:12.5px;font-family:var(--font-body);font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--white);margin:0 0 13px}
.footer ul{list-style:none;margin:0;padding:0}
.footer li{margin-bottom:9px}
.footer a{color:var(--grey-400);text-decoration:none}
.footer a:hover{color:var(--orange);text-decoration:underline}
.footer .wordmark{font-size:19px;display:inline-block;margin-bottom:10px}
.footer .wordmark .rc{color:var(--white)}
.footer address{font-style:normal;line-height:1.75;margin-bottom:14px}
.footer .promise{color:var(--white);line-height:1.6}
.footer-bottom{
  border-top:1px solid #34393E;margin-top:40px;padding:18px 0;
  font-size:12.5px;display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:120;
  gap:10px;padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.97);border-top:3px solid var(--grey-900);
  transition:transform .2s ease;
}
.mobile-cta[hidden]{display:none !important}
.mobile-cta a{
  flex:1;text-align:center;padding:14px 6px;border-radius:0;
  font-weight:700;font-size:15px;text-decoration:none;min-height:48px;
  display:flex;align-items:center;justify-content:center;
}
.mobile-cta .q{background:var(--orange-action);color:#FFFFFF;flex:1.4}
.mobile-cta .c{background:var(--grey-900);color:var(--white)}
.mobile-cta.is-down{transform:translateY(110%)}

/* ---------- Utilities ---------- */
.vh{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.center{text-align:center}
.narrow{max-width:760px}
img,svg{max-width:100%}
img{height:auto}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1000px){
  .footer-grid{grid-template-columns:1fr 1fr 1fr}
  .hero-grid{grid-template-columns:1fr;gap:30px}
}

@media (max-width:860px){
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center}
  .nav-links{
    display:none;position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--white);border-bottom:3px solid var(--grey-900);
    padding:8px 0;
  }
  .nav-links.is-open{display:flex}
  .nav-links a{padding:14px var(--pad);display:flex;align-items:center;min-height:48px}
  .nav .wrap{position:relative}
  .nav-quote{margin:8px var(--pad)}
  .grid-4,.grid-3{grid-template-columns:repeat(2,1fr)}
  .map-grid{grid-template-columns:1fr;gap:24px}
  .seam-grid{grid-template-columns:1fr}
  .seam + .seam{border-left:0;border-top:2px solid var(--grey-900)}
  .fit-grid{grid-template-columns:1fr}
  .fit-grid .fit-card + .fit-card{border-left:0;border-top:2px solid var(--grey-900)}
  .app-row{grid-template-columns:1fr;gap:12px}
  .app-row .slot{max-width:420px}
  .cta-band .wrap{flex-direction:column;align-items:flex-start}
}

@media (max-width:768px){
  .mobile-cta{display:flex}
  body{padding-bottom:76px}
  .footer{padding-bottom:0}
}

@media (max-width:600px){
  :root{--pad:18px}
  .grid-4,.grid-3,.grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:26px}
  .rfq-row{grid-template-columns:1fr}
  .strip .wrap{font-size:11.5px;gap:8px;flex-wrap:wrap}
  .hero-cta .btn{width:100%}
  .index-row{grid-template-columns:96px 1fr;gap:12px}
  .index-row .slot{width:96px}
  .index-row .go{display:none}
}

@media (max-width:380px){
  .chip span{padding:10px 10px;font-size:13.5px}
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;animation-iteration-count:1 !important;
    transition-duration:.01ms !important;scroll-behavior:auto !important;
  }
}
@media (prefers-reduced-motion:no-preference){
  html{scroll-behavior:smooth}
}

/* ---------- Print ---------- */
@media print{
  .nav,.mobile-cta,.strip,.footer{display:none}
  body{padding-bottom:0}
}
