:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #142019;
  --muted: #5b6961;
  --paper: #f5f3eb;
  --line: #d7d7cd;
  --accent: #1e6a46;
  --accent-ink: #fff;
}

* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); }
body { margin: 0; min-height: 100vh; }
body.za {
  --paper: #f5efe5;
  --ink: #241c15;
  --muted: #706255;
  --line: #d9cbbb;
  --accent: #a63f27;
}
body.cart {
  --paper: #f0f3f8;
  --ink: #101a2b;
  --muted: #566176;
  --line: #cbd3df;
  --accent: #3658d4;
}
body.panel {
  --paper: #edf5f2;
  --ink: #10251f;
  --muted: #526b63;
  --line: #c7d9d2;
  --accent: #087b63;
}

a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 2;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { font-weight: 800; letter-spacing: -.03em; text-decoration: none; font-size: 1.2rem; }
.brand span { color: var(--accent); }
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-size: .93rem; }
nav a[aria-current="page"], nav a:hover { color: var(--ink); }

main { padding: 78px 0 88px; }
.eyebrow { color: var(--accent); font-weight: 750; letter-spacing: .13em; text-transform: uppercase; font-size: .75rem; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); line-height: .92; letter-spacing: -.07em; max-width: 900px; margin: 18px 0 28px; }
h2 { font-size: clamp(1.7rem, 4vw, 3rem); letter-spacing: -.045em; margin: 0; }
.lead, .lede { max-width: 670px; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; color: var(--muted); }
.page-head h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button, button {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button.primary, button.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.button:hover, button:hover { transform: translateY(-1px); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 70px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 34px; }
.feature { border-top: 2px solid var(--accent); padding-top: 18px; }
.feature h3 { margin: 0 0 10px; }
.feature p { color: var(--muted); line-height: 1.55; margin: 0; }
.card { border-top: 2px solid var(--accent); padding-top: 20px; }
.card h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin: 6px 0 12px; }
.card p { color: var(--muted); line-height: 1.55; }
.kicker { color: var(--accent) !important; font-size: .75rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.text-link { color: var(--accent); font-weight: 700; text-decoration: none; }
.crosslink {
  margin-top: 70px;
  padding: 34px 0;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.crosslink p { margin: 8px 0 0; color: var(--muted); }
.consent { margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); }
.consent p { color: var(--muted); max-width: 620px; }
.consent form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.order-summary { margin: 44px 0 70px; border-block: 1px solid var(--line); }
.order-summary > div { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.order-summary > div:last-child { border-bottom: 0; }
.order-summary .total { font-size: 1.25rem; color: var(--accent); }
.tags { margin: 28px 0 42px; border-top: 1px solid var(--line); }
.tags > div { display: grid; grid-template-columns: minmax(130px, .45fr) 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.tags > span { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); overflow-wrap: anywhere; }
.tags > span strong { color: var(--ink); }
.tags dt { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.tags dd { margin: 0; overflow-wrap: anywhere; font-weight: 650; }
footer { border-top: 1px solid var(--line); padding: 28px 0 44px; color: var(--muted); font-size: .88rem; }

@media (max-width: 760px) {
  .nav { align-items: flex-start; padding: 20px 0; flex-direction: column; gap: 14px; }
  nav { gap: 14px; }
  main { padding-top: 54px; }
  .grid { grid-template-columns: 1fr; }
  .crosslink { align-items: flex-start; flex-direction: column; }
}
