:root {
  --paper: #fbfaf6;
  --paper-2: #f3f0e8;
  --surface: #ffffff;
  --ink: #19322d;
  --muted: #61716d;
  --line: #dfe4dc;
  --sage: #55776b;
  --sage-dark: #284f45;
  --sage-pale: #e6eee9;
  --amber: #c58a3d;
  --amber-pale: #f3e6d1;
  --danger: #813e31;
  --shadow: 0 22px 60px rgba(41, 65, 58, .10);
  --shadow-small: 0 8px 25px rgba(41, 65, 58, .08);
  --radius: 24px;
  --radius-small: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(197, 138, 61, .7); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--sage-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 25px; height: 1px; background: var(--amber); content: ""; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1em; }
.lead { color: #435b55; font-size: clamp(1.08rem, 1.7vw, 1.32rem); line-height: 1.65; }
.small { font-size: .88rem; }
.muted { color: var(--muted); }

.utility-bar {
  background: var(--ink);
  color: #f5f1e8;
  font-size: .77rem;
  letter-spacing: .045em;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  text-align: center;
}
.utility-dot { color: #d9a75e; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 228, 220, .8);
  background: rgba(251, 250, 246, .94);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: url("../images/logo-mark-header.png") center / contain no-repeat;
  filter: drop-shadow(0 5px 10px rgba(25, 50, 45, .16));
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Avenir Next", "Segoe UI", sans-serif; font-size: 1.02rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; color: #3f5751; font-size: .9rem; font-weight: 600; text-decoration: none; }
.nav-link::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--amber); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--ink); }
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 7px; }
.nav-dropdown > .nav-link::before { order: 2; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; content: ""; transform: translateY(-2px) rotate(45deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 540px;
  margin: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: .2s ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-menu a { display: flex; justify-content: space-between; padding: 11px 13px; border-radius: 9px; color: #3f5751; font-size: .86rem; text-decoration: none; }
.dropdown-menu a:hover { background: var(--sage-pale); color: var(--ink); }
.dropdown-menu a::after { color: var(--amber); content: "↗"; }
.header-pill { padding: 10px 16px; border: 1px solid var(--sage); border-radius: 999px; color: var(--sage-dark); text-decoration: none; }
.menu-toggle { display: none; width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 18px; height: 1px; margin: auto; background: var(--ink); content: ""; }
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(5px); }

.hero { padding: 28px 0 76px; }
.hero-shell {
  position: relative;
  min-height: 640px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(410px, .92fr) minmax(0, 1.35fr);
  align-items: stretch;
  border-radius: 34px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}
.hero-shell > img {
  width: 100%;
  height: 592px;
  grid-column: 2;
  grid-row: 1;
  border-radius: 25px;
  object-fit: cover;
}
.hero-card {
  position: relative;
  z-index: 2;
  width: auto;
  min-width: 0;
  margin: 38px -40px 38px 0;
  padding: clamp(30px, 3.5vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 26px;
  background: rgba(255, 255, 252, .97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-card h1 { max-width: 10ch; font-size: clamp(3rem, 5vw, 4.75rem); }
.hero-card .lead { max-width: 40ch; margin: 20px 0 26px; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
  cursor: pointer;
}
.btn::after { content: "↗"; }
.btn:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--sage-dark); }
.btn-secondary:hover { background: var(--sage-pale); color: var(--sage-dark); }
.btn-plain::after { display: none; }
.hero-index {
  position: absolute;
  right: 42px;
  bottom: 42px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(25, 50, 45, .84);
  color: #fff;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.stat { padding: 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 3px; font-family: "Avenir Next", "Segoe UI", sans-serif; font-size: 1.85rem; font-weight: 500; letter-spacing: -.04em; }
.stat span { color: var(--muted); font-size: .83rem; }

.section { padding: 110px 0; }
.section-tight { padding: 72px 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #f8f5ec; }
.section-dark .lead, .section-dark .muted { color: #bdcbc7; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-head h2 { max-width: 13ch; }
.section-head p { max-width: 48ch; margin: 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--sage-dark); font-weight: 700; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.section-dark .text-link { color: #f0c98b; }

.category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.category-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  grid-column: span 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  box-shadow: var(--shadow-small);
}
.category-card:nth-child(1), .category-card:nth-child(2), .category-card:nth-child(9), .category-card:nth-child(10) { grid-column: span 6; }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card::after { position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(17, 39, 34, .93)); content: ""; }
.category-card:hover img { transform: scale(1.035); }
.category-card-content { position: relative; z-index: 1; color: #fff; }
.category-card .number { display: block; margin-bottom: 12px; color: #ecd09f; font-size: .73rem; letter-spacing: .14em; }
.category-card p { max-width: 36ch; margin: 10px 0 0; color: #dce6e2; font-size: .87rem; }
.category-card .arrow { position: absolute; z-index: 2; top: 22px; right: 22px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); }

.plain-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-small); }
.plain-card h3 { margin-bottom: 13px; }
.plain-card p:last-child { margin-bottom: 0; }
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.two-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.four-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.icon-disc { width: 46px; height: 46px; margin-bottom: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--amber-pale); color: var(--sage-dark); font-family: "Avenir Next", "Segoe UI", sans-serif; font-weight: 700; }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.15); }
.process-item { position: relative; min-height: 260px; padding: 33px; background: var(--ink); counter-increment: process; }
.process-item::before { display: block; margin-bottom: 70px; color: #e9bd79; font-size: .78rem; letter-spacing: .12em; content: "0" counter(process); }
.process-item p { margin-top: 12px; color: #bdcbc7; font-size: .9rem; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.split-media { min-height: 510px; border-radius: var(--radius); overflow: hidden; background: #ddd4c8; }
.split-media img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.check-list, .link-list { margin: 28px 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 30px; }
.check-list li::before { position: absolute; left: 0; top: .48em; width: 16px; height: 16px; border: 1px solid var(--sage); border-radius: 50%; color: var(--sage); content: "✓"; font-size: .65rem; line-height: 14px; text-align: center; }
.link-list li { border-top: 1px solid var(--line); }
.link-list li:last-child { border-bottom: 1px solid var(--line); }
.link-list a { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; text-decoration: none; }
.link-list a::after { color: var(--amber); content: "↗"; }

.page-hero { padding: 72px 0 52px; }
.breadcrumb { margin: 0 0 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .78rem; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 8px; color: #a7b1ae; content: "/"; }
.breadcrumb a { text-decoration: none; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; }
.page-hero h1 { max-width: 11ch; }
.page-hero-copy .lead { margin-top: 26px; }
.page-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tag { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); color: var(--muted); font-size: .73rem; }
.page-image { height: 520px; margin-top: 44px; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); }
.page-image img { width: 100%; height: 100%; object-fit: cover; }

.toc { position: sticky; top: 110px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.toc-title { margin-bottom: 12px; font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.toc a { display: block; padding: 8px 0; color: var(--muted); font-size: .86rem; text-decoration: none; }
.toc a:hover { color: var(--ink); }
.content-layout { display: grid; grid-template-columns: 230px minmax(0, 820px); justify-content: space-between; gap: 80px; }
.content-layout > * { min-width: 0; }
.content-prose { min-width: 0; overflow-wrap: anywhere; }
.content-prose h2 { margin: 75px 0 24px; font-size: clamp(1.7rem, 3vw, 2.7rem); scroll-margin-top: 120px; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 { margin: 38px 0 14px; font-size: 1.35rem; scroll-margin-top: 120px; }
.content-prose p, .content-prose li { color: #435b55; }
.content-prose ul, .content-prose ol { margin: 18px 0 24px; padding-left: 22px; }
.content-prose li { margin: 8px 0; }
.content-prose strong { color: var(--ink); }
.callout { margin: 34px 0; padding: 26px 28px; border-left: 3px solid var(--amber); border-radius: 0 14px 14px 0; background: var(--amber-pale); }
.callout p:last-child { margin-bottom: 0; }
.callout-sage { border-left-color: var(--sage); background: var(--sage-pale); }
.spec-table-wrap { max-width: 100%; margin: 28px 0 38px; border: 1px solid var(--line); border-radius: 16px; overflow-x: auto; background: var(--surface); }
.spec-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.spec-table th, .spec-table td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { background: var(--sage-pale); color: var(--ink); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td { color: #435b55; }

.supplier-toolbar { margin-bottom: 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); cursor: pointer; }
.filter-btn:hover, .filter-btn.is-active { border-color: var(--sage-dark); background: var(--sage-dark); color: #fff; }
.search-field { width: min(100%, 330px); padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); }
.supplier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.supplier-card { padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-small); }
.supplier-card[hidden] { display: none; }
.supplier-type { display: inline-flex; align-self: flex-start; margin-bottom: 22px; padding: 6px 9px; border-radius: 999px; background: var(--sage-pale); color: var(--sage-dark); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.supplier-card p { color: var(--muted); font-size: .88rem; }
.supplier-card .supplier-meta { margin: auto 0 20px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.supplier-card .text-link { font-size: .85rem; }
.results-count { color: var(--muted); font-size: .84rem; }

.faq { margin-top: 35px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 23px 3px; display: flex; justify-content: space-between; gap: 20px; border: 0; background: transparent; color: var(--ink); font-weight: 600; text-align: left; cursor: pointer; }
.faq-question::after { color: var(--amber); content: "+"; font-size: 1.3rem; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 35px 22px 3px; color: var(--muted); }
.faq-answer.is-open { display: block; }

.notice-panel { padding: 34px; border: 1px solid #ead0aa; border-radius: var(--radius); background: #fff7eb; }
.notice-panel strong { display: block; margin-bottom: 7px; color: var(--danger); }
.emergency-card { margin: 30px 0; padding: 34px; border-radius: var(--radius); background: var(--ink); color: #f7faf8; }
.emergency-card p,
.emergency-card .lead { color: #e8f0ed; }
.emergency-card a { color: #ffd18a; text-decoration-color: rgba(255, 209, 138, .72); text-decoration-thickness: 2px; }
.emergency-card a:hover { color: #fff; text-decoration-color: #fff; }
.legal-updated { margin-top: 28px; color: var(--muted); font-size: .78rem; }

.cta-band { padding: 55px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 45px; align-items: center; border-radius: 30px; background: var(--amber-pale); }
.cta-band h2 { max-width: 13ch; }
.cta-band p { margin: 0; color: #52615e; }

.site-footer { padding: 80px 0 28px; background: #142b26; color: #eef2ed; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 55px; }
.footer-brand p { max-width: 37ch; margin-top: 20px; color: #aebfba; font-size: .88rem; }
.footer-heading { margin-bottom: 18px; color: #f1c887; font-size: .73rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.footer-links a, .footer-button { padding: 0; border: 0; background: none; color: #c5d2ce; font-size: .84rem; text-decoration: none; cursor: pointer; }
.footer-links a:hover, .footer-button:hover { color: #fff; }
.footer-bottom { margin-top: 62px; padding-top: 22px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.13); color: #96aaa4; font-size: .75rem; }

.modal-backdrop { position: fixed; z-index: 200; inset: 0; display: none; place-items: center; padding: 20px; background: rgba(10, 28, 24, .84); backdrop-filter: blur(12px); }
.modal-backdrop.is-open { display: grid; }
.age-modal { width: min(100%, 610px); padding: clamp(30px, 6vw, 58px); border: 1px solid rgba(255,255,255,.7); border-radius: 30px; background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.35); text-align: center; }
.age-symbol { width: 76px; height: 76px; margin: 0 auto 25px; display: grid; place-items: center; border: 1px solid var(--amber); border-radius: 50%; color: var(--ink); font-family: "Avenir Next", "Segoe UI", sans-serif; font-size: 1.3rem; font-weight: 700; }
.age-modal h2 { margin-bottom: 18px; }
.age-modal p { color: var(--muted); }
.age-actions { margin-top: 27px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.cookie-banner { position: fixed; z-index: 160; right: 20px; bottom: 20px; width: min(calc(100% - 40px), 470px); padding: 24px; display: none; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); }
.cookie-banner.is-open { display: block; }
.cookie-banner h3 { margin-bottom: 10px; font-size: 1.08rem; }
.cookie-banner p { color: var(--muted); font-size: .82rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cookie-actions .btn { min-height: 40px; padding: 8px 14px; font-size: .78rem; }

.back-to-top { position: fixed; z-index: 40; right: 20px; bottom: 20px; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--ink); box-shadow: var(--shadow-small); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 1050px) {
  .main-nav { position: fixed; inset: 115px 20px auto; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-list { display: grid; gap: 4px; }
  .nav-link { display: block; padding: 10px 3px; }
  .nav-dropdown > .nav-link::before { display: none; }
  .dropdown-menu { position: static; width: auto; margin: 2px 0 8px; padding: 5px 0 5px 14px; grid-template-columns: 1fr 1fr; border: 0; border-left: 1px solid var(--line); border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .dropdown-menu a { padding: 7px 10px; }
  .menu-toggle { display: block; }
  .header-pill { margin-left: auto; }
  .hero-shell { grid-template-columns: minmax(350px, .95fr) minmax(0, 1.2fr); }
  .hero-card { margin-right: -30px; }
  .supplier-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 800px) {
  .utility-inner { min-height: 43px; flex-wrap: wrap; gap: 5px 8px; padding: 7px 0; }
  .header-inner { min-height: 70px; }
  .brand-copy small, .header-pill { display: none; }
  .main-nav { inset: 112px 16px auto; max-height: calc(100vh - 135px); overflow-y: auto; }
  .dropdown-menu { grid-template-columns: 1fr; }
  .hero { padding-top: 18px; }
  .hero-shell { min-height: 0; padding: 14px; grid-template-columns: 1fr; }
  .hero-shell > img { width: 100%; height: 400px; min-height: 0; grid-column: 1; grid-row: 1; object-position: center; }
  .hero-card { width: auto; margin: -92px 18px 18px; padding: 30px; grid-column: 1; grid-row: 2; }
  .hero-card h1 { max-width: 11ch; font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-index { top: 30px; right: 30px; bottom: auto; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 75px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 20px; }
  .category-card, .category-card:nth-child(1), .category-card:nth-child(2), .category-card:nth-child(9), .category-card:nth-child(10) { grid-column: span 6; }
  .three-grid, .four-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .split, .page-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .split-media, .split-media img { min-height: 400px; }
  .page-hero { padding-top: 45px; }
  .page-image { height: 420px; }
  .content-layout { grid-template-columns: 1fr; gap: 40px; }
  .toc { position: static; }
  .cta-band { grid-template-columns: 1fr; padding: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  h2 { font-size: 2.15rem; }
  .hero-shell > img { height: 350px; }
  .hero-card { margin: -72px 10px 10px; padding: 25px; }
  .hero-card h1 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
  .hero-card .lead { margin: 17px 0 22px; }
  .stats-row, .three-grid, .two-grid, .four-grid, .supplier-grid, .process { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .category-card, .category-card:nth-child(1), .category-card:nth-child(2), .category-card:nth-child(9), .category-card:nth-child(10) { min-height: 340px; grid-column: span 12; }
  .process-item { min-height: auto; }
  .process-item::before { margin-bottom: 35px; }
  .page-image { height: 330px; }
  .supplier-toolbar { align-items: stretch; }
  .search-field { width: 100%; }
  .cta-band { padding: 29px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { display: block; }
  .age-actions, .cookie-actions { display: grid; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .utility-bar, .site-header, .site-footer, .cookie-banner, .modal-backdrop, .back-to-top, .toc { display: none !important; }
  body { background: #fff; color: #000; }
  .content-layout { display: block; }
  .content-prose p, .content-prose li { color: #222; }
}
