:root {
  --forest: #123d27;
  --forest-2: #0a2c1c;
  --leaf: #2f6a46;
  --moss: #78906c;
  --ivory: #fbf8ef;
  --cream: #f4eddf;
  --sand: #e7d5b5;
  --gold: #c49a55;
  --ink: #1d1b18;
  --muted: #6f695f;
  --line: rgba(36, 47, 38, 0.14);
  --shadow: 0 18px 50px rgba(30, 43, 31, 0.12);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Avenir Next", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(196, 154, 85, 0.13), transparent 28rem),
    linear-gradient(180deg, #fffdf7 0%, var(--ivory) 34%, #fffaf1 100%);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 12px;
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(255, 253, 247, 0.82);
  border-bottom: 1px solid rgba(36, 47, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.85;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #302d28;
  font-size: 13px;
  font-weight: 600;
}

.nav a,
.nav-parent {
  position: relative;
  padding: 8px 0;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.nav a::after,
.nav-parent::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--forest);
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.nav a:hover::after,
.nav a.active::after,
.nav-parent:hover::after,
.nav-parent.active::after,
.nav-group.active .nav-parent::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-caret {
  color: var(--gold);
  font-size: 11px;
  transition: transform 180ms ease;
}

.nav-group.open .nav-caret,
.nav-group:hover .nav-caret,
.nav-group:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: -14px;
  display: grid;
  gap: 4px;
  min-width: 248px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 35;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group.open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  color: var(--forest);
  background: rgba(18, 61, 39, 0.06);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  color: #fffdf6;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  box-shadow: 0 10px 25px rgba(18, 61, 39, 0.2);
}

.btn.secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(18, 61, 39, 0.35);
}

.btn.gold {
  color: #fff9ec;
  background: linear-gradient(135deg, var(--gold), #a97632);
}

.btn.light {
  color: #fffdf3;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn.small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(18, 61, 39, 0.18);
}

.menu-toggle {
  display: none;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  min-height: 560px;
  padding: 58px 0 34px;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  line-height: 0.98;
}

h1 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: 62px;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 52px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: #4f4a42;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 470px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -8% -5% 6% 4%;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 58% 32%, rgba(196, 154, 85, 0.16), transparent 18rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(244, 237, 223, 0.48));
  border-radius: 50%;
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  position: absolute;
  right: -4px;
  bottom: 12px;
  width: min(760px, 110%);
  border-radius: 0;
  filter: drop-shadow(0 22px 30px rgba(20, 37, 25, 0.1));
  mix-blend-mode: multiply;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  color: #fbf8ef;
  background: linear-gradient(135deg, var(--forest), #164a31);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(18, 61, 39, 0.22);
}

.trust-bar article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 14px;
  align-items: center;
  min-height: 108px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-bar article:last-child {
  border-right: 0;
}

.trust-icon {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #f4d99b;
  border: 1px solid rgba(244, 217, 155, 0.8);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.trust-bar strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.trust-bar p {
  margin: 0;
  color: rgba(255, 252, 242, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.capabilities {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 34px 0 36px;
}

.section-intro.compact p:not(.eyebrow) {
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.capability-grid article,
.category-card,
.custom-card,
.qa-card,
.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 12px 32px rgba(30, 43, 31, 0.06);
}

.capability-grid article {
  min-height: 190px;
  padding: 24px 20px;
  text-align: center;
}

.line-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--forest);
  background:
    radial-gradient(circle at 35% 28%, rgba(196, 154, 85, 0.16), transparent 44%),
    rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(18, 61, 39, 0.22);
  border-radius: 50%;
}

.line-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.capability-grid h3 {
  font-size: 22px;
}

.capability-grid p,
.custom-card p,
.qa-card span,
.qa-card li,
.science-copy p,
.partner-card li,
.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 13px;
}

.products {
  padding: 24px 0 40px;
}

.section-intro.center {
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 14px;
}

.category-card {
  overflow: hidden;
  height: 126px;
  background: #fffaf0;
}

.category-card img {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.category-card strong {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 0 8px;
  color: #fffdf3;
  background: linear-gradient(135deg, var(--forest), #245c3b);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.05;
  text-align: center;
}

.custom-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 126px;
  padding: 18px 22px;
  align-self: start;
}

.custom-card h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.custom-card p {
  margin-bottom: 0;
}

.custom-card a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.process {
  padding: 22px 0 34px;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.process-track::before {
  position: absolute;
  top: 34px;
  right: 6%;
  left: 6%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(196, 154, 85, 0.78), transparent);
}

.process-track article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #3e3a33;
  text-align: center;
}

.process-track span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--gold);
  background: var(--ivory);
  border: 1px solid rgba(196, 154, 85, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.process-track strong {
  max-width: 112px;
  font-size: 12px;
  line-height: 1.3;
}

.quality {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  margin-top: 4px;
  padding: 30px;
  color: #fffdf3;
  background:
    radial-gradient(circle at 0% 0%, rgba(196, 154, 85, 0.18), transparent 20rem),
    linear-gradient(135deg, #0e3a25, #0a281a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 24px 55px rgba(18, 61, 39, 0.25);
}

.quality h2,
.quality h3 {
  color: #fffaf0;
}

.quality-aside > p:not(.eyebrow) {
  color: rgba(255, 252, 243, 0.76);
}

.assurance-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.assurance-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
}

.assurance-points span {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #f4d99b;
  border: 1px solid rgba(244, 217, 155, 0.62);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.assurance-points strong {
  align-self: end;
  color: #fffdf3;
  font-size: 14px;
}

.assurance-points p {
  margin: 0;
  color: rgba(255, 252, 243, 0.66);
  font-size: 12px;
}

.qa-dashboard {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}

.qa-card {
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 252, 243, 0.94);
}

.workflow-card,
.documentation-card {
  grid-column: span 2;
}

.card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.card-title h3 {
  margin: 0;
  font-size: 24px;
  color: var(--ink);
  text-shadow: none;
}

.card-title span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.workflow article {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 12px 8px;
  border: 1px solid rgba(18, 61, 39, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.workflow article:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: -11px;
  color: var(--gold);
  content: "→";
  font-weight: 900;
}

.workflow span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--forest);
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid rgba(18, 61, 39, 0.18);
  border-radius: 50%;
}

