/* SMOALD Aggregates — slate, stone and safety yellow */

:root {
  --bg: #F3F2EF;
  --paper: #FFFFFF;
  --band: #E7E5E0;
  --ink: #1E2226;
  --muted: #595F66;
  --slate: #2B3137;
  --slate-deep: #1A1E22;
  --yellow: #F2B705;
  --yellow-deep: #8A6500;
  --line: #D4D1CA;

  --display: "Archivo Black", Impact, sans-serif;
  --body: "Work Sans", system-ui, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; }
img, svg { display: block; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 4px; z-index: 20; }
.skip:focus { left: 8px; }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.15rem; text-decoration: none; letter-spacing: .01em; text-transform: uppercase; }
.brand span { color: var(--yellow); }
.mark { width: 26px; height: 26px; fill: var(--yellow); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: var(--slate-deep); color: #fff; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,.72); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta { color: var(--slate-deep); background: var(--yellow); padding: 8px 16px; border-radius: 3px; font-weight: 700; }
.nav-links .nav-cta:hover { color: var(--slate-deep); background: #fff; }

/* Type */
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 12px; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.08; }
h1 { font-size: clamp(2.2rem, 5.6vw, 3.9rem); max-width: 18ch; text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); max-width: 22ch; }
h3 { font-size: 1.1rem; }

/* Buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-block; padding: 13px 24px; border-radius: 3px; font-weight: 700; text-decoration: none; border: 2px solid transparent; transition: background .15s, color .15s; }
.btn-primary { background: var(--yellow); color: var(--slate-deep); }
.btn-primary:hover { background: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { border-color: #fff; }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.05) 0 2px, transparent 3px) 0 0 / 22px 22px,
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.04) 0 1.5px, transparent 2.5px) 0 0 / 17px 17px,
    linear-gradient(160deg, #3A424A 0%, var(--slate) 45%, var(--slate-deep) 100%);
  color: #fff;
  padding: 110px 0 120px;
}
.hero .eyebrow { color: var(--yellow); }
.lede { font-size: 1.2rem; max-width: 58ch; margin-top: 22px; color: rgba(255,255,255,.82); }
.hero-note { margin-top: 26px; font-size: .9rem; color: rgba(255,255,255,.62); border-left: 3px solid var(--yellow); padding-left: 12px; }
.stripe { position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: repeating-linear-gradient(135deg, var(--yellow) 0 18px, var(--slate-deep) 18px 36px); }

/* Sections */
.section { padding: 96px 0; }
.band { background: var(--band); }
.section-lede { max-width: 60ch; margin-top: 16px; color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.prose p + p { margin-top: 16px; }
.prose p { color: var(--muted); }
.prose strong { color: var(--ink); }

.facts { list-style: none; margin-top: 26px; border-top: 1px solid var(--line); }
.facts li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.facts span { color: var(--ink); font-weight: 700; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card { background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--yellow); border-radius: 3px; padding: 24px; }
.card p { margin-top: 10px; color: var(--muted); font-size: .98rem; }

/* Timeline */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.timeline li { position: relative; padding-top: 22px; border-top: 3px solid var(--slate); }
.timeline li::before { content: ""; position: absolute; top: -8px; left: 0; width: 13px; height: 13px; background: var(--yellow); border: 2px solid var(--slate); }
.when { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow-deep); }
.timeline h3 { margin-top: 6px; }
.timeline p { margin-top: 8px; color: var(--muted); font-size: .96rem; }

/* Founding Trade Accounts */
.list { background: var(--slate-deep); color: #fff; text-align: center; }
.list-inner { max-width: 640px; }
.list-mark { width: 52px; height: 52px; margin: 0 auto 20px; fill: var(--yellow); }
.list h2 { margin: 0 auto; }
.list p { margin: 18px auto 28px; color: rgba(255,255,255,.75); }
.list .small { font-size: .88rem; margin: 18px auto 0; color: rgba(255,255,255,.55); }

/* Footer */
.footer { background: var(--slate-deep); color: rgba(255,255,255,.6); border-top: 1px solid rgba(255,255,255,.08); padding: 40px 0; font-size: .92rem; }
.footer-inner { display: grid; gap: 8px; }
.foot-brand { color: #fff; margin-bottom: 6px; }
.footer a { color: var(--yellow); }

/* Phones */
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 20px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .brand { font-size: .95rem; }
  .hero { padding: 72px 0 84px; }
  .section { padding: 68px 0; }
  .cards, .timeline { grid-template-columns: 1fr; }
}
