﻿:root {
  --bg: #f4efe6;
  --surface: rgba(255, 250, 243, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-shell: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(244, 236, 223, 0.94) 100%);
  --surface-shell-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(239, 230, 216, 0.92) 100%);
  --ink: #15231b;
  --muted: #5a665f;
  --line: rgba(21, 35, 27, 0.09);
  --green: #244736;
  --green-soft: #7fa06c;
  --orange: #cb7447;
  --sand: #e8dcc7;
  --shadow: 0 20px 46px rgba(21, 35, 27, 0.09);
  --shadow-soft: 0 14px 34px rgba(21, 35, 27, 0.07);
  --radius: 24px;
  --radius-sm: 18px;
  --wrap: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(127, 160, 108, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(203, 116, 71, 0.16), transparent 24%),
    linear-gradient(180deg, #faf7f0 0%, var(--bg) 46%, #efe5d8 100%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  line-height: 1.7;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 40;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: top 0.18s ease;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(203, 116, 71, 0.42);
  outline-offset: 3px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(21, 35, 27, 0.06);
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  transition: opacity 0.18s ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.88;
  outline: none;
}

.brand-logo {
  display: block;
  width: clamp(210px, 24vw, 290px);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(36, 71, 54, 0.08);
  color: var(--ink);
  outline: none;
}

/* Hero */

.page-hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.hero-grid-strong {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", "Arial Black", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.hero-title-alt {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 10ch;
  margin-bottom: 1rem;
}

.hero-copy p.lead {
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.trade-note {
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  color: var(--green);
}

.button-row,
.quick-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--orange));
  color: #fff;
  box-shadow: 0 16px 28px rgba(36, 71, 54, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(36, 71, 54, 0.22);
  outline: none;
}

.button.alt {
  background: var(--surface-strong);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.alt:hover,
.button.alt:focus-visible {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  border-color: rgba(21, 35, 27, 0.08);
  box-shadow: none;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  align-items: end;
}

.hero-media-feature {
  display: flex;
  align-items: stretch;
}

.hero-media-compact {
  justify-content: flex-end;
}

.hero-card,
.panel,
.notice,
.faq-item,
.legal-block,
.product-card,
.trade-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-shell);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card.tall {
  min-height: 430px;
}

.hero-card.short {
  min-height: 300px;
  transform: translateY(32px);
}