.workflow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.workflow strong {
  font-size: 11px;
  line-height: 1.25;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--forest);
  content: "✓";
  border: 1px solid rgba(18, 61, 39, 0.3);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.batch-card dl {
  display: grid;
  gap: 9px;
  margin: 0 0 16px;
}

.batch-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(18, 61, 39, 0.1);
}

.batch-card dt,
.batch-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.batch-card dd {
  color: var(--ink);
  font-weight: 800;
}

.released {
  color: #2d7a44 !important;
}

.documents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.documents article {
  min-height: 128px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 243, 230, 0.9)),
    repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(18, 61, 39, 0.06) 15px);
  border: 1px solid rgba(18, 61, 39, 0.14);
  border-radius: 6px;
  box-shadow: 0 12px 22px rgba(30, 43, 31, 0.07);
}

.documents span {
  display: inline-grid;
  min-width: 38px;
  height: 24px;
  place-items: center;
  margin-bottom: 18px;
  color: #fffdf3;
  background: var(--forest);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
}

.documents strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}

.documents small {
  color: var(--gold);
  font-weight: 800;
}

.check-list.quiet {
  grid-template-columns: repeat(3, 1fr);
}

.science {
  display: grid;
  grid-template-columns: 320px minmax(0, 1.05fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 54px 0;
}

.science-copy h2 {
  max-width: 320px;
}

.science-metrics {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.science-metrics span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.insight-feature,
.insight-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(254, 250, 241, 0.96)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(30, 43, 31, 0.06);
}

.insight-feature {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(212, 184, 129, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 246, 236, 0.98));
}

.insight-list {
  display: grid;
  gap: 12px;
}

.insight-list article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px 18px 16px;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.insight-meta span,
.insight-meta time {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.insight-meta span {
  color: var(--forest);
}

.insight-meta time {
  color: var(--gold);
}

.insight-feature h3,
.insight-list h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.08;
}

.insight-feature h3 {
  font-size: 32px;
}

.insight-list h3 {
  font-size: 20px;
}

.insight-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.insight-feature a,
.insight-list a {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-card ul,
.partner-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.partner-card li {
  position: relative;
  padding-left: 18px;
}

.partner-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "/";
  font-weight: 900;
}

.facility {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 270px;
  gap: 26px;
  align-items: stretch;
  padding: 10px 0 46px;
}

.facility-gallery {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(18, 61, 39, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.facility-gallery::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0) 58%, rgba(255, 253, 247, 0.22)),
    radial-gradient(circle at 12% 12%, rgba(255, 253, 247, 0.34), transparent 28%);
}

.facility-gallery img {
  display: block;
  width: 100%;
  height: 338px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.facility-stats {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.facility-stats span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.facility-stats strong {
  color: var(--forest);
}

.partner-card {
  padding: 26px;
  color: #fffdf3;
  background: linear-gradient(135deg, var(--forest), #143820);
}

.partner-card h3 {
  color: #fffdf3;
}

.partner-card li {
  color: rgba(255, 252, 243, 0.76);
}

.brands {
  padding: 26px 0 40px;
  text-align: center;
}

.brands h2 {
  font-size: 42px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  margin-top: 24px;
  color: rgba(29, 27, 24, 0.42);
  background: rgba(255, 253, 247, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.logo-row span {
  display: grid;
  min-height: 66px;
  place-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.logo-row span:last-child {
  border-right: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 10px;
  padding: 44px max(40px, calc((100vw - 1180px) / 2));
  color: #fffdf3;
  background:
    linear-gradient(90deg, rgba(18, 61, 39, 0.98), rgba(9, 44, 28, 0.98)),
    radial-gradient(circle at 12% 48%, rgba(196, 154, 85, 0.24), transparent 18rem);
}

.final-cta h2,
.final-cta p {
  color: #fffdf3;
}

.final-cta h2 {
  margin-bottom: 6px;
  font-size: 42px;
}

.final-cta p {
  margin: 0;
  opacity: 0.78;
}

.resources-page .final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.resources-page .final-cta > div {
  min-width: 0;
  max-width: none;
}

.resources-page .final-cta h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 0.98;
  text-wrap: pretty;
}

.resources-page .final-cta .btn {
  flex-shrink: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
  padding: 42px max(40px, calc((100vw - 1180px) / 2)) 54px;
  background: #fffdf7;
  border-top: 1px solid var(--line);
}

.site-footer h4 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding: 52px 0 34px;
}

.page-hero-copy {
  align-self: center;
}

.page-hero-copy h1 {
  max-width: 760px;
}

.other-pets-page .page-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 0.98;
  text-wrap: balance;
}

.other-pets-page .page-hero-copy h1 span {
  display: block;
}

.other-pets-page .page-hero-copy .lead {
  max-width: 560px;
}

.parrot-page .pigeon-hero-copy h1,
.fish-page .pigeon-hero-copy h1,
.turtle-page .pigeon-hero-copy h1,
.rabbit-page .pigeon-hero-copy h1,
.hamster-page .pigeon-hero-copy h1,
.reptile-page .pigeon-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 0.98;
  text-wrap: balance;
}

.parrot-page .pigeon-hero-copy h1 span,
.fish-page .pigeon-hero-copy h1 span,
.turtle-page .pigeon-hero-copy h1 span,
.rabbit-page .pigeon-hero-copy h1 span,
.hamster-page .pigeon-hero-copy h1 span,
.reptile-page .pigeon-hero-copy h1 span {
  display: block;
}

.parrot-page .pigeon-hero-copy .lead,
.fish-page .pigeon-hero-copy .lead,
.turtle-page .pigeon-hero-copy .lead,
.rabbit-page .pigeon-hero-copy .lead,
.hamster-page .pigeon-hero-copy .lead,
.reptile-page .pigeon-hero-copy .lead {
  max-width: 560px;
}

.page-hero-panel,
.program-card,
.ecosystem-grid article,
.blueprint-steps article,
.format-card,
.faq-grid details,
.readiness-panel,
.ecosystem-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 247, 238, 0.96)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(30, 43, 31, 0.07);
}

