/* Haystack Storage — "Heavy Haul" direction
   Oswald (display) + Barlow (body). Safety orange on gunmetal. */

:root {
  --bg: #F1EFEA;
  --surface: #FFFFFF;
  --surface-2: #F7F5F1;
  --ink: #1E2123;
  --muted: #585D60;
  --line: #DBD6CD;
  --accent: #C4550F;          /* orange that passes contrast on light grounds */
  --accent-bright: #EE6A1E;   /* orange for use on dark grounds / fills */
  --gunmetal: #26292B;        /* fixed dark band colour, both themes */
  --on-dark: #E9E4DB;         /* text on gunmetal */
  --on-dark-muted: #A7ACAE;
  --ok: #2F7D4F;
  --shadow: 0 1px 2px rgba(30,33,35,.06), 0 14px 34px -16px rgba(30,33,35,.22);
  --maxw: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #17191A;
    --surface: #202324;
    --surface-2: #1B1E1F;
    --ink: #E9E4DB;
    --muted: #9AA0A2;
    --line: #32373A;
    --accent: #F07A2E;
    --accent-bright: #F07A2E;
    --shadow: 0 1px 2px rgba(0,0,0,.35), 0 18px 44px -18px rgba(0,0,0,.6);
  }
}
:root[data-theme="dark"] {
  --bg: #17191A;
  --surface: #202324;
  --surface-2: #1B1E1F;
  --ink: #E9E4DB;
  --muted: #9AA0A2;
  --line: #32373A;
  --accent: #F07A2E;
  --accent-bright: #F07A2E;
  --shadow: 0 1px 2px rgba(0,0,0,.35), 0 18px 44px -18px rgba(0,0,0,.6);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Oswald", "Barlow", sans-serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); text-transform: uppercase; letter-spacing: .5px; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); text-transform: uppercase; letter-spacing: .5px; }
h3 { font-size: 1.22rem; }
p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 68px 0; border-bottom: 1px solid var(--line); }
.section--tight { padding: 44px 0; }
.section > .container > .section-kicker { margin-bottom: 10px; }

.section-kicker {
  font-family: "Barlow Semi Condensed", "Barlow", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1rem; }
.prose h3 { margin: 1.8rem 0 .5rem; }

/* hazard stripe */
.stripe {
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--accent-bright) 0 16px, var(--gunmetal) 16px 32px);
}

/* skip link */
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gunmetal); color: var(--on-dark);
  padding: 10px 16px; border-radius: 4px;
  transition: top .15s;
}
.skip:focus { top: 12px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--gunmetal);
  color: var(--on-dark);
  border-bottom: 3px solid var(--accent-bright);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--on-dark); }
.brand:hover { text-decoration: none; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-text b {
  font-family: "Oswald", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; font-size: 1.15rem; line-height: 1;
}
.brand-text > span {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: .68rem; letter-spacing: .34em; color: var(--accent-bright); font-weight: 600; line-height: 1;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--on-dark); text-decoration: none;
  font-family: "Barlow", sans-serif; font-weight: 500;
  font-size: .96rem; text-transform: uppercase; letter-spacing: .06em;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent-bright); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--on-dark-muted);
  color: var(--on-dark); border-radius: 4px; padding: 7px 10px; cursor: pointer;
  font-family: "Barlow Semi Condensed", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem;
}

@media (max-width: 860px) {
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--gunmetal); border-bottom: 3px solid var(--accent-bright);
    padding: 6px 0 12px;
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 12px 22px; border-top: 1px solid rgba(255,255,255,.07); }
  .nav .btn { margin: 10px 22px 0; text-align: center; }
  .nav-toggle { display: inline-block; }
  .site-header .container { position: relative; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Oswald", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; font-size: .95rem;
  padding: 13px 22px; border-radius: 3px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .08s ease, background .15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent-bright); color: #1c1c1c; }
.btn-primary:hover { background: #ff7d33; }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(127,127,127,.12); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ---------- hero ---------- */
.hero {
  background: var(--gunmetal); color: var(--on-dark);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 100% 0%, rgba(238,106,30,.16), transparent 60%);
  pointer-events: none;
}
.hero .container { padding-top: 74px; padding-bottom: 74px; position: relative; z-index: 1; }
.hero h1 { max-width: 16ch; }
.hero p { color: var(--on-dark-muted); font-size: 1.16rem; max-width: 52ch; margin-top: 18px; }
.hero .btn-ghost { color: var(--on-dark); }

