:root {
  --green-950: #082c22;
  --green-900: #0f4938;
  --green-800: #175d48;
  --green-100: #dcece5;
  --coral-600: #e8684a;
  --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-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;
  min-height: min(620px, calc(100vh - 145px));
  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;
  min-height: min(620px, calc(100vh - 145px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 70px;
}

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

.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: 42px;
  height: 42px;
  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-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-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);
}

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

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

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

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

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

  .maintenance-inner .maintenance-copy {
    display: none;
  }

  .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: 570px;
  }

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

@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 {
    min-height: 580px;
  }

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

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