.page-hero-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(196, 154, 85, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(251, 245, 234, 0.98));
}

.page-hero-panel h2 {
  margin-bottom: 0;
  font-size: 42px;
}

.panel-head .eyebrow {
  margin-bottom: 8px;
}

.snapshot-grid {
  display: grid;
  gap: 12px;
}

.snapshot-grid article {
  padding: 14px 16px;
  border: 1px solid rgba(18, 61, 39, 0.1);
  border-radius: 7px;
  background: rgba(255, 253, 247, 0.66);
}

.snapshot-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 15px;
}

.snapshot-grid p,
.program-card p,
.ecosystem-grid p,
.blueprint-steps p,
.format-card p,
.faq-grid p,
.readiness-panel p {
  margin-bottom: 0;
  color: var(--muted);
}


.programs {
  padding: 34px 0 18px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 320px;
  padding: 22px 20px;
}

.program-card-media {
  overflow: hidden;
  margin: -22px -20px 4px;
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid rgba(18, 61, 39, 0.08);
}

.program-card-media img {
  display: block;
  width: 100%;
  height: 196px;
  object-fit: cover;
}

.program-card h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.program-card p {
  min-height: 84px;
  font-size: 17px;
  line-height: 1.55;
}

.program-card .btn.small {
  margin-top: auto;
}

.program-tag {
  display: inline-grid;
  justify-self: start;
  min-width: 78px;
  min-height: 28px;
  place-items: center;
  padding: 0 12px;
  color: #fffdf3;
  background: linear-gradient(135deg, var(--forest), #245c3b);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ecosystem {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 36px 0 18px;
}

.ecosystem-copy {
  align-self: center;
}

.ecosystem-media {
  overflow: hidden;
}

.ecosystem-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ecosystem-grid article {
  padding: 22px 20px;
}

.ecosystem-grid h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.blueprint {
  padding: 34px 0 18px;
}

.blueprint-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.blueprint-steps article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px 20px;
}