/* ---------- fact strip ---------- */
.facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: var(--line); gap: 1px;
}
.facts div { background: var(--surface); padding: 20px; }
.facts b {
  display: block; font-family: "Oswald", sans-serif; font-size: 1.7rem; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.facts span { font-size: .92rem; color: var(--muted); }
@media (max-width: 720px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------- cards / pricing ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { text-transform: uppercase; letter-spacing: .04em; font-family: "Oswald", sans-serif; }

.price-card { display: flex; flex-direction: column; }
.price-card .tag {
  font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--accent);
}
.price-card .size { font-family: "Oswald", sans-serif; font-size: 1.5rem; text-transform: uppercase; margin-top: 2px; }
.price-card .amount {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 2.6rem; line-height: 1;
  margin: 14px 0 2px; font-variant-numeric: tabular-nums;
}
.price-card .amount small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card .desc { color: var(--muted); font-size: .95rem; }
.price-card ul { list-style: none; margin: 16px 0 22px; padding: 0; display: grid; gap: 8px; }
.price-card li { padding-left: 22px; position: relative; font-size: .95rem; }
.price-card li::before { content: "›"; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }
.price-card .btn { margin-top: auto; text-align: center; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.steps .step { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 22px; }
.steps .step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--accent); display: inline-block; margin-bottom: 8px;
  border-bottom: 2px solid var(--accent-bright); padding-bottom: 2px;
}
.steps .step h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .04em; }
.steps .step p { color: var(--muted); font-size: .95rem; margin-top: 6px; }

/* ---------- callout ---------- */
.callout {
  background: var(--surface-2); border: 1px solid var(--line);
  border-left: 5px solid var(--accent-bright); border-radius: 6px;
  padding: 22px 24px;
}
.callout h3 { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.callout p { color: var(--muted); }
.callout--dark { background: var(--gunmetal); color: var(--on-dark); border-color: var(--gunmetal); }
.callout--dark p { color: var(--on-dark-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gunmetal); color: var(--on-dark); text-align: center; }
.cta-band h2 { color: var(--on-dark); }
.cta-band p { color: var(--on-dark-muted); max-width: 48ch; margin: 12px auto 0; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-ghost { color: var(--on-dark); }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
table.data { width: 100%; border-collapse: collapse; min-width: 460px; background: var(--surface); }
table.data th, table.data td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
table.data th {
  font-family: "Barlow Semi Condensed", sans-serif; text-transform: uppercase;
  letter-spacing: .1em; font-size: .8rem; color: var(--muted); background: var(--surface-2);
}
table.data td { font-variant-numeric: tabular-nums; }
table.data tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 4px 20px;
}
.faq summary {
  cursor: pointer; padding: 16px 0; list-style: none;
  font-family: "Oswald", sans-serif; font-size: 1.06rem; text-transform: uppercase; letter-spacing: .02em;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-family: "Oswald", sans-serif; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .answer { padding: 14px 0 18px; color: var(--muted); }
.faq .answer p + p { margin-top: .8rem; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.col-span { grid-column: 1 / -1; }
.field label {
  font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--muted);
}
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--line); border-radius: 4px; padding: 11px 13px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent-bright); outline-offset: 1px; border-color: var(--accent-bright);
}
.field textarea { resize: vertical; min-height: 90px; }
.check { flex-direction: row; align-items: flex-start; gap: 10px; }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.check label { text-transform: none; letter-spacing: 0; font-size: .95rem; color: var(--ink); font-weight: 400; font-family: "Barlow", sans-serif; }
.form-note { font-size: .9rem; color: var(--muted); margin-top: 4px; }
fieldset { border: 1.5px solid var(--line); border-radius: 6px; padding: 16px 18px; margin: 0; }
fieldset legend {
  font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--accent); padding: 0 6px;
}
.radio-row { display: flex; flex-wrap: wrap; gap: 18px; }
.radio-row label { display: flex; align-items: center; gap: 8px; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink); font-family: "Barlow", sans-serif; }

/* focus visibility everywhere */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-bright); outline-offset: 2px; border-radius: 2px;
}

/* ---------- footer ---------- */
.site-footer { background: var(--gunmetal); color: var(--on-dark); }
.site-footer .container { padding-top: 48px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr; gap: 24px; } }
.site-footer h4 {
  font-family: "Barlow Semi Condensed", sans-serif; text-transform: uppercase;
  letter-spacing: .14em; font-size: .82rem; color: var(--accent-bright); margin-bottom: 12px;
}
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--accent-bright); text-decoration: underline; }
.site-footer p, .site-footer li { color: var(--on-dark-muted); font-size: .95rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: .86rem; color: var(--on-dark-muted);
}

/* ---------- misc ---------- */
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }
.divider-list { list-style: none; margin: 0; padding: 0; }
.divider-list li { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; }
.divider-list li:last-child { border-bottom: 0; }
.divider-list li b { font-family: "Oswald", sans-serif; text-transform: uppercase; font-weight: 600; font-size: .95rem; min-width: 130px; flex: none; }
@media (max-width: 620px){ .divider-list li { flex-direction: column; gap: 3px; } }

.badge {
  display: inline-block; font-family: "Barlow Semi Condensed", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .72rem;
  padding: 4px 10px; border-radius: 3px; background: rgba(238,106,30,.14); color: var(--accent);
}

.photo-ph {
  background:
    linear-gradient(135deg, rgba(238,106,30,.1), transparent),
    var(--surface-2);
  border: 1px dashed var(--line); border-radius: 6px;
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  color: var(--muted); font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; text-align: center; padding: 16px;
}
