:root {
  --green-950: #082c22;
  --green-900: #0f4938;
  --green-800: #175d48;
  --green-100: #dcece5;
  --coral-600: #ad3f2a;
  --coral-100: #f8ded6;
  --mustard-500: #d4a53c;
  --mustard-100: #f4e8c7;
  --blue-600: #3578a8;
  --blue-100: #dceaf3;
  --ink: #17251f;
  --muted: #647169;
  --line: #d7ddd8;
  --paper: #ffffff;
  --ground: #f5f3ee;
  --soft: #ebe9e2;
  --danger: #a43b2a;
  --focus: #116fda;
  --shadow: 0 8px 28px rgba(15, 44, 34, 0.1);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ground);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body[data-page="private-access"] {
  background: var(--green-950);
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 20px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 16px;
  color: white;
  background: var(--green-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.maintenance-bar {
  color: white;
  background: var(--green-950);
  font-size: 13px;
}

.maintenance-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.maintenance-inner > span,
.maintenance-inner > span > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.maintenance-inner .icon {
  width: 16px;
  height: 16px;
}

.maintenance-short {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.maintenance-inner a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.utility-row {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid #edf0ed;
}

.utility-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-row .icon {
  width: 16px;
  height: 16px;
}

.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--coral-600);
  border-radius: 50%;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.header-search {
  position: relative;
  height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.header-search:focus-within {
  border-color: var(--green-800);
  box-shadow: 0 0 0 2px rgba(23, 93, 72, 0.16);
}

.header-search input {
  min-width: 0;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search button {
  align-self: stretch;
  min-width: 84px;
  border: 0;
  color: white;
  background: var(--green-900);
  font-weight: 700;
  cursor: pointer;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 50;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.search-suggestions a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
}

.search-suggestions a:hover,
.search-suggestions a:focus-visible {
  background: var(--green-100);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-action {
  position: relative;
  min-width: 64px;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--green-950);
  font-size: 12px;
}

.header-action .icon {
  width: 24px;
  height: 24px;
}

.header-action b {
  position: absolute;
  top: -7px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  color: white;
  background: var(--coral-600);
  border-radius: 9px;
  font-size: 11px;
}

.primary-nav {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a:hover {
  color: var(--coral-600);
}

.menu-button,
.mobile-menu,
.mobile-tabbar {
  display: none;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-900);
  background: white;
  cursor: pointer;
}

.icon-button:hover {
  background: var(--green-100);
}

.menu-button {
  display: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
}

.button-primary {
  color: white;
  background: var(--green-900);
}

.button-primary:hover {
  background: var(--green-800);
}

.button-secondary {
  color: var(--green-900);
  background: white;
  border-color: var(--green-900);
}

.button-secondary:hover {
  background: var(--green-100);
}

.button-ghost {
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--green-900);
}

.button-light {
  color: var(--green-950);
  background: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-800);
  font-weight: 750;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.text-link:hover .icon {
  transform: translateX(3px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--coral-600);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: min(540px, calc(100svh - 270px));
  min-height: 450px;
  overflow: hidden;
  background: #e7e0d6;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 52%;
  background: rgba(245, 243, 238, 0.84);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 40px;
}

.hero h1 {
  max-width: 610px;
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: 64px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: #35453e;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-content > small {
  color: var(--muted);
  font-weight: 650;
}

.section {
  padding-block: 72px;
}

.hero + .section {
  padding-top: 40px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-products {
  background: var(--paper);
}

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

.category-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: rgba(8, 44, 34, 0.82);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-tile:hover img {
  transform: scale(1.025);
}

.category-tile > span {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  color: white;
}

.category-tile small {
  grid-column: 1;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-tile strong {
  grid-column: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.category-tile .icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 25px;
  height: 25px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ground);
}

.product-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px;
  overflow: hidden;
}

.product-media::before {
  content: "";
  position: absolute;
  top: 14%;
  right: 14%;
  width: 36%;
  height: 36%;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.16;
}

.product-media-green {
  color: var(--green-950);
  background: var(--green-100);
}

.product-media-coral {
  color: #7f2d20;
  background: var(--coral-100);
}

.product-media-mustard {
  color: #6c5015;
  background: var(--mustard-100);
}

.product-media-blue {
  color: #1b4d70;
  background: var(--blue-100);
}

.product-brand-monogram {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.82;
}

.product-media-brand {
  position: relative;
  font-weight: 850;
}

.product-media-type,
.product-media small {
  position: relative;
  font-size: 12px;
}

.product-media small {
  margin-top: 8px;
  font-weight: 700;
}

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 44, 34, 0.18);
  border-radius: 50%;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.favorite-button[aria-pressed="true"],
[data-favorite][aria-pressed="true"] {
  color: white;
  background: var(--coral-600);
  border-color: var(--coral-600);
}

.favorite-button[aria-pressed="true"] .icon,
[data-favorite][aria-pressed="true"] .icon {
  fill: currentColor;
}

.product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.product-card-meta a {
  color: var(--green-800);
}

.product-card h3 {
  min-height: 64px;
  margin-bottom: 10px;
  font-size: 18px;
}

.product-card h3 a:hover {
  color: var(--green-800);
}

.product-card-content > p {
  min-height: 63px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.product-variant-summary {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  font-size: 12px;
}

.product-variant-summary span {
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-data-row {
  min-height: 28px;
  margin-top: auto;
}

.data-badge {
  display: inline-flex;
  padding: 5px 7px;
  color: #6c5015;
  background: var(--mustard-100);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.data-badge-verified {
  color: var(--green-950);
  background: var(--green-100);
}

.product-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: var(--danger);
  font-size: 12px;
}

.product-availability > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.product-card-actions .button {
  min-width: 0;
  padding-inline: 10px;
  font-size: 13px;
}

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

.brand-tile {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brand-tile strong {
  color: var(--green-950);
  font-size: 18px;
}

.brand-tile span {
  color: var(--muted);
  font-size: 12px;
}

.brand-tile:hover {
  border-color: var(--coral-600);
}

.needs-section {
  background: var(--coral-100);
}

.needs-section .section-heading p:not(.eyebrow) {
  color: #4c5c54;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(127, 45, 32, 0.24);
  border-left: 1px solid rgba(127, 45, 32, 0.24);
}

.needs-grid a {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 6px 18px;
  padding: 24px;
  border-right: 1px solid rgba(127, 45, 32, 0.24);
  border-bottom: 1px solid rgba(127, 45, 32, 0.24);
}

.needs-grid strong,
.needs-grid span {
  grid-column: 1;
}

.needs-grid span {
  color: #775c53;
  font-size: 13px;
}

.needs-grid .icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.needs-grid a:hover {
  background: rgba(255, 255, 255, 0.34);
}

.principles {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.principles > div p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.principles ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.principles li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 3px 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.principles li span {
  grid-row: 1 / span 2;
  color: var(--coral-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.principles li p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.status-band {
  color: white;
  background: var(--green-900);
}

.status-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.status-band h2 {
  margin-bottom: 10px;
}

.status-band p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #dcece5;
}

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

.journal-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.journal-media {
  display: block;
  aspect-ratio: 1.586 / 1;
  overflow: hidden;
  background: var(--soft);
}

.journal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.journal-card:hover .journal-media img {
  transform: scale(1.025);
}

.journal-card > div {
  padding: 22px;
}

.journal-card > div > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.journal-card h2,
.journal-card h3 {
  min-height: 48px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.journal-card p {
  min-height: 66px;
  color: var(--muted);
  font-size: 14px;
}

.launch-band {
  background: var(--mustard-100);
}

.launch-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.launch-inner > div {
  position: relative;
  padding-left: 66px;
}

.launch-inner > div > .icon {
  position: absolute;
  top: 3px;
  left: 0;
  width: 44px;
  height: 44px;
  color: #6c5015;
}

.launch-inner h2 {
  margin-bottom: 10px;
}

.launch-inner p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #5d5543;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--green-800);
}

.breadcrumbs i {
  font-style: normal;
  color: #a8b0aa;
}

.page-head,
.catalog-head {
  padding-top: 48px;
  padding-bottom: 42px;
}

.page-head h1,
.catalog-head h1 {
  max-width: 900px;
  margin-bottom: 14px;
}

.page-head > p:last-child,
.catalog-head > p:last-of-type {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.category-chips a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.category-chips a:hover {
  border-color: var(--green-800);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 48px;
}

.filters {
  align-self: start;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filters-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.filters-title h2 {
  margin: 0;
  font-family: inherit;
  font-size: 16px;
}

.filters-title button,
[data-filter-reset] {
  padding: 0;
  color: var(--green-800);
  background: none;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.filters label {
  display: grid;
  gap: 7px;
  margin-top: 17px;
  font-size: 12px;
  font-weight: 750;
}

.filters select,
.filters input,
.catalog-toolbar select,
.page-search input,
.private-access input {
  min-width: 0;
  min-height: 44px;
  padding: 9px 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.catalog-toolbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.catalog-toolbar p {
  margin: 0;
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-toolbar select {
  min-width: 180px;
}

.filter-open {
  display: none;
}

.empty-state {
  padding: 72px 24px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.empty-state h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.empty-state p {
  color: var(--muted);
}

.catalog-copy {
  padding-top: 24px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
}

.catalog-copy h2 {
  font-size: 30px;
}

.catalog-copy p {
  max-width: 880px;
  color: var(--muted);
}

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

.brand-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-letter {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-900);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.brand-card h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.brand-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.brand-card div > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
}

.brand-card .brand-card-origin {
  margin-bottom: 8px;
  color: var(--coral-600);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-head {
  display: grid;
  grid-template-columns: 120px minmax(0, 760px);
  gap: 32px;
  align-items: center;
}

.brand-head .brand-letter {
  width: 112px;
  height: 112px;
  font-size: 52px;
}

.brand-head h1 {
  margin-bottom: 10px;
}

.brand-head strong {
  color: var(--green-800);
  font-size: 13px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 56px;
  padding-top: 40px;
  padding-bottom: 70px;
}

.product-gallery > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.product-gallery,
.product-summary,
.variant-picker {
  min-width: 0;
}

.variant-picker {
  min-inline-size: 0;
}

.product-media-large {
  aspect-ratio: 1 / 1;
  min-height: 520px;
  padding: 42px;
  border-radius: 8px;
}

.product-media-large .product-brand-monogram {
  top: 40px;
  left: 42px;
  font-size: 88px;
}

.product-media-large .product-media-brand {
  font-size: 28px;
}

.product-media-large .product-media-type {
  font-size: 15px;
}

.product-brand-link {
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-summary h1 {
  margin: 8px 0 15px;
  font-size: 46px;
}

.product-deck {
  color: var(--muted);
  font-size: 17px;
}

.property-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 24px;
}

.property-chips span {
  padding: 6px 10px;
  color: var(--green-950);
  background: var(--green-100);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 750;
}

.variant-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.variant-picker legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
}

.variant-option {
  position: relative;
}

.variant-option input {
  position: absolute;
  opacity: 0;
}

.variant-option span {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
}

.variant-option input:checked + span {
  border-color: var(--green-900);
  box-shadow: inset 0 0 0 1px var(--green-900);
}

.variant-option input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.variant-option strong {
  font-size: 13px;
}

.variant-option small {
  color: var(--muted);
  font-size: 10px;
}

.product-status-box {
  padding: 17px;
  background: var(--coral-100);
  border-left: 4px solid var(--coral-600);
}

.product-status-box > span {
  color: var(--danger);
  font-weight: 850;
}

.product-status-box p {
  margin: 7px 0;
  color: #68483f;
  font-size: 13px;
}

.product-status-box small {
  color: #7f625a;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 16px;
}

.product-facts {
  background: white;
}

.facts-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 56px;
  align-items: start;
}

.facts-nav {
  position: sticky;
  top: 30px;
  display: grid;
  border-top: 1px solid var(--line);
}

.facts-nav a {
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.facts-nav a:hover {
  color: var(--green-800);
}

.facts-content section {
  scroll-margin-top: 30px;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.facts-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.facts-content h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.facts-content p,
.source-note {
  color: var(--muted);
}

.compact-dl,
.analysis-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 18px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.compact-dl > div,
.analysis-list > div {
  padding: 13px 15px;
  background: white;
}

.compact-dl dt,
.analysis-list dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.compact-dl dd,
.analysis-list dd {
  margin: 3px 0 0;
  font-weight: 650;
}

.pending-data {
  padding: 14px;
  background: var(--mustard-100);
  border-left: 4px solid var(--mustard-500);
}

.vet-warning {
  margin-top: 16px;
  padding: 16px;
  color: #6a2e24;
  background: var(--coral-100);
  border: 1px solid #e7ae9e;
  border-radius: 6px;
}

.vet-warning p {
  margin: 5px 0 0;
}

.page-search {
  max-width: 760px;
  height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-left: 15px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.page-search input {
  height: 52px;
  border: 0;
  outline: 0;
}

.page-search .button {
  height: 54px;
  border-radius: 0 5px 5px 0;
}

.search-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.search-result-head h2,
.search-result-head p {
  margin: 0;
}

.search-result-head h2 {
  font-size: 30px;
}

.favorites-count {
  margin: 0 0 18px;
  color: var(--muted);
}

.empty-state-links {
  justify-content: center;
  margin-top: 22px;
}

.cart-page {
  min-height: 420px;
  padding-bottom: 96px;
}

.cart-loading {
  padding: 34px 0;
  color: var(--muted);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: start;
}

.cart-lines {
  border-top: 1px solid var(--line);
}

.cart-line {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 142px;
  gap: 20px;
  align-items: center;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-line-media {
  width: 112px;
  height: 112px;
  display: block;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cart-line-media img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.cart-line-copy {
  min-width: 0;
}

.cart-line-brand {
  display: block;
  margin-bottom: 5px;
  color: var(--coral-600);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-line-copy h2 {
  margin: 0 0 7px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.cart-line-copy > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-line-stepper {
  width: 112px;
  height: 40px;
  grid-template-columns: 34px 1fr 34px;
}

.cart-remove {
  min-height: 44px;
  padding: 6px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
}

.product-reading {
  background: var(--green-100);
}

.reading-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.reading-links a {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 2px solid rgba(8, 44, 34, 0.22);
}

.reading-links strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}

.reading-links span {
  color: #465a51;
  font-size: 13px;
}

.cart-remove:hover {
  color: var(--coral-700);
}

.cart-line-price {
  display: grid;
  gap: 5px;
  text-align: right;
}

.cart-line-price strong {
  color: var(--green-950);
  font-size: 20px;
}

.cart-line-price span {
  color: var(--muted);
  font-size: 11px;
}

.cart-continue {
  width: fit-content;
  margin-top: 22px;
}

.cart-continue .icon {
  transform: rotate(180deg);
}

.cart-summary {
  position: sticky;
  top: 24px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-summary h2 {
  margin-bottom: 22px;
  font-size: 28px;
}

.cart-summary dl {
  margin: 0 0 24px;
}

.cart-summary dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
}

.cart-summary dt {
  color: var(--muted);
}

.cart-summary dd {
  margin: 0;
  font-weight: 750;
}

.cart-summary .cart-summary-total {
  padding-top: 16px;
  border-bottom: 0;
}

.cart-summary-total dt,
.cart-summary-total dd {
  color: var(--green-950);
  font-size: 21px;
}

.cart-checkout {
  width: 100%;
}

.cart-checkout:disabled {
  color: #65716b;
  background: #dfe4e1;
  border-color: #dfe4e1;
  cursor: not-allowed;
}

.cart-summary > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cart-empty {
  padding-block: 58px;
}

.cart-empty .state-icon {
  margin-inline: auto;
}

.state-page {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 70px;
  text-align: center;
}

.state-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 50%;
}

.state-icon .icon {
  width: 34px;
  height: 34px;
}

.state-page h1 {
  max-width: 760px;
  margin-bottom: 14px;
}

.state-page > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.state-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.info-document {
  max-width: 960px;
  padding-bottom: 90px;
}

.info-document h2 {
  font-size: 30px;
}

.info-document p,
.info-document li {
  color: #45534c;
}

.info-document li + li {
  margin-top: 7px;
}

.info-lead {
  padding: 32px;
  margin-bottom: 28px;
  color: white;
  background: var(--green-900);
  border-radius: 8px;
}

.info-lead p {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.notice-panel {
  padding: 24px;
  margin-bottom: 34px;
  background: var(--mustard-100);
  border-left: 5px solid var(--mustard-500);
}

.notice-panel strong {
  font-size: 18px;
}

.notice-panel p {
  margin: 6px 0 0;
}

.info-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.info-section:first-child {
  border-top: 0;
}

.support-faq {
  border-bottom: 1px solid var(--line);
}

.support-faq details {
  border-top: 1px solid var(--line);
}

.support-faq summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: var(--green-950);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.support-faq summary::after {
  position: absolute;
  top: 16px;
  right: 6px;
  content: "+";
  color: var(--coral-600);
  font-size: 22px;
  line-height: 1;
}

.support-faq details[open] summary::after {
  content: "−";
}

.support-faq details p {
  max-width: 760px;
  margin: -4px 0 20px;
}

.contact-panel,
.policy-identity {
  padding: 32px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.contact-panel {
  color: white;
  background: var(--green-900);
}

.contact-panel .eyebrow {
  color: var(--mustard-100);
}

.contact-email {
  display: inline-block;
  margin: 8px 0 28px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.24);
}

.contact-panel dl > div {
  min-width: 0;
  padding: 18px;
  background: var(--green-900);
}

.contact-panel dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 7px 0 0;
  color: white;
  font-weight: 700;
}

.policy-identity {
  background: var(--blue-100);
  border-left: 5px solid var(--blue-600);
}

.policy-identity h2 {
  margin-bottom: 12px;
}

.policy-identity p:last-child {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 26px 0 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-grid section {
  padding: 24px;
  background: white;
}

.value-grid span {
  color: var(--coral-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.value-grid h2 {
  margin: 16px 0 8px;
  font-family: inherit;
  font-size: 18px;
}

.status-overview {
  padding: 28px;
  margin-bottom: 28px;
  color: white;
  background: var(--green-900);
  border-radius: 8px;
}

.status-overview > div {
  position: relative;
  padding-left: 26px;
}

.status-overview .status-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #78d69a;
  box-shadow: 0 0 0 5px rgba(120, 214, 154, 0.18);
}

.status-overview strong {
  font-size: 20px;
}

.status-overview p {
  margin: 8px 0;
  color: white;
}

.status-overview small {
  color: #c7d9d1;
}

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

.status-columns section {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-columns h2 {
  font-size: 26px;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child,
.plain-list li:last-child {
  border-bottom: 0;
}

.check-list .icon {
  width: 18px;
  height: 18px;
  color: var(--green-800);
}

.plain-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-600);
}

.timeline {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding-top: 20px;
}

.timeline time {
  color: var(--coral-600);
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 7px;
}

.timeline p {
  margin: 0;
}

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

.editorial-note {
  background: var(--blue-100);
}

.editorial-note .container {
  max-width: 820px;
  text-align: center;
}

.editorial-note p {
  color: #36566d;
}

.private-access {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 20px;
  background: var(--green-950);
}

body[data-page="private-access"] .maintenance-bar,
body[data-page="private-access"] .site-header,
body[data-page="private-access"] .site-footer,
body[data-page="private-access"] .mobile-tabbar {
  display: none;
}

.private-panel {
  width: min(100%, 560px);
  padding: 36px;
  background: white;
  border: 1px solid #30584b;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.private-panel .brand {
  margin-bottom: 34px;
}

.private-panel h1 {
  margin-bottom: 14px;
  font-size: 40px;
}

.private-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.private-panel form {
  display: grid;
  gap: 12px;
  margin: 26px 0 20px;
}

.private-panel form > label {
  font-weight: 800;
}

.paste-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

[data-add-to-cart].is-added {
  color: var(--green-950);
  background: var(--green-100);
  border-color: var(--green-100);
}

.private-panel input {
  width: 100%;
  min-height: 48px;
  text-transform: uppercase;
}

.private-panel form > small {
  color: var(--muted);
}

.form-result {
  min-height: 24px;
  margin: 0;
  color: var(--danger);
  font-size: 13px;
}

.form-result.success {
  color: var(--green-800);
}

.form-result a {
  overflow-wrap: anywhere;
  text-decoration: underline;
}

.private-back {
  color: var(--green-800);
  font-size: 13px;
  font-weight: 750;
}

.site-footer {
  padding-top: 60px;
  color: #dce7e2;
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 50px;
}

.brand-light {
  color: white;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 16px;
  color: #a9beb5;
  font-size: 13px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cde5da;
  font-size: 12px;
}

.footer-status .icon {
  width: 16px;
  height: 16px;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid nav h2 {
  margin: 5px 0 7px;
  color: white;
  font-family: inherit;
  font-size: 14px;
}

.footer-grid nav a {
  color: #a9beb5;
  font-size: 13px;
}

.footer-grid nav a:hover,
.footer-legal a:hover {
  color: white;
}

.footer-legal {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #829c91;
  border-top: 1px solid #305044;
  font-size: 11px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 48px;
  }

  .header-main {
    grid-template-columns: auto minmax(260px, 1fr) auto;
    gap: 18px;
  }

  .primary-nav {
    gap: 20px;
  }

  .hero h1 {
    font-size: 56px;
  }

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

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

  .product-detail {
    gap: 36px;
  }

  .product-media-large {
    min-height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 68px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .utility-row,
  .primary-nav,
  .header-actions {
    display: none;
  }

  .maintenance-inner {
    min-height: 40px;
    gap: 10px;
  }

  .maintenance-inner .maintenance-copy {
    display: inline;
    font-size: 11px;
    line-height: 1.2;
  }

  .header-main {
    min-height: 68px;
    grid-template-columns: 44px auto 1fr;
    gap: 12px;
  }

  .menu-button {
    display: inline-grid;
  }

  .brand {
    font-size: 24px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-search {
    grid-template-columns: auto 1fr;
    justify-self: stretch;
  }

  .header-search button {
    display: none;
  }

  .mobile-menu {
    border-top: 1px solid var(--line);
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .mobile-menu nav {
    width: min(calc(100% - 40px), var(--container));
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: 0 auto;
    padding: 10px 0 16px;
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .mobile-tabbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    min-height: calc(64px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -5px 20px rgba(15, 44, 34, 0.08);
  }

  .mobile-tabbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--green-950);
    font-size: 10px;
  }

  .mobile-tabbar .icon {
    width: 22px;
    height: 22px;
  }

  .hero,
  .hero-content {
    min-height: 500px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero h1 {
    max-width: 510px;
    font-size: 48px;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 470px;
  }

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

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

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

  .principles {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .status-band-inner,
  .launch-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    display: none;
  }

  .filters.is-open {
    display: block;
  }

  .filter-open {
    display: inline-flex;
  }

  .catalog-toolbar {
    flex-wrap: wrap;
  }

  .catalog-toolbar label {
    margin-left: auto;
  }

  .brand-card-grid {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-media-large {
    min-height: 520px;
  }

  .facts-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .facts-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    border: 0;
  }

  .facts-nav a {
    padding: 8px 10px;
    background: var(--ground);
    border: 1px solid var(--line);
    border-radius: 4px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }

  .footer-legal nav {
    justify-content: flex-start;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cart-summary {
    position: static;
  }

  .reading-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .header-main {
    grid-template-columns: 44px auto 44px;
  }

  .header-search {
    width: 44px;
    height: 44px;
    display: grid;
    grid-column: 3;
    padding: 0;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
  }

  .header-search input,
  .header-search button,
  .header-search .search-suggestions {
    display: none;
  }

  .brand {
    justify-self: center;
  }

  .hero,
  .hero-content {
    height: min(550px, calc(100svh - 145px));
    min-height: 510px;
  }

  .hero-media img {
    object-position: 28% center;
    opacity: 0.8;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 46px;
  }

  .hero::after {
    position: absolute;
    inset: 24% 0 0;
    z-index: 1;
    width: 100%;
    background: rgba(245, 243, 238, 0.86);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-block: 54px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .category-tile > span {
    right: 13px;
    bottom: 11px;
    left: 13px;
  }

  .category-tile strong {
    font-size: 19px;
  }

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

  .product-card-content {
    padding: 13px;
  }

  .product-card h3 {
    min-height: 72px;
    font-size: 15px;
  }

  .product-card-content > p {
    display: none;
  }

  .product-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .product-media {
    padding: 13px;
  }

  .product-brand-monogram {
    top: 12px;
    left: 13px;
    font-size: 36px;
  }

  .product-media-brand {
    font-size: 12px;
  }

  .product-media-type,
  .product-media small {
    font-size: 9px;
  }

  .favorite-button {
    top: 7px;
    right: 7px;
    width: 38px;
    height: 38px;
  }

  .product-variant-summary {
    min-height: 64px;
    font-size: 10px;
  }

  .data-badge {
    font-size: 8px;
  }

  .product-availability {
    font-size: 10px;
  }

  .product-card-actions {
    grid-template-columns: 1fr;
  }

  .product-card-actions .icon-button {
    display: none;
  }

  .product-card-actions .button {
    font-size: 11px;
  }

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

  .brand-tile {
    min-height: 94px;
    padding: 14px;
  }

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

  .journal-grid,
  .journal-grid-all {
    grid-template-columns: 1fr;
  }

  .launch-inner > div {
    padding-left: 0;
  }

  .launch-inner > div > .icon {
    position: static;
    margin-bottom: 18px;
  }

  .page-head,
  .catalog-head {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .page-head > p:last-child,
  .catalog-head > p:last-of-type {
    font-size: 16px;
  }

  .catalog-toolbar label {
    width: 100%;
    margin-left: 0;
  }

  .catalog-toolbar select {
    flex: 1;
    min-width: 0;
  }

  .brand-card {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .brand-letter {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .brand-head {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .brand-head .brand-letter {
    width: 68px;
    height: 68px;
    font-size: 32px;
  }

  .product-summary h1 {
    font-size: 36px;
  }

  .product-media-large {
    min-height: 340px;
    padding: 26px;
  }

  .product-media-large .product-brand-monogram {
    top: 24px;
    left: 26px;
    font-size: 64px;
  }

  .product-media-large .product-media-brand {
    font-size: 21px;
  }

  .variant-picker {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .compact-dl,
  .analysis-list {
    grid-template-columns: 1fr;
  }

  .page-search {
    height: auto;
    grid-template-columns: auto 1fr;
    padding: 8px 8px 8px 14px;
  }

  .page-search .button {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 5px;
  }

  .search-result-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .info-document {
    padding-bottom: 60px;
  }

  .info-lead {
    padding: 22px;
  }

  .info-lead p {
    font-size: 21px;
  }

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

  .timeline article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .private-panel {
    padding: 26px 20px;
  }

  .private-panel h1 {
    font-size: 34px;
  }

  .paste-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}

/* Catalog, search and brand discovery (catalog v2). */
.search-suggestions {
  max-height: min(70vh, 620px);
  padding: 10px;
  overflow-y: auto;
  border-radius: 8px;
}

.search-suggestion-group + .search-suggestion-group {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.search-suggestion-group > strong {
  display: block;
  padding: 5px 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.search-suggestions a[aria-selected="true"] {
  background: var(--green-100);
}

.search-suggestion-product {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.search-suggestion-product img {
  width: 52px;
  height: 52px;
  padding: 3px;
  object-fit: contain;
  background: white;
  border: 1px solid #edf0ed;
  border-radius: 5px;
}

.search-suggestion-product span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.search-suggestion-product b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.search-suggestion-product small {
  color: var(--muted);
}

.catalog-layout {
  grid-template-columns: 250px minmax(0, 1fr);
}

.filters {
  position: sticky;
  top: 18px;
}

.price-filter {
  margin: 17px 0 0;
  padding: 0;
  border: 0;
}

.price-filter legend {
  font-size: 12px;
  font-weight: 750;
}

.price-filter > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.price-filter label {
  margin-top: 7px;
}

.filter-mobile-actions {
  display: none;
}

.active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -4px 0 16px;
}

.active-filter-chips button {
  min-height: 32px;
  padding: 5px 10px;
  color: var(--green-950);
  background: var(--green-100);
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 34px;
}

.catalog-pagination a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 750;
}

.catalog-pagination a[aria-current="page"] {
  color: white;
  background: var(--green-900);
  border-color: var(--green-900);
}

.brand-card {
  grid-template-columns: 1fr;
  min-height: 210px;
}

.brand-card > div {
  display: flex;
  flex-direction: column;
}

.brand-card .text-link {
  margin-top: auto;
}

.brand-official-link {
  display: flex;
  width: fit-content;
  margin-top: 14px;
}

.brand-facts-section {
  padding-top: 30px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-facts-section h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.brand-facts-section > p {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.brand-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-facts > div {
  min-width: 0;
  padding: 18px;
  background: white;
}

.brand-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.brand-facts dd {
  margin: 8px 0 0;
  color: var(--green-950);
  font-weight: 750;
}

.brand-wordmark {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow-wrap: anywhere;
  color: var(--green-950);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 850;
  text-align: center;
}

.brand-filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: end;
  gap: 12px;
  margin-bottom: 24px;
}

.brand-filter-bar label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.brand-filter-bar select {
  min-height: 44px;
  padding: 8px 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brand-filter-bar p {
  margin: 0 0 11px;
  text-align: right;
}

.brand-filter-bar button {
  margin-bottom: 13px;
}

.search-discovery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 54px;
}

.search-discovery h2 {
  margin-bottom: 14px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
}

.search-discovery .category-chips {
  margin-top: 0;
}

.search-selection-heading {
  margin-bottom: 22px;
}

.hero-packshots {
  height: 92px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 6px;
}

.hero-packshots picture {
  width: 72px;
  height: 90px;
  display: block;
}

.hero-packshot {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(8, 44, 34, 0.14));
}

.category-tile {
  background: #fff;
  border: 1px solid var(--line);
}

.category-packshots {
  position: absolute;
  inset: 8px 8px 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.category-packshots picture {
  width: 46%;
  height: 100%;
  display: block;
}

.category-packshots .category-packshot {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
  background: #fff;
}

.category-tile:hover .category-packshot {
  transform: translateY(-3px);
}

@media (max-width: 820px) {
  .filters {
    position: fixed;
    right: 0;
    bottom: calc(64px + env(safe-area-inset-bottom));
    left: 0;
    z-index: 90;
    max-height: calc(100vh - 86px);
    display: none;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -12px 35px rgba(8, 44, 34, 0.2);
  }

  .filters.is-open {
    display: block;
  }

  .filter-mobile-actions {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin: 20px -20px -20px;
    padding: 12px 20px;
    background: white;
    border-top: 1px solid var(--line);
  }

  .filter-mobile-actions [data-filter-reset] {
    padding-inline: 10px;
  }

  .brand-filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .brand-filter-bar p {
    text-align: left;
  }

  .search-discovery {
    grid-template-columns: 1fr;
  }

  .hero-packshots {
    height: 104px;
  }

  .hero-packshots picture {
    width: 78px;
    height: 98px;
  }
}

@media (max-width: 560px) {
  .catalog-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .catalog-toolbar p {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .catalog-toolbar label {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-toolbar select {
    min-width: 0;
    width: 100%;
  }

  .brand-filter-bar {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .policy-identity {
    padding: 24px 20px;
  }

  .contact-panel dl {
    grid-template-columns: 1fr;
  }

  .brand-head {
    grid-template-columns: 1fr;
  }

  .brand-filter-bar p,
  .brand-filter-bar button {
    margin: 0;
  }

  .search-discovery {
    margin-bottom: 38px;
  }

  .hero-packshots {
    height: 86px;
    gap: 8px;
  }

  .hero-packshots picture {
    width: 64px;
    height: 82px;
  }
}

@media (max-width: 359px) {
  .product-grid,
  .category-grid,
  .brand-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card h3 {
    min-height: 0;
  }

  .product-card-content > p {
    min-height: 0;
    display: block;
  }

  .maintenance-inner strong {
    font-size: 11px;
  }
}

@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;
  }
}

/* Retail product surfaces (catalog v2). */
.product-card {
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(8, 44, 34, 0.03);
}

.product-card-media {
  height: 260px;
  aspect-ratio: auto;
  background: #fff;
  border-bottom: 1px solid #edf0ed;
}

.product-card-media > a,
.product-card-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.product-image {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  background: #fff;
}

.product-card-content {
  gap: 10px;
  padding: 18px;
}

.product-card h3 {
  min-height: 44px;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.product-card-content > .product-card-descriptor {
  min-height: 54px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.product-card-meta {
  min-height: 17px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0;
}

.card-variant,
.card-variant-single {
  min-height: 42px;
  margin: 0;
}

.card-variant select {
  width: 100%;
  height: 42px;
  padding: 0 34px 0 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}

.card-variant-single {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.card-price {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: auto;
}

.card-price strong {
  font-size: 23px;
  line-height: 1.15;
}

.card-price span {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
}

.product-card-actions {
  grid-template-columns: 1fr;
}

.product-card-actions .button {
  width: 100%;
  min-height: 44px;
  gap: 8px;
}

.product-detail {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  grid-template-areas:
    "gallery title"
    "gallery purchase";
  align-items: start;
  gap: 12px 58px;
}

.product-title {
  grid-area: title;
  min-width: 0;
}

.product-title h1 {
  margin: 8px 0 14px;
  font-size: 42px;
}

.product-identity {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.product-gallery {
  grid-area: gallery;
  min-width: 0;
}

.gallery-stage {
  height: min(620px, 56vw);
  min-height: 480px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.gallery-slide {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
}

.gallery-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-slide .product-image {
  padding: 34px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  padding-top: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-thumb {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.gallery-thumb[aria-current="true"] {
  border-color: var(--green-900);
  box-shadow: inset 0 0 0 1px var(--green-900);
}

.gallery-thumb picture,
.gallery-thumb img {
  width: 100%;
  height: 100%;
}

.gallery-thumb img {
  padding: 2px;
  object-fit: contain;
}

.product-lightbox {
  width: min(92vw, 980px);
  height: min(92vh, 980px);
  padding: 24px;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.product-lightbox::backdrop {
  background: rgba(8, 22, 17, 0.78);
}

.product-lightbox > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: #fff;
}

.product-purchase {
  grid-area: purchase;
  min-width: 0;
  padding-top: 8px;
}

.product-price {
  display: grid;
  gap: 2px;
  margin: 22px 0;
}

.product-price strong {
  font-size: 36px;
  line-height: 1.1;
}

.product-price > span,
.product-price small {
  color: var(--muted);
}

.product-price > span {
  font-size: 14px;
}

.product-price small {
  margin-top: 5px;
  font-size: 12px;
}

.purchase-controls {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 10px;
}

.quantity-stepper {
  height: 50px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quantity-stepper button {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.quantity-stepper output {
  text-align: center;
  font-weight: 700;
}

.add-to-cart-large {
  min-height: 50px;
}

.favorite-product {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
}

.checkout-note {
  margin: 16px 0;
  padding: 11px 13px;
  color: #6e382c;
  background: #fff4ef;
  border-left: 3px solid var(--coral-600);
  font-size: 13px;
}

.delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.delivery-note > div {
  display: grid;
  gap: 2px;
}

.delivery-note span {
  color: var(--muted);
  font-size: 12px;
}

.product-accordions {
  width: min(100%, 920px);
}

.product-accordions details {
  border-top: 1px solid var(--line);
}

.product-accordions details:last-child {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  padding: 20px 44px 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
}

.detail-content {
  padding: 0 0 24px;
  color: #33443d;
}

.detail-content > p:last-child,
.feeding-copy:last-child {
  margin-bottom: 0;
}

.feeding-copy {
  max-height: 420px;
  overflow: auto;
  line-height: 1.7;
}

.table-scroll {
  overflow-x: auto;
}

.variant-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.variant-table th,
.variant-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.variant-table th {
  font-weight: 700;
}

@media (max-width: 1080px) {
  .product-card-media {
    height: 235px;
  }

  .product-detail {
    gap: 12px 34px;
  }

  .gallery-stage {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "gallery"
      "purchase";
    gap: 22px;
    padding-top: 24px;
  }

  .product-title h1 {
    font-size: 34px;
  }

  .gallery-stage {
    height: min(86vw, 620px);
    min-height: 340px;
  }

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

@media (max-width: 560px) {
  .product-card-media {
    height: 180px;
  }

  .product-image {
    padding: 10px;
  }

  .product-card-content {
    gap: 8px;
    padding: 12px;
  }

  .product-card h3 {
    min-height: 54px;
    font-size: 13px;
  }

  .product-card-content > .product-card-descriptor {
    min-height: 66px;
    font-size: 12px;
  }

  .product-card-meta {
    font-size: 10px;
  }

  .card-variant,
  .card-variant-single {
    min-height: 38px;
  }

  .card-variant select {
    height: 38px;
    padding-left: 8px;
    font-size: 12px;
  }

  .card-price {
    min-height: 51px;
  }

  .card-price strong {
    font-size: 19px;
  }

  .product-card-actions .button {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .product-card-actions .icon {
    width: 17px;
    height: 17px;
  }

  .gallery-stage {
    height: calc(100vw - 40px);
    min-height: 280px;
  }

  .gallery-slide .product-image {
    padding: 18px;
  }

  .product-title h1 {
    font-size: 29px;
  }

  .product-deck {
    font-size: 15px;
  }

  .purchase-controls {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .cart-page {
    padding-bottom: 80px;
  }

  .cart-line {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
  }

  .cart-line-media {
    width: 80px;
    height: 80px;
  }

  .cart-line-copy h2 {
    font-size: 14px;
  }

  .cart-line-price {
    grid-column: 2;
    text-align: left;
  }

  .cart-line-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cart-summary {
    padding: 20px;
  }

  .favorite-button {
    width: 44px;
    height: 44px;
  }
}
