:root {
  --pine: #111111;
  --forest: #1a1a1a;
  --leaf: #2f6a4a;
  --sage: #8aa384;
  --moss: #d7d0c6;
  --cream: #f3efe4;
  --paper: #f7f4ee;
  --white: #fcfbf8;
  --ochre: #c4122a;
  --ochre-deep: #9a0e24;
  --bark: #3a2a1c;
  --ink: #161410;
  --muted: #5c5a52;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
  --radius: 18px;
  --header-h: 92px;
  --font-display: "Source Serif 4", "Georgia", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--ochre);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ochre-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

h1,
.display {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0.85rem 0 0;
}

.lede {
  font-size: 1.2rem;
  max-width: 42rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ochre);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ochre-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 239, 228, 0.35);
}

.btn-ghost:hover {
  background: rgba(243, 239, 228, 0.1);
}

.btn-dark {
  background: var(--pine);
  color: var(--cream);
}

.btn-dark:hover {
  background: #1b382b;
}

.btn-line {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}

.topbar {
  background: var(--pine);
  color: var(--moss);
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}

.topbar a:hover {
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 0.9rem;
  border-radius: 8px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  color: var(--forest);
}

.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-text span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ochre-deep);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--pine);
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
  background: var(--pine);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.58) 0%, rgba(8, 8, 8, 0.22) 52%, rgba(8, 8, 8, 0.12)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.hero h1 {
  max-width: 22ch;
  margin-top: 0.9rem;
}

.hero .lede {
  color: var(--moss);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.stat {
  background: var(--white);
  padding: 1.4rem 1.2rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--forest);
}

.stats-single {
  grid-template-columns: 1fr;
  text-align: center;
}

.packshot-photo {
  background: var(--white);
  min-height: 240px;
  padding: 1.2rem 1.1rem 0.8rem;
}

.packshot-photo img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-head p {
  max-width: 36rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}

.pillar .num {
  font-family: var(--font-display);
  color: var(--ochre-deep);
  font-size: 1.8rem;
}

.areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.area {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--cream);
}

.area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.area span {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 0.9rem 0.9rem;
  background: linear-gradient(transparent, rgba(18, 38, 29, 0.88));
  font-weight: 650;
}

.pack-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.packshot {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 40%),
    linear-gradient(160deg, #dfe8d8, #b7c7b0 55%, #8ea58a);
}

