:root {
  --bg: #f8f7f3;
  --ink: #0b1720;
  --muted: #667078;
  --line: #deded8;
  --sage: #84988b;
  --soft: #efeee9;
  --white: #fff;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus { top: 18px; }

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 247, 243, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  font: 20px Georgia, serif;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.navlinks > a,
.lang a {
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
}

.navlinks > a {
  padding: 27px 0 25px;
  border-bottom: 2px solid transparent;
}

.navlinks > a:hover,
.navlinks > a[aria-current="page"] { border-bottom-color: var(--sage); }

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 3px;
}

.lang a {
  color: var(--muted);
  text-transform: uppercase;
}

.lang a[aria-current="true"] {
  color: var(--ink);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
}

.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before { position: absolute; top: -6px; }
.nav-toggle-lines::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }

.eyebrow,
.kicker {
  color: var(--sage);
  font-size: 10px;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero {
  padding: 110px 0 95px;
  border-bottom: 1px solid var(--line);
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 20px 0 28px;
  font: 400 clamp(52px, 7vw, 94px)/.97 Georgia, serif;
  letter-spacing: -.045em;
}

.page-hero {
  padding: 86px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(46px, 6vw, 76px);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.orderBtn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  padding: 14px 19px;
  font: 600 11px/1.2 Inter, Arial, sans-serif;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover,
.orderBtn:hover { opacity: .88; }

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button.text {
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
}

section {
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

section.compact { padding-block: 58px; }
section.tint { background: var(--soft); }
section.dark { background: var(--ink); color: #f6f4ed; }
section.dark .eyebrow { color: #b2c0b7; }
section.dark p, section.dark li { color: #bec4c7; }

h1, h2, h3, p { overflow-wrap: break-word; }

h2 {
  margin: 0 0 22px;
  font: 400 clamp(38px, 5vw, 62px)/1.03 Georgia, serif;
  letter-spacing: -.025em;
}

h3 {
  margin: 0 0 12px;
  font: 400 28px/1.1 Georgia, serif;
}

h4 {
  margin: 24px 0 8px;
  font: 400 20px/1.2 Georgia, serif;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .5fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 38px;
}

.section-head h2 { margin-bottom: 0; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.7; }

.content { max-width: 780px; }
.content p,
.content li { color: var(--muted); line-height: 1.75; }
.content a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.product-grid,
.card-grid,
.article-grid,
.feature-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.catalog-grid .product-card { display: flex; min-height: 100%; flex-direction: column; padding: 20px; }
.catalog-grid .product-image { height: 230px; }
.catalog-grid .product-card h3 { font-size: 22px; }
.catalog-grid .product-actions { margin-top: auto; padding-top: 10px; }
.catalog-toolbar { display: grid; gap: 16px; margin-bottom: 32px; }
.catalog-search input { width: 100%; min-height: 54px; border: 1px solid var(--line); background: var(--white); padding: 14px 18px; color: var(--ink); }
.catalog-search input:focus { outline: 2px solid var(--sage); outline-offset: 2px; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-filters button { border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 10px 14px; color: var(--muted); cursor: pointer; font-size: 12px; }
.catalog-filters button:hover,
.catalog-filters button.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.catalog-empty { padding: 40px 0; color: var(--muted); text-align: center; }
.catalog-cas { font-size: 12px; }

.product-card,
.focus-card,
.article-card,
.quality-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.product-card { padding: 28px; }

.product-image {
  display: flex;
  height: 390px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f4ef;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(11, 23, 32, .1));
}

.vial-visual {
  position: relative;
  width: auto;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  margin: auto;
}
.vial-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vial-label {
  position: absolute;
  z-index: 1;
  top: 42%;
  left: 26%;
  display: flex;
  width: 48%;
  height: 37%;
  align-items: center;
  flex-direction: column;
  color: #101010;
  text-align: center;
  pointer-events: none;
}
.vial-label > span { font: 400 clamp(12px, 1.25vw, 22px)/1 Georgia, serif; letter-spacing: .16em; }
.vial-label small { margin-top: 4px; font-size: clamp(4px, .45vw, 8px); font-weight: 700; letter-spacing: .18em; }
.vial-label i { width: 22%; margin: 8% 0 9%; border-top: 1px solid #aaa; }
.vial-label strong { display: flex; min-height: 30%; align-items: center; justify-content: center; font: 600 clamp(8px, .85vw, 15px)/1.05 Georgia, serif; }
.vial-label.long strong { font-size: clamp(7px, .7vw, 12px); }
.vial-label.very-long strong { font-size: clamp(6px, .58vw, 10px); }
.vial-label em { margin-top: auto; padding-bottom: 3%; font: normal 700 clamp(3px, .34vw, 6px)/1.1 Inter, Arial, sans-serif; letter-spacing: .04em; }
.detail-vial { width: min(100%, 373px); height: auto; }
.detail-vial .vial-label > span { font-size: clamp(20px, 2vw, 30px); }
.detail-vial .vial-label small { font-size: clamp(7px, .65vw, 10px); }
.detail-vial .vial-label strong { font-size: clamp(14px, 1.3vw, 21px); }
.detail-vial .vial-label.long strong { font-size: clamp(11px, 1.05vw, 17px); }
.detail-vial .vial-label.very-long strong { font-size: clamp(9px, .9vw, 14px); }
.detail-vial .vial-label em { font-size: clamp(5px, .5vw, 8px); }

.product-card h3 { margin-top: 24px; }
.product-card > p { color: var(--muted); line-height: 1.65; }
.product-status { margin-top: 24px; margin-bottom: 0; }
.product-status + h3 { margin-top: 16px; }
.price { margin: 20px 0 0; color: var(--ink) !important; font: 28px Georgia, serif; }
.value-note { margin: 5px 0 0; font-size: 10px; letter-spacing: .04em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; font-size: 12px; }
.orderBtn { width: 100%; margin-top: 18px; }

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.product-actions .button,
.product-actions .orderBtn { width: 100%; margin-top: 0; }
.sold-out-label { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.status.sold-out { border-color: #d8c6c0; background: #fbf3f0; color: #7f4a3e; }
.identity-row { display: flex; max-width: 440px; justify-content: space-between; gap: 20px; margin: 24px 0; border-block: 1px solid var(--line); padding: 15px 0; color: var(--muted); font-size: 13px; }
.identity-row strong { color: var(--ink); }
.sold-out-panel { max-width: 520px; margin-top: 28px; border-left: 2px solid #a86d5e; background: var(--white); padding: 22px 24px; }
.sold-out-panel p { color: var(--muted); line-height: 1.7; }

.button.light {
  color: #f6f4ed;
  border-color: rgba(246, 244, 237, .4);
}

.product-hero {
  padding: 76px 0 82px;
  border-bottom: 1px solid var(--line);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.product-detail-image {
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
}

.product-detail-image img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(11, 23, 32, .1));
}

.product-summary h1 {
  margin: 18px 0 24px;
  font: 400 clamp(48px, 6vw, 76px)/.98 Georgia, serif;
  letter-spacing: -.04em;
}

.product-summary > p:not(.lead):not(.price):not(.value-note) {
  color: var(--muted);
  line-height: 1.75;
}

.product-summary .chips { margin-top: 24px; }
.detail-enquiry { max-width: 360px; }

.focus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.focus-card,
.article-card,
.quality-card { padding: 30px; }

.focus-card,
.article-card { display: flex; min-height: 290px; flex-direction: column; text-decoration: none; }
.focus-card:hover,
.article-card:hover { border-color: var(--sage); }
.focus-card h3,
.article-card h3 { margin-top: 34px; }
.focus-card p,
.article-card p,
.quality-card p { color: var(--muted); line-height: 1.65; }
.focus-card .arrow,
.article-card .arrow { margin-top: auto; padding-top: 22px; font-size: 20px; }

.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-card { min-height: 340px; }
.article-card .card-meta { color: var(--sage); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.article-card h3 { font-size: 25px; }

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature {
  padding: 26px 0 4px;
  border-top: 1px solid var(--line);
}
.feature p { color: var(--muted); line-height: 1.7; }
.feature .num { color: var(--sage); font: 14px Georgia, serif; }
.feature h3 { margin-top: 26px; font-size: 24px; }

.notice-panel,
.evidence-note,
.status-panel {
  border-left: 2px solid var(--sage);
  background: var(--white);
  padding: 22px 24px;
}
.notice-panel p,
.evidence-note p,
.status-panel p { margin: 0; color: var(--muted); line-height: 1.7; }
.notice-panel strong,
.evidence-note strong { color: var(--ink); }

.breadcrumb {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 8px; content: "/"; color: var(--line); }
.breadcrumb a { text-decoration: none; }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 74px;
}

.article-body { max-width: 760px; }
.article-body h2 { margin-top: 58px; font-size: clamp(32px, 4vw, 44px); }
.article-body h3 { margin-top: 36px; font-size: 25px; }
.article-body p,
.article-body li { color: var(--muted); font-size: 16px; line-height: 1.82; }
.article-body li + li { margin-top: 9px; }
.article-body a { color: var(--ink); text-underline-offset: 3px; }
.article-body .evidence-note { margin: 34px 0; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}

.toc {
  position: sticky;
  top: 104px;
  padding-top: 8px;
}
.toc strong { display: block; margin-bottom: 16px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.toc ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.toc li { border-bottom: 1px solid var(--line); }
.toc a { display: block; padding: 13px 0; color: var(--muted); font-size: 12px; line-height: 1.45; text-decoration: none; }
.toc a:hover { color: var(--ink); }

.sources {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.sources h2 { margin-top: 0; font-size: 34px; }
.sources ol { padding-left: 20px; }
.sources li { font-size: 13px; }

.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font: 20px/1.35 Georgia, serif; }
.faq details p { max-width: 760px; color: var(--muted); line-height: 1.75; }

.quality-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quality-card { min-height: 250px; }
.status {
  display: inline-flex;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.document-table { width: 100%; border-collapse: collapse; }
.document-table th,
.document-table td { padding: 17px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.document-table th { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.document-table td { font-size: 13px; line-height: 1.55; }
.document-table td:last-child { color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 28px;
}
.contact-card { padding: 32px; }
.contact-card p { color: var(--muted); line-height: 1.7; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-field { display: block; color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.form-field.wide { grid-column: 1 / -1; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 13px 12px;
  font-size: 14px;
  text-transform: none;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 22px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.orderModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  overflow: auto;
  background: rgba(11, 23, 32, .66);
  padding: 22px;
}
.orderModal.open { display: flex; }
.orderBox {
  position: relative;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 34px;
}
.orderClose {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.orderBox h2 { margin-bottom: 10px; font-size: 42px; }
.orderIntro { margin: 0 38px 24px 0; color: var(--muted); line-height: 1.6; }
.orderGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.orderGrid label { color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.orderGrid label.wide { grid-column: 1 / -1; }
.orderGrid input,
.orderGrid select,
.orderGrid textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 13px 12px;
  font-size: 14px;
}
.orderGrid textarea { resize: vertical; }
.orderAddon {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #f5f8f8;
  padding: 14px 16px;
  cursor: pointer;
}
.orderAddon input { width: 19px; height: 19px; flex: 0 0 auto; accent-color: var(--ink); }
.orderAddon > span { display: flex; flex-direction: column; gap: 4px; }
.orderAddon strong { color: var(--ink); font-size: 14px; font-weight: 600; }
.orderAddon small { color: var(--muted); font-size: 12px; letter-spacing: .02em; }
.orderTotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.orderTotal span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.orderTotal strong { font: 24px Georgia, serif; }
.orderConsent { display: flex; gap: 10px; align-items: flex-start; margin: 15px 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.orderConsent input { margin-top: 3px; }
.orderStatus { min-height: 18px; color: var(--muted); font-size: 12px; }
.orderSuccess h3 { font: 400 30px Georgia, serif; }
.orderSuccess p { color: var(--muted); line-height: 1.7; }

.site-footer { padding: 58px 0 34px; }
.footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { max-width: 320px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.footer-column strong { display: block; margin-bottom: 14px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { display: block; margin: 9px 0; color: var(--muted); font-size: 12px; line-height: 1.45; text-decoration: none; }
.footer-column a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: 11px; line-height: 1.5; }

.language-root {
  min-height: 100vh;
  padding: 34px 0 72px;
}

.language-panel {
  max-width: 980px;
  margin-top: clamp(90px, 15vh, 170px);
}

.language-panel h1 {
  max-width: 820px;
  margin: 20px 0 24px;
  font: 400 clamp(48px, 7vw, 84px)/.98 Georgia, serif;
  letter-spacing: -.045em;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.language-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 20px;
  text-decoration: none;
}

.language-card:hover { border-color: var(--sage); }
.language-card span { color: var(--sage); font-size: 10px; letter-spacing: .16em; }
.language-card strong { margin-top: 28px; font: 22px Georgia, serif; }
.language-card small { margin-top: auto; padding-top: 16px; color: var(--muted); font-size: 10px; line-height: 1.4; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .navlinks {
    position: fixed;
    inset: 73px 0 auto;
    display: none;
    max-height: calc(100vh - 73px);
    overflow: auto;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 22px 28px;
  }
  .navlinks.open { display: flex; flex-direction: column; }
  .navlinks > a { border-bottom: 1px solid var(--line); padding: 14px 0; font: 24px Georgia, serif; }
  .navlinks > a:hover,
  .navlinks > a[aria-current="page"] { border-bottom-color: var(--sage); }
  .lang { gap: 16px; padding: 13px 0 2px; }
  .lang a { font-size: 12px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .language-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .section-head,
  .article-shell,
  .contact-layout { grid-template-columns: 1fr; }
  .article-grid,
  .focus-grid,
  .quality-grid,
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .toc { position: static; order: -1; }
  .toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-detail-image,
  .product-detail-image img { min-height: 0; height: 460px; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 34px, var(--max)); }
  .brand { font-size: 17px; }
  .hero { padding: 75px 0 68px; }
  .page-hero { padding: 66px 0 58px; }
  .hero h1,
  .page-hero h1 { font-size: 49px; }
  section { padding: 60px 0; }
  section.compact { padding-block: 48px; }
  .product-grid,
  .card-grid,
  .article-grid,
  .focus-grid,
  .quality-grid,
  .feature-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
  .product-card { padding: 20px; }
  .product-image { height: 330px; }
  .catalog-grid .product-image { height: 260px; }
  .article-card,
  .focus-card { min-height: 260px; }
  .form-field.wide { grid-column: auto; }
  .orderBox { padding: 26px 20px; }
  .orderBox h2 { font-size: 34px; }
  .orderGrid { grid-template-columns: 1fr; }
  .orderGrid label.wide { grid-column: auto; }
  .toc ol { grid-template-columns: 1fr; }
  .document-table { display: block; overflow-x: auto; }
  .footer-bottom { flex-direction: column; }
  .language-grid { grid-template-columns: 1fr; }
  .language-card { min-height: 126px; }
  .language-panel { margin-top: 74px; }
  .product-detail-image,
  .product-detail-image img { height: 360px; }
}

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