.blueprint-steps span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(196, 154, 85, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.blueprint-steps h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.format-showcase {
  padding: 34px 0 18px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.format-card {
  overflow: hidden;
}

.format-card img {
  width: 100%;
  height: 198px;
  object-fit: cover;
}

.format-card div {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.format-card h3 {
  margin-bottom: 0;
  font-size: 29px;
}

.readiness {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 360px;
  gap: 22px;
  align-items: stretch;
  padding: 36px 0 18px;
}

.readiness-image {
  overflow: hidden;
  border: 1px solid rgba(18, 61, 39, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.readiness-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.readiness-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.faq {
  padding: 36px 0 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.faq-grid details {
  padding: 0 18px;
}

.faq-grid summary {
  padding: 18px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.08;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid details p {
  padding: 0 0 18px;
}

.about-story,
.global-support,
.leadership-note {
  display: grid;
  gap: 22px;
  padding: 34px 0 18px;
}

.about-story {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: stretch;
}

.story-copy {
  align-self: center;
}

.story-milestones,
.value-grid,
.global-grid {
  display: grid;
  gap: 16px;
}

.story-milestones {
  grid-template-columns: repeat(3, 1fr);
}

.story-milestones article,
.value-card,
.global-grid article,
.timeline-list article,
.leadership-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 247, 238, 0.96)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(30, 43, 31, 0.07);
}

.story-milestones article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 22px 20px;
}

.story-milestones span,
.timeline-list span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(196, 154, 85, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.story-milestones h3,
.value-card h3,
.timeline-list h3 {
  margin-bottom: 0;
}

.story-milestones p,
.value-card p,
.global-grid p,
.timeline-list p,
.leadership-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.values {
  padding: 34px 0 18px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  min-height: 210px;
  padding: 22px 20px;
}

.facility-spotlight {
  padding: 34px 0 18px;
}

.facility-mosaic {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 16px;
  margin-top: 22px;
}

.facility-mosaic article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 12px 30px rgba(30, 43, 31, 0.07);
}

.facility-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.mosaic-lead {
  grid-row: span 2;
}

.mosaic-lead img {
  min-height: 496px;
}

.mosaic-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 22px;
}

.mosaic-copy h3 {
  margin-bottom: 0;
}

.global-support {
  grid-template-columns: 340px 1fr;
  align-items: start;
}

.global-grid {
  grid-template-columns: repeat(2, 1fr);
}

.global-grid article {
  min-height: 170px;
  padding: 22px 20px;
}

.global-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.about-timeline {
  padding: 34px 0 18px;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 20px;
}

.timeline-list div {
  display: grid;
  gap: 8px;
}

.leadership-note {
  grid-template-columns: minmax(0, 1.08fr) 320px;
  align-items: stretch;
  padding-bottom: 40px;
}

.leadership-card {
  padding: 28px 26px;
  background:
    radial-gradient(circle at top left, rgba(196, 154, 85, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(251, 245, 234, 0.98));
}

.quality-framework,
.quality-lab {
  display: grid;
  gap: 22px;
  padding: 34px 0 18px;
}

.quality-framework {
  grid-template-columns: 320px 1fr;
  align-items: start;
}

.framework-grid,
.workflow-deep-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.framework-grid {
  grid-template-columns: repeat(2, 1fr);
}

.framework-grid article,
.workflow-deep-grid article,
.quality-lab-panel,
.quality-lab-image {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 247, 238, 0.96)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(30, 43, 31, 0.07);
}

.framework-grid article {
  min-height: 188px;
  padding: 22px 20px;
}

.framework-grid h3,
.workflow-deep-grid h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.framework-grid p,
.workflow-deep-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.workflow-deep {
  padding: 34px 0 18px;
}

.workflow-deep-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.workflow-deep-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 238px;
  padding: 22px 20px;
}

.workflow-deep-grid span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(196, 154, 85, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.workflow-deep-grid .workflow-icon {
  width: 62px;
  height: 62px;
  background: rgba(255, 253, 247, 0.92);
}

.workflow-deep-grid .workflow-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.proof-grid {
  grid-template-columns: 1.02fr 0.84fr;
  padding: 34px 0 18px;
}

.proof-grid .documentation-card {
  grid-column: span 2;
}

.quality-lab {
  grid-template-columns: minmax(0, 0.9fr) 360px;
  align-items: stretch;
}

.quality-lab-image {
  overflow: hidden;
}

.quality-lab-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.quality-lab-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.quality-faq {
  padding: 34px 0 40px;
}

.species,
.benefits,
.custom-focus,
.product-faq {
  padding: 34px 0 18px;
}

.species-grid,
.benefit-grid,
.custom-focus {
  display: grid;
  gap: 18px;
}

.species-grid {
  grid-template-columns: repeat(2, 1fr);
}

.species-card,
.benefit-card,
.custom-focus-copy,
.custom-focus-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 247, 238, 0.96)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(30, 43, 31, 0.07);
}

.species-card {
  overflow: hidden;
}

.species-media {
  overflow: hidden;
}

.species-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.species-copy {
  display: grid;
  gap: 12px;
  padding: 22px 20px 24px;
}

.species-copy h3,
.benefit-card h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.species-copy p,
.benefit-card p,
.custom-focus-copy p,
.custom-focus-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.benefit-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 238px;
  padding: 22px 20px;
}

.benefit-card span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(196, 154, 85, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.benefit-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.custom-focus {
  grid-template-columns: minmax(0, 1.08fr) 0.92fr;
  align-items: stretch;
}

.custom-focus-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 32px 30px;
  color: #fffdf3;
  background:
    radial-gradient(circle at top left, rgba(244, 217, 155, 0.22), transparent 32%),
    linear-gradient(135deg, #123d27, #0a2c1c);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 55px rgba(18, 61, 39, 0.25);
}

.custom-focus-copy h2,
.custom-focus-copy p {
  color: #fffdf3;
}

.custom-focus-copy p {
  opacity: 0.82;
}

.custom-focus-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.custom-focus-panel article {
  padding: 14px 16px;
  border: 1px solid rgba(18, 61, 39, 0.1);
  border-radius: 7px;
  background: rgba(255, 253, 247, 0.66);
}

.custom-focus-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 15px;
}

.pigeon-hero-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: 24px;
  padding: 34px 0 20px;
}

.pigeon-hero-copy {
  display: grid;
  gap: 0;
}

.pigeon-hero-media,
.pigeon-product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 247, 238, 0.96)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(30, 43, 31, 0.07);
}

.pigeon-hero-media {
  overflow: hidden;
}

.pigeon-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.pigeon-products {
  padding: 34px 0 18px;
}

.pigeon-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.pigeon-product-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 20px 20px;
}

.pigeon-product-card h3 {
  margin-bottom: 0;
  font-size: 34px;
}

.pigeon-product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pigeon-product-card small {
  color: #7b725f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.resource-packs,
.label-showcase,
.resource-library,
.resource-blueprint {
  padding-top: 32px;
}

.packaging-grid,
.label-grid,
.resource-grid,
.blueprint-grid {
  display: grid;
  gap: 18px;
}

.packaging-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.label-grid,
.resource-grid,
.blueprint-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.packaging-card,
.resource-card,
.blueprint-card {
  padding: 24px;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.packaging-card h3,
.resource-card strong,
.blueprint-card h3 {
  color: var(--ink);
}

.packaging-card h3 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 0.96;
  white-space: nowrap;
}

#packaging .section-intro h2 {
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1;
}

.packaging-visual,
.resource-visual,
.blueprint-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 39, 0.1);
  border-radius: 18px;
}

.resource-visual img,
.blueprint-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packaging-visual {
  min-height: 168px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.66), transparent 10rem),
    linear-gradient(180deg, #f8f1e4, #ece3d1 58%, #e4d8c3);
}

