@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --navy: #1e3a5f;
  --navy-dark: #142943;
  --red: #c8262a;
  --tan: #d9a86c;
  --tan-dark: #c99a5c;
  --brown: #5c4326;
  --cream: #faf5eb;
  --cream-2: #f2e9d8;
  --ink: #1b2430;
  --ink-soft: #4a5568;
  --white: #ffffff;
  --radius: 3px;
  --display: 'Oswald', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --shadow: 0 1px 0 rgba(27,36,48,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy-dark);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; letter-spacing: 0; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

/* ---------- header ---------- */
.site-header {
  border-bottom: 3px solid var(--navy-dark);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-dark);
  line-height: 1;
}
.brand-text b { color: var(--red); }

nav.main-nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; order: 3; width: 100%; }
@media (min-width: 861px) { nav.main-nav { width: auto; order: 0; gap: 28px; } }
nav.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] { border-bottom-color: var(--red); color: var(--navy-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--navy-dark);
  white-space: nowrap;
}
.btn-primary { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-primary:hover { background: #a91e21; border-color: #a91e21; }
.btn-outline { background: transparent; color: var(--navy-dark); }
.btn-outline:hover { background: var(--navy-dark); color: var(--white); }

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--tan);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-art { justify-self: center; }

/* ---------- tracking bar (signature element) ---------- */
.tracking {
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 0;
  margin: 40px 0;
  border: 1.5px solid var(--navy-dark);
  background: var(--white);
}
.tracking-step {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  border-right: 1.5px dashed var(--tan-dark);
}
.tracking-step:last-child { border-right: none; }
.tracking-step.active { background: var(--navy-dark); color: var(--white); }
.tracking-step.done { background: var(--cream-2); color: var(--navy-dark); }

/* ---------- sections ---------- */
section { padding: 64px 0; }
section.alt { background: var(--white); border-top: 1px solid var(--tan); border-bottom: 1px solid var(--tan); }
.section-head { max-width: 640px; margin-bottom: 40px; }

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

/* ---------- tape card (signature motif) ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--tan);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 18px;
  width: 64px;
  height: 22px;
  background: var(--tan);
  opacity: 0.85;
  transform: rotate(6deg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; margin-bottom: 0; }
.card .tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.stamp {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 4px 10px;
  border-radius: 999px;
  transform: rotate(-3deg);
}

/* ---------- packing-slip pricing table ---------- */
.slip {
  background: var(--white);
  border: 1.5px solid var(--navy-dark);
}
.slip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 24px;
  border-bottom: 1.5px dashed var(--tan-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
table.price-table { width: 100%; border-collapse: collapse; }
table.price-table caption {
  text-align: left;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-dark);
  padding: 18px 24px 8px;
}
table.price-table th, table.price-table td {
  text-align: left;
  padding: 10px 24px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--cream-2);
}
table.price-table th {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
  border-bottom: 1.5px solid var(--tan-dark);
}
table.price-table td:last-child, table.price-table th:last-child {
  text-align: right;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--navy-dark);
}
table.price-table tbody tr:hover { background: var(--cream); }

.note-box {
  background: var(--cream-2);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 32px 0;
}
.note-box strong { color: var(--ink); }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--tan-dark);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  font-family: var(--mono);
  font-weight: 600;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ---------- footer CTA ---------- */
.cta-band {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #c7d2e0; }
.cta-band .btn-primary { background: var(--red); border-color: var(--red); }
.cta-band .btn-outline { color: var(--white); border-color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--navy-dark); }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: #a9b4c2;
  padding: 40px 0 28px;
  font-size: 0.85rem;
}
footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer.site-footer a { color: #d7dee7; text-decoration: none; }
footer.site-footer a:hover { color: var(--tan); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- form ---------- */
.form-grid { display: grid; gap: 16px; max-width: 560px; }
.form-grid label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 6px;
}
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 11px 12px;
  border: 1.5px solid var(--tan-dark);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  border-color: var(--navy-dark);
  outline: none;
}
.radio-row { display: flex; gap: 20px; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: 0.92rem; color: var(--ink); }
.radio-row input { width: auto; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { justify-self: start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .tracking { flex-direction: column; }
  .tracking-step { border-right: none; border-bottom: 1.5px dashed var(--tan-dark); }
  .tracking-step:last-child { border-bottom: none; }
  footer.site-footer .wrap { flex-direction: column; }
  .radio-row { flex-direction: column; gap: 8px; }
}