.packshot.duenger {
  background: linear-gradient(160deg, #efe3c8, #d4b06a 58%, #9d7a38);
}

.packshot.baum {
  background: linear-gradient(160deg, #d9cbb8, #8d6b4a 55%, #4d3524);
}

.packshot.bio {
  background: linear-gradient(160deg, #dce7ef, #7f9aab 55%, #355468);
}

.packshot.spezial {
  background: linear-gradient(160deg, #eadfd0, #c4a48a 55%, #6d5342);
}

.canister,
.sack,
.tub,
.roll {
  position: relative;
  color: var(--pine);
  text-align: center;
}

.canister {
  width: 92px;
  height: 128px;
  background: linear-gradient(#f7f4ea, #e4dcc8);
  border-radius: 10px 10px 14px 14px;
  box-shadow: 0 12px 24px rgba(18, 38, 29, 0.18);
}

.canister::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 34px;
  height: 16px;
  transform: translateX(-50%);
  background: #2a2a28;
  border-radius: 4px 4px 2px 2px;
}

.bottle {
  position: relative;
  width: 58px;
  height: 128px;
  background: linear-gradient(#f7f4ea, #e4dcc8);
  border-radius: 18px 18px 12px 12px;
  box-shadow: 0 12px 24px rgba(18, 38, 29, 0.18);
  color: var(--pine);
  text-align: center;
}

.bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 22px;
  height: 14px;
  transform: translateX(-50%);
  background: #2a2a28;
  border-radius: 3px;
}

.bottle strong,
.canister strong,
.sack strong,
.tub strong,
.roll strong {
  display: block;
  padding-top: 2.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.bottle span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bottle strong {
  font-size: 1.05rem;
  padding-top: 2.6rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.shop-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.shop-buy {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0 1.2rem 1.2rem;
}

.shop-buy .btn {
  min-height: 2.6rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.92rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ochre-deep);
  line-height: 1.1;
}

.price-lg {
  font-size: 2.2rem;
  margin-top: 0.8rem;
}

.price-unit {
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.cart-count {
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--ochre);
  color: #fff;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: end;
  margin-top: 1.2rem;
}

.qty-row label,
.qty-input {
  max-width: 7rem;
}

.cart-summary .btn {
  width: 100%;
  margin-top: 0.8rem;
}

.shop-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--pine);
  color: var(--cream);
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 80;
}

.shop-toast.show {
  opacity: 1;
  transform: none;
}

.canister span,
.sack span,
.tub span,
.roll span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sack {
  width: 118px;
  height: 128px;
  background: #6f4f2d;
  color: #f3efe4;
  clip-path: polygon(8% 8%, 92% 8%, 100% 100%, 0 100%);
}

.tub {
  width: 118px;
  height: 92px;
  background: linear-gradient(#f4efe3, #d9cfb8);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(18, 38, 29, 0.18);
}

.roll {
  width: 140px;
  height: 84px;
  background: #1f4a38;
  color: var(--cream);
  border-radius: 8px;
}

.stack {
  width: 120px;
  height: 92px;
  background: repeating-linear-gradient(-8deg, #f4efe3, #f4efe3 14px, #d7c8ae 14px, #d7c8ae 16px);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(18, 38, 29, 0.18);
  color: var(--pine);
  text-align: center;
}

.stack strong {
  display: block;
  padding-top: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.stack span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--pine);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
}

.product-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.product-body h3 {
  font-size: 1.22rem;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.chip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 650;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.compare article {
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  min-height: 280px;
}

.compare .pro {
  background: var(--pine);
  color: var(--cream);
}

.compare .hobby {
  background: var(--white);
  border: 1px solid var(--line);
}

.compare ul {
  margin: 1rem 0 1.4rem;
  padding-left: 1.1rem;
}

.cta-band {
  background: var(--forest);
  color: var(--cream);
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(184, 137, 58, 0.16), transparent 28%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 2rem;
}

.filter-bar button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

.filter-bar button[aria-pressed="true"],
.filter-bar button:hover {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}

.detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.detail .packshot {
  min-height: 420px;
  border-radius: var(--radius);
}

.detail .packshot-photo img {
  height: 360px;
}

.specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2rem;
}

.specs th,
.specs td {
  text-align: left;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.specs th {
  width: 38%;
  color: var(--muted);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.notice {
  background: #efe6cf;
  border-left: 4px solid var(--ochre);
  padding: 0.9rem 1rem;
  border-radius: 0 12px 12px 0;
}

.notice-error {
  background: #f8e6e6;
}

.bank-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: #f7f3e8;
  border: 1px solid #d9cda8;
  border-radius: 12px;
}

.notice .bank-box {
  margin-top: 0.85rem;
  background: #fffdf6;
}

.bank-box h2 {
  font-size: 1.05rem;
  margin: 0 0 0.7rem;
}

.bank-list {
  margin: 0;
}

.bank-list > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.2rem 0.8rem;
  padding: 0.28rem 0;
  border-bottom: 1px solid #e6dcc0;
}

.bank-list dt {
  margin: 0;
  font-weight: 600;
  color: var(--pine);
}

.bank-list dd {
  margin: 0;
  font-family: ui-monospace, Consolas, "Liberation Mono", monospace;
  word-break: break-word;
}

.bank-box .meta {
  margin: 0.8rem 0 0;
}

.site-footer {
  background: var(--pine);
  color: var(--moss);
  padding: 3.5rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a:hover,
.site-footer strong {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(243, 239, 228, 0.12);
  font-size: 0.88rem;
}

.list-plain {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
}

.list-plain li + li {
  margin-top: 0.4rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.catalog-table th,
.catalog-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.catalog-table th {
  background: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .stats,
  .pillars,
  .pack-grid,
  .product-grid,
  .compare,
  .split,
  .detail,
  .footer-grid,
  .form-row,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .areas {
    grid-template-columns: 1fr 1fr;
  }

  .section-head,
  .cta-band .container {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.12) 0%, rgba(8, 8, 8, 0.28) 38%, rgba(8, 8, 8, 0.82) 100%);
  }

  .logo-img {
    height: 48px;
  }

  .logo-text span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.4rem;
    border-bottom: 1px solid var(--line);
    gap: 0.9rem;
  }

  .nav.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .areas {
    grid-template-columns: 1fr 1fr;
  }

  .stats,
  .stats-single {
    grid-template-columns: 1fr;
  }

  h1,
  .display {
    font-size: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .product-card {
    transition: none;
  }
}

#a11y-root {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.a11y-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--pine);
  color: var(--cream);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.a11y-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.a11y-panel {
  width: min(22rem, calc(100vw - 2rem));
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.a11y-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.a11y-close {
  border: 0;
  background: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}

.a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.a11y-grid button {
  min-height: 3.1rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.a11y-grid button[aria-pressed="true"] {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}

html.a11y-font {
  font-size: calc(100% * var(--a11y-font, 1));
}

html.a11y-readable,
html.a11y-readable body {
  font-family: Arial, Helvetica, sans-serif;
}

html.a11y-contrast {
  filter: contrast(1.35);
}

html.a11y-no-anim *,
html.a11y-no-anim *::before,
html.a11y-no-anim *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-keyboard :focus {
  outline: 3px solid var(--ochre) !important;
  outline-offset: 3px;
}

html.a11y-headings h1,
html.a11y-headings h2,
html.a11y-headings h3 {
  outline: 2px solid var(--ochre);
  outline-offset: 4px;
}

html.a11y-links a,
html.a11y-links button {
  text-decoration: underline !important;
  text-underline-offset: 0.18em;
}