.packaging-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44px;
  background: linear-gradient(180deg, rgba(225, 214, 190, 0), rgba(214, 199, 171, 0.52));
  content: "";
}

.packaging-photo-frame {
  padding: 0;
  background: none;
}

.packaging-photo-frame::after {
  display: none;
}

.packaging-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
}

.photo-jars {
  object-position: center 58%;
}

.photo-amber {
  object-position: 64% 56%;
}

.photo-tubs {
  object-position: 68% 56%;
}

.photo-sticks {
  object-position: 23% 78%;
}

.pack-item {
  position: absolute;
  display: block;
}

.jar,
.bottle,
.tub,
.pouch,
.liquid {
  bottom: 26px;
  border-radius: 12px;
  box-shadow: 0 18px 28px rgba(71, 60, 40, 0.16);
}

.jar::before,
.bottle::before,
.tub::before,
.pouch::before,
.liquid::before {
  position: absolute;
  right: 14%;
  left: 14%;
  height: 35%;
  bottom: 16%;
  background: linear-gradient(180deg, #194f38, #103a29);
  border-radius: 8px;
  content: "";
}

.jar {
  background: linear-gradient(180deg, #fefefe, #f3f0eb 76%, #e8dfd3);
}

.jar::after,
.tub::after,
.bottle::after,
.liquid::after {
  position: absolute;
  top: -9px;
  left: 10%;
  width: 80%;
  height: 16px;
  background: linear-gradient(180deg, #f5f1ea, #dcd2c4);
  border-radius: 999px;
  box-shadow: inset 0 -2px 0 rgba(20, 28, 20, 0.08);
  content: "";
}

.jar.tall {
  left: 24px;
  width: 56px;
  height: 108px;
}

.jar.medium {
  left: 92px;
  width: 48px;
  height: 92px;
}

.jar.short {
  left: 150px;
  width: 44px;
  height: 72px;
}

.chip.sheet {
  right: 24px;
  bottom: 22px;
  width: 90px;
  height: 58px;
  background:
    linear-gradient(180deg, rgba(18, 61, 39, 0.16), rgba(18, 61, 39, 0.16)) 12px 14px / 42px 9px no-repeat,
    linear-gradient(180deg, rgba(196, 154, 85, 0.58), rgba(196, 154, 85, 0.58)) 12px 30px / 66px 6px no-repeat,
    linear-gradient(180deg, rgba(18, 61, 39, 0.12), rgba(18, 61, 39, 0.12)) 12px 42px / 50px 5px no-repeat,
    linear-gradient(180deg, #fffdf8, #efe5d6);
  border: 1px solid rgba(18, 61, 39, 0.1);
  border-radius: 10px;
  transform: rotate(-9deg);
}

.visual-amber {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.52), transparent 8rem),
    linear-gradient(180deg, #f5ecde, #e9ddca 58%, #dfd1ba);
}

.bottle.dark {
  background: linear-gradient(180deg, #6f4d2e, #4a301f 76%, #2f1b12);
}

.bottle.dark::before {
  background: linear-gradient(180deg, #204f3b, #153928);
}

.bottle.tall {
  left: 32px;
  width: 52px;
  height: 108px;
}

.bottle.medium {
  left: 98px;
  width: 42px;
  height: 82px;
}

.dropper {
  left: 154px;
  bottom: 28px;
  width: 24px;
  height: 78px;
  background: linear-gradient(180deg, #724c2a, #3c2415);
  border-radius: 12px;
  box-shadow: 0 14px 24px rgba(71, 60, 40, 0.16);
}

.dropper::before {
  position: absolute;
  top: -12px;
  left: 6px;
  width: 12px;
  height: 18px;
  background: #171411;
  border-radius: 10px 10px 2px 2px;
  content: "";
}

.chip.cap {
  right: 22px;
  bottom: 28px;
  width: 94px;
  height: 28px;
  background: linear-gradient(180deg, #f9f4eb, #ded2c3);
  border-radius: 999px;
  box-shadow: 0 10px 16px rgba(71, 60, 40, 0.12);
}

.visual-tubs {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.58), transparent 10rem),
    linear-gradient(180deg, #f6efe2, #e8dcc8 58%, #dbceb6);
}

.tub {
  background: linear-gradient(180deg, #fbf8f3, #e9dfd1 76%, #dbcfbe);
}

.tub::before {
  background: linear-gradient(180deg, #21533d, #143726);
}

.tub.wide {
  left: 26px;
  width: 94px;
  height: 84px;
}

.tub.small {
  left: 132px;
  width: 56px;
  height: 58px;
}

.scoop {
  right: 28px;
  bottom: 30px;
  width: 74px;
  height: 26px;
  background: linear-gradient(180deg, #dbc29c, #b18c5f);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 16px rgba(71, 60, 40, 0.1);
}

.scoop::before {
  position: absolute;
  left: -22px;
  top: -12px;
  width: 42px;
  height: 42px;
  background: linear-gradient(180deg, #edd9bb, #d3b182);
  border-radius: 50%;
  content: "";
}

.chip.powder {
  right: 34px;
  bottom: 42px;
  width: 32px;
  height: 14px;
  background: #f2e6d4;
  border-radius: 999px;
}

.visual-sachets {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.6), transparent 9rem),
    linear-gradient(180deg, #f7f0e4, #eadfcf 56%, #dfd2bc);
}

.stick {
  bottom: 28px;
  width: 28px;
  height: 92px;
  background: linear-gradient(180deg, #f5f1ea, #e5dccd);
  border-radius: 14px;
  box-shadow: 0 16px 24px rgba(71, 60, 40, 0.14);
}

.stick::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 28px;
  background: linear-gradient(180deg, #1d5039, #123928);
  content: "";
}

.stick.a { left: 34px; transform: rotate(-9deg); }
.stick.b { left: 68px; transform: rotate(-2deg); }
.stick.c { left: 102px; transform: rotate(6deg); }

.carton {
  right: 24px;
  bottom: 28px;
  width: 92px;
  height: 74px;
  background: linear-gradient(180deg, #fbf8f2, #ece0d0);
  border-radius: 10px;
  box-shadow: 0 14px 22px rgba(71, 60, 40, 0.12);
}

.carton::before {
  position: absolute;
  inset: 14px 16px auto;
  height: 14px;
  background: #164d37;
  content: "";
}

.carton::after {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 6px;
  background: rgba(196, 154, 85, 0.68);
  content: "";
}

.visual-pouches {
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.58), transparent 10rem),
    linear-gradient(180deg, #f8f0e4, #eadfcd 56%, #ddd0b9);
}

.pouch {
  background: linear-gradient(180deg, #1b4f39, #133425 72%, #0d2419);
  clip-path: polygon(8% 0, 92% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
}

.pouch::before {
  left: 16%;
  right: 16%;
  height: 34%;
  bottom: 18%;
  background: linear-gradient(180deg, #f9f5ec, #e9dece);
}

.pouch.tall { left: 28px; width: 72px; height: 112px; }
.pouch.short { left: 112px; width: 56px; height: 88px; }
.pouch.mini { left: 178px; width: 42px; height: 62px; }

.zipper {
  right: 24px;
  bottom: 40px;
  width: 100px;
  height: 14px;
  background: linear-gradient(180deg, #f1e4d0, #d5c1a2);
  border-radius: 999px;
}

.visual-liquids {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6), transparent 9rem),
    linear-gradient(180deg, #f7efe2, #e9ddc9 58%, #ded0b9);
}

.liquid {
  background: linear-gradient(180deg, #fbf8f1, #e7ddd0 76%, #d9ccb8);
}

.liquid::before {
  background: linear-gradient(180deg, #20513c, #133927);
}

.liquid.bottle-one { left: 30px; width: 44px; height: 98px; }
.liquid.bottle-two { left: 86px; width: 56px; height: 112px; }

.liquid.cup {
  left: 154px;
  width: 34px;
  height: 52px;
  border-radius: 0 0 12px 12px;
}

.liquid.drop {
  right: 38px;
  bottom: 36px;
  width: 24px;
  height: 34px;
  background: linear-gradient(180deg, #d6b070, #b3863f);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  transform: rotate(18deg);
}

.packaging-card p,
.resource-card p,
.blueprint-card p,
.label-copy p {
  margin: 0;
  color: var(--muted);
}

.packaging-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.packaging-meta span {
  padding: 4px 9px;
  color: var(--forest);
  background: rgba(18, 61, 39, 0.06);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.label-card {
  overflow: hidden;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.label-stage {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.label-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(10, 44, 28, 0.14));
  content: "";
}

.label-stage.clinical {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.62), transparent 12rem),
    linear-gradient(140deg, #eef3eb, #dfe7de 55%, #cbd9cb);
}

.label-stage.botanical {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.52), transparent 10rem),
    linear-gradient(135deg, #f7efe1, #eadfc6 58%, #d7c2a2);
}

.label-stage.premium {
  background:
    radial-gradient(circle at 84% 20%, rgba(196, 154, 85, 0.22), transparent 11rem),
    linear-gradient(135deg, #133a28, #0c281d 60%, #173827);
}

.label-panel {
  position: relative;
  z-index: 1;
  width: min(210px, 100%);
  padding: 18px 18px 16px;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(18, 61, 39, 0.12);
  border-radius: 18px 18px 14px 14px;
  box-shadow: 0 14px 35px rgba(31, 40, 32, 0.16);
}

.label-stage.premium .label-panel {
  color: #fff8ec;
  background: rgba(18, 47, 33, 0.76);
  border-color: rgba(255, 255, 255, 0.12);
}

.label-panel span,
.label-panel small {
  display: block;
}

.label-panel span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.label-panel strong {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.9;
}

.label-panel small {
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
  line-height: 1.5;
}

.label-copy {
  padding: 20px 22px 24px;
}

.label-copy h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 0.92;
}

.resource-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.resource-visual {
  min-height: 132px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.58), transparent 9rem),
    linear-gradient(180deg, #f7efdf, #eadfcf 56%, #dfd2bc);
}

.resource-card strong,
.blueprint-card h3 {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 0.96;
}

.resource-card p {
  font-size: 14px;
  line-height: 1.55;
}

.sheet,
.carton-face,
.claim-line,
.claim-pill,
.icon-badge,
.banner,
.factory-card,
.factory-line,
.factory-badge {
  position: absolute;
  display: block;
}

.sheet.main {
  left: 24px;
  top: 20px;
  width: 96px;
  height: 84px;
  background: linear-gradient(180deg, #fffdf8, #efe6d8);
  border: 1px solid rgba(18, 61, 39, 0.08);
  border-radius: 12px;
  box-shadow: 0 14px 22px rgba(64, 52, 35, 0.12);
}

.sheet.side {
  left: 84px;
  top: 34px;
  width: 78px;
  height: 66px;
  background: linear-gradient(180deg, #f5efe4, #e7ddce);
  border-radius: 10px;
  transform: rotate(-10deg);
}

.guide {
  background: rgba(196, 154, 85, 0.72);
}

.guide-h {
  left: 30px;
  right: 32px;
  top: 56px;
  height: 2px;
}

.guide-v {
  top: 26px;
  bottom: 22px;
  left: 74px;
  width: 2px;
}

.carton-face.front {
  left: 44px;
  top: 36px;
  width: 88px;
  height: 60px;
  background: linear-gradient(180deg, #fffaf3, #ebdfcf);
  border-radius: 10px;
  box-shadow: 0 14px 20px rgba(64, 52, 35, 0.12);
}

.carton-face.top {
  left: 58px;
  top: 22px;
  width: 78px;
  height: 22px;
  background: #f2e4cf;
  transform: skew(-28deg);
  border-radius: 8px 8px 0 0;
}

.carton-face.side {
  left: 130px;
  top: 34px;
  width: 34px;
  height: 58px;
  background: #deceb8;
  transform: skewY(-28deg);
  border-radius: 0 8px 8px 0;
}

.claim-line {
  left: 24px;
  height: 10px;
  background: rgba(18, 61, 39, 0.18);
  border-radius: 999px;
}

.claim-line.long { top: 28px; width: 136px; }
.claim-line.mid { top: 50px; width: 112px; }
.claim-line.short { top: 72px; width: 80px; }

.claim-pill {
  right: 24px;
  bottom: 26px;
  width: 74px;
  height: 28px;
  background: linear-gradient(180deg, #1a5039, #133a29);
  border-radius: 999px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(18, 61, 39, 0.12);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
}

.icon-badge.chew { left: 24px; top: 22px; }
.icon-badge.powder { left: 78px; top: 48px; }
.icon-badge.tablet { left: 132px; top: 22px; }
.icon-badge.liquid { left: 186px; top: 48px; }

.banner.wide {
  left: 22px;
  right: 22px;
  top: 26px;
  height: 32px;
  background: linear-gradient(90deg, #1a5039, #264f7a);
  border-radius: 12px;
}

.banner.card-a,
.banner.card-b {
  width: 76px;
  height: 52px;
  bottom: 24px;
  background: linear-gradient(180deg, #fffdf8, #ece0ce);
  border-radius: 12px;
  box-shadow: 0 12px 18px rgba(64, 52, 35, 0.12);
}

.banner.card-a { left: 34px; }
.banner.card-b { left: 126px; }

.factory-card {
  left: 24px;
  top: 24px;
  width: 94px;
  height: 70px;
  background: linear-gradient(180deg, #fffdf8, #ece0ce);
  border-radius: 12px;
  box-shadow: 0 12px 18px rgba(64, 52, 35, 0.12);
}

.factory-line {
  left: 132px;
  right: 26px;
  height: 10px;
  background: rgba(18, 61, 39, 0.16);
  border-radius: 999px;
}

.factory-line.one { top: 34px; }
.factory-line.two { top: 58px; width: 110px; }

.factory-badge {
  right: 26px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #1a5039, #133a29);
  border-radius: 50%;
}

.blueprint-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.blueprint-visual {
  min-height: 116px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.56), transparent 8rem),
    linear-gradient(180deg, #f6efdf, #e9ddca 58%, #ddd0b9);
}

.resource-card:nth-child(-n + 2) .resource-visual {
  min-height: 184px;
  padding: 0;
  background: none;
}

.blueprint-card .blueprint-visual {
  padding: 0;
  background: none;
}

.blueprint-chip,
.blueprint-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blueprint-chip {
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  color: var(--forest);
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(18, 61, 39, 0.1);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blueprint-icon {
  right: 24px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  color: var(--gold);
  background: rgba(18, 61, 39, 0.92);
  border-radius: 18px;
  font-size: 26px;
  font-weight: 700;
}

.resource-card strong,
.blueprint-card h3 {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  line-height: 0.94;
}

.blueprint-card > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  border: 1px solid rgba(196, 154, 85, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 13px;
    background: var(--forest);
    border: 0;
    border-radius: 6px;
  }

  .menu-toggle span {
    height: 2px;
    background: #fffdf3;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    background: rgba(255, 253, 247, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 11px 0;
  }

  .nav-group {
    width: 100%;
  }

  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 11px 0;
  }

  .nav-submenu {
    position: static;
    left: auto;
    min-width: 0;
    margin: 0 0 4px;
    padding: 0 0 0 14px;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(18, 61, 39, 0.12);
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 180ms ease, opacity 180ms ease;
  }

  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu,
  .nav-group.open .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    max-height: 220px;
    padding-top: 4px;
  }

  .nav-submenu a {
    padding: 8px 0 8px 12px;
    white-space: normal;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .quality,
  .science,
  .facility,
  .pigeon-hero-banner,
  .page-hero,
  .ecosystem,
  .readiness,
  .about-story,
  .global-support,
  .leadership-note,
  .quality-framework,
  .quality-lab,
  .custom-focus {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .category-grid,
  .program-grid,
  .pigeon-products-grid,
  .blueprint-steps,
  .format-grid,
  .value-grid,
  .story-milestones,
  .workflow-deep-grid,
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .science {
    align-items: start;
  }

  .science-metrics,
  .logo-row,
  .site-footer,
  .faq-grid,
  .global-grid,
  .framework-grid,
  .proof-grid,
  .species-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-gallery img {
    height: 260px;
  }


  .page-hero-panel h2 {
    font-size: 38px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .readiness-panel {
    max-width: 520px;
  }

  .facility-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-lead {
    grid-column: span 2;
    grid-row: span 1;
  }

  .mosaic-lead img {
    min-height: 340px;
  }

  .proof-grid .documentation-card {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .section-shell,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 22px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy,
  .hero-actions {
    position: relative;
    z-index: 1;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 10px;
  }

  .hero-visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
  }

  .other-pets-page .page-hero-copy h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.04;
  }

  .other-pets-page .page-hero-copy .lead {
    max-width: 100%;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .parrot-page .pigeon-hero-copy h1,
  .fish-page .pigeon-hero-copy h1,
  .turtle-page .pigeon-hero-copy h1,
  .rabbit-page .pigeon-hero-copy h1,
  .hamster-page .pigeon-hero-copy h1,
  .reptile-page .pigeon-hero-copy h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.04;
  }

  .parrot-page .pigeon-hero-copy .lead,
  .fish-page .pigeon-hero-copy .lead,
  .turtle-page .pigeon-hero-copy .lead,
  .rabbit-page .pigeon-hero-copy .lead,
  .hamster-page .pigeon-hero-copy .lead,
  .reptile-page .pigeon-hero-copy .lead {
    max-width: 100%;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .trust-bar,
  .capability-grid,
  .qa-dashboard,
  .documents,
  .check-list.quiet,
  .process-track,
  .logo-row,
  .site-footer,
  .program-grid,
  .ecosystem-grid,
  .blueprint-steps,
  .format-grid,
  .faq-grid,
  .value-grid,
  .story-milestones,
  .global-grid,
  .framework-grid,
  .workflow-deep-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }


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

  .category-card {
    height: 178px;
  }

  .category-card img {
    height: 122px;
    transform: scale(1.03);
  }

  .category-card strong {
    min-height: 56px;
    padding: 4px 12px 0;
    font-size: 24px;
    line-height: 1.02;
  }

  .custom-card {
    grid-column: span 2;
    min-height: 178px;
  }

  .trust-bar article,
  .logo-row span {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 61, 39, 0.1);
  }

  .trust-bar article {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .workflow-card,
  .documentation-card {
    grid-column: span 1;
  }

  .workflow article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .quality {
    padding: 22px;
  }

  .page-hero,
  .pigeon-products,
  .programs,
  .ecosystem,
  .blueprint,
  .format-showcase,
  .readiness,
  .faq,
  .about-story,
  .values,
  .facility-spotlight,
  .global-support,
  .about-timeline,
  .leadership-note,
  .quality-framework,
  .workflow-deep,
  .quality-lab,
  .quality-faq,
  .species,
  .benefits,
  .custom-focus,
  .product-faq,
  .resource-packs,
  .label-showcase,
  .resource-library,
  .resource-blueprint {
    padding-top: 28px;
  }

  .page-hero-panel,
  .pigeon-product-card,
  .readiness-panel,
  .quality-lab-panel,
  .custom-focus-panel {
    padding: 22px;
  }

  .workflow-deep-grid .workflow-icon {
    width: 58px;
    height: 58px;
  }

  .workflow-deep-grid .workflow-icon img {
    width: 30px;
    height: 30px;
  }

  .page-hero-panel h2 {
    font-size: 34px;
  }

  .program-card,
  .blueprint-steps article,
  .workflow-deep-grid article,
  .benefit-card {
    min-height: 0;
  }

  .program-card-media {
    margin: -22px -22px 6px;
  }

  .program-card-media img {
    height: 220px;
  }

  .program-card p {
    min-height: 0;
    font-size: 16px;
  }

  .ecosystem-media img,
  .readiness-image img,
  .quality-lab-image img,
  .pigeon-hero-media img,
  .species-media img {
    min-height: 260px;
  }

  .format-card img {
    height: 220px;
  }

  .format-card div {
    padding: 18px;
  }

  .faq-grid summary {
    font-size: 22px;
  }

  .facility-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-lead {
    grid-column: span 1;
  }

  .facility-mosaic img,
  .mosaic-lead img {
    min-height: 250px;
  }

  .timeline-list article {
    grid-template-columns: 1fr;
  }

  .leadership-card,
  .mosaic-copy {
    padding: 22px;
  }

  .species-grid,
  .benefit-grid,
  .pigeon-products-grid,
  .label-grid,
  .resource-grid,
  .blueprint-grid {
    grid-template-columns: 1fr;
  }

  .packaging-grid {
    grid-template-columns: 1fr;
  }

  .packaging-visual {
    min-height: 170px;
  }

  .packaging-photo {
    min-height: 190px;
  }

  .packaging-card h3 {
    font-size: 24px;
  }

  #packaging .section-intro h2 {
    font-size: 34px;
  }

  .resource-visual,
  .blueprint-visual {
    min-height: 112px;
  }

  .custom-focus-copy {
    padding: 26px 22px;
  }

  .proof-grid .documentation-card {
    grid-column: span 1;
  }

  .facility-gallery img {
    height: 220px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 20px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .resources-page .final-cta {
    display: flex;
  }

  .resources-page .final-cta > div,
  .resources-page .final-cta h2 {
    max-width: 100%;
  }

  .resources-page .final-cta h2 {
    font-size: 32px;
    line-height: 1.02;
    text-wrap: pretty;
  }
}

@media (max-width: 460px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 216px;
  }

  .category-card img {
    height: 150px;
  }

  .category-card strong {
    min-height: 66px;
    font-size: 28px;
  }

  .custom-card {
    grid-column: span 1;
    min-height: 188px;
  }
}