.hero-card-large {
  width: 100%;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface-shell-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.hero-card-compact {
  width: min(100%, 67%);
  min-height: 380px;
}

.hero-card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sections */

main section {
  padding: 42px 0;
}

.section-tight {
  padding-top: 18px;
}

.section-header {
  margin-bottom: 22px;
}

.section-intro {
  max-width: 44rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Shared cards */

.panel,
.notice,
.legal-block,
.faq-item,
.product-card,
.trade-card {
  padding: 24px;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel p,
.notice p,
.legal-block p,
.product-card p,
.trade-card p {
  margin: 0;
  color: var(--muted);
}

.grid-2,
.cards-2,
.cards-3,
.cards-4,
.product-grid,
.trade-grid {
  display: grid;
  gap: 18px;
}

.grid-2,
.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Notice */

.notice {
  background: linear-gradient(135deg, rgba(36, 71, 54, 0.97), rgba(69, 104, 74, 0.94));
  color: #f8f4ec;
}

.notice .eyebrow,
.notice p,
.notice li,
.notice a {
  color: rgba(248, 244, 236, 0.92);
}

.notice ul,
.panel ul,
.product-card ul,
.trade-card ul,
.legal-block ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

/* Badges and pricing */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(36, 71, 54, 0.08);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
}

.badge img {
  width: 16px;
  height: 16px;
}

.price {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.muted-note {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Info strip */

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.info-strip div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-strip strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.info-strip span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Feature images */

.feature-image {
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(127, 160, 108, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 226, 212, 0.94) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.feature-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.media-focus-left {
  object-position: left center !important;
}

.media-focus-soft-left {
  object-position: 60% center !important;
}

.media-focus-top {
  object-position: center top !important;
}

.media-contain {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(127, 160, 108, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(236, 226, 212, 0.95) 100%);
}

.media-contain-tight {
  padding: 10px;
}

.media-hero-packshot {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(127, 160, 108, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(236, 226, 212, 0.95) 100%);
}

/* Product and trade cards */

.product-card,
.trade-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.product-card h3,
.trade-card h3,
.panel h3,
.legal-block h3 {
  margin-bottom: 6px;
}

.product-card p,
.trade-card p {
  flex-grow: 0;
}

.product-link-card p,
.trade-card > p:first-of-type {
  flex-grow: 1;
}

.panel > .feature-image,
.panel > .product-gallery {
  margin-top: auto;
}

.panel > .feature-image {
  margin-bottom: 0;
}

.panel > .feature-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trade-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card .card-media,
.trade-card .card-media {
  margin: -24px -24px 18px;
  padding: 12px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 18px 18px;
  background:
    radial-gradient(circle at top left, rgba(127, 160, 108, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(235, 225, 210, 0.94) 100%);
}

.product-card .card-media img,
.trade-card .card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.trade-card .card-media img {
  aspect-ratio: 1 / 1;
}

.product-link-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.product-link-card:hover,
.product-link-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(36, 71, 54, 0.22);
  outline: none;
}

.product-link-card .feature-image {
  overflow: hidden;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 1rem;
  background:
    radial-gradient(circle at top left, rgba(127, 160, 108, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 230, 216, 0.92) 100%);
}

.product-link-card .feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.25s ease;
}

.product-link-card:hover .feature-image img,
.product-link-card:focus-visible .feature-image img {
  transform: scale(1.015);
}

.product-link-card h3 {
  margin-bottom: 0.5rem;
}

.product-link-card p {
  margin-bottom: 1.25rem;
}

.card-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.product-link-card:hover .card-button,
.product-link-card:focus-visible .card-button {
  transform: translateX(2px);
  opacity: 0.92;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.text-link::after {
  content: "\2192";
  transition: transform 0.18s ease;
}

.text-link:hover,
.text-link:focus-visible {
  opacity: 0.8;
  outline: none;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

/* Section CTA */

.section-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 35, 27, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.section-cta-link:hover,
.section-cta-link:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 28px rgba(21, 35, 27, 0.1);
  outline: none;
}

.section-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.section-cta-link:hover .section-cta-arrow,
.section-cta-link:focus-visible .section-cta-arrow {
  transform: translateX(2px);
}

/* FAQ */

.faq-item {
  border-radius: var(--radius);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Lists and nav */

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.category-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(36, 71, 54, 0.08);
  color: var(--green);
  font-weight: 800;
  font-size: 0.92rem;
  transition: background-color 0.18s ease, opacity 0.18s ease;
}

.category-nav a:hover,
.category-nav a:focus-visible {
  background: rgba(36, 71, 54, 0.14);
  outline: none;
}

.simple-list {
  margin: 0;
  padding-left: 1.1rem;
}

.simple-list li + li {
  margin-top: 0.65rem;
}

/* Product PDFs and galleries */

.doc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.doc-pill,
.table-doc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(36, 71, 54, 0.12);
  background: rgba(36, 71, 54, 0.08);
  color: var(--green);
  font-weight: 800;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.doc-pill {
  min-height: 40px;
  padding: 0 14px;
}

.doc-pill:hover,
.doc-pill:focus-visible,
.table-doc-link:hover,
.table-doc-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(36, 71, 54, 0.12);
  border-color: rgba(36, 71, 54, 0.18);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.table-doc-link {
  min-height: 34px;
  min-width: 56px;
  padding: 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.trade-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.doc-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.doc-callout > div {
  display: grid;
  gap: 8px;
}

.doc-callout p {
  max-width: 44rem;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  align-items: stretch;
}

.product-gallery.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-shell-soft);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.gallery-card figcaption {
  min-height: 3.3rem;
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  padding: 12px 14px 14px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
}

/* Downloads / tables */

.table-scroll {
  margin-top: 16px;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.price-table.has-docs {
  min-width: 460px;
}

.price-table th,
.price-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-table td {
  color: var(--ink);
  font-weight: 700;
}

.price-table th.doc-col,
.price-table td.doc-col {
  width: 132px;
}

.price-table td.price-cell {
  white-space: nowrap;
}

.price-table td:first-child {
  font-weight: 600;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Legal */

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-block h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-block h3 {
  margin-top: 22px;
}

.legal-block p + p,
.legal-block ul + p,
.legal-block p + ul {
  margin-top: 12px;
}

/* Footer */

.site-footer {
  margin-top: 34px;
  padding: 28px 0 40px;
  background: linear-gradient(180deg, rgba(16, 30, 23, 0.97), rgba(9, 16, 13, 1));
  color: #f8f4ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.8fr 1.15fr;
  gap: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(248, 244, 236, 0.82);
}

.site-footer .eyebrow {
  color: rgba(248, 244, 236, 0.72);
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  font-weight: 700;
  transition: opacity 0.18s ease;
}

.footer-help p {
  margin: 0 0 10px;
}

.footer-help .button {
  margin-top: 8px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
a[href^="tel:"]:hover,
a[href^="tel:"]:focus-visible,
a[href^="mailto:"]:hover,
a[href^="mailto:"]:focus-visible {
  opacity: 0.75;
  outline: none;
}

.small {
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .hero-grid-strong,
  .grid-2,
  .cards-2,
  .cards-3,
  .cards-4,
  .product-grid,
  .trade-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card.short {
    transform: none;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 42px;
  }

  .hero-card-large {
    min-height: 380px;
  }

  .hero-card-compact {
    width: 100%;
    min-height: 320px;
  }

  .info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-card.tall,
  .hero-card.short {
    min-height: auto;
  }

  .panel,
  .notice,
  .legal-block,
  .faq-item,
  .product-card,
  .trade-card {
    padding: 20px;
  }

  .product-card .card-media,
  .trade-card .card-media {
    margin: -20px -20px 16px;
  }

  main section {
    padding: 30px 0;
  }

  h1 {
    line-height: 0.98;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .doc-pill-row,
  .support-strip,
  .trade-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .product-gallery,
  .product-gallery.three-up {
    grid-template-columns: 1fr;
  }

  .doc-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .info-strip {
    grid-template-columns: 1fr;
  }

  .hero-title-alt {
    max-width: none;
  }

  .hero-card-large {
    min-height: 300px;
  }

  .hero-card-compact {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
