:root {
  --ivory: #fbf8f0;
  --cream: #f5efe3;
  --paper: #fffdf8;
  --forest: #0d5239;
  --forest-deep: #073a2a;
  --forest-soft: #e8f0ea;
  --sage: #678172;
  --ink: #19362c;
  --muted: #6d7a73;
  --gold: #c69743;
  --gold-soft: #e8d4aa;
  --line: #e7decd;
  --danger: #b5453d;
  --success: #397c51;
  --shadow-sm: 0 8px 24px rgba(26, 57, 46, .07);
  --shadow-md: 0 18px 50px rgba(26, 57, 46, .10);
  --shadow-lg: 0 30px 80px rgba(7, 58, 42, .16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: min(1200px, calc(100% - 48px));
  --font-display: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

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

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

html.is-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-locked {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

img,
video,
canvas,
iframe {
  display: block;
  height: auto;
  max-width: 100%;
}

main,
.announcement,
.site-header,
.site-footer {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  main {
    overflow-x: clip;
  }
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}

.container {
  width: var(--container);
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
}

fieldset,
form,
label,
input,
select,
textarea {
  min-width: 0;
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--ivory);
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility .35s ease;
}

.preloader.is-ready {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  position: relative;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
}

.preloader__mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.preloader__mark span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .85s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #e5ca96;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .89rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(13, 82, 57, .18);
}

.button--primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 14px 30px rgba(13, 82, 57, .24);
}

.button--outline {
  color: var(--forest);
  background: transparent;
  border-color: #cfc4af;
}

.button--outline:hover {
  border-color: var(--forest);
  background: var(--forest-soft);
}

.button--soft {
  color: var(--forest);
  background: var(--forest-soft);
}

.button--cream {
  color: var(--forest);
  background: #fffaf0;
}

.button--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.button--danger {
  color: #fff;
  background: var(--danger);
}

.button--block {
  width: 100%;
}

.text-link {
  color: var(--forest);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.announcement {
  min-height: 30px;
  color: #415b50;
  background: #f0ecdf;
  border-bottom: 1px solid rgba(13, 82, 57, .06);
  font-size: .72rem;
  font-weight: 600;
}

.announcement__inner {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.announcement p span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border: 2px solid #fff9e9;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold);
}

.announcement a {
  color: var(--forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav > a,
.desktop-nav > button {
  position: relative;
  padding: 28px 0 24px;
  color: #344e43;
  background: none;
  border: 0;
  font-size: .76rem;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav > a::after,
.desktop-nav > button::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > button:hover::after,
.desktop-nav > .is-active::after {
  transform: scaleX(1);
}

.nav-products {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-chevron {
  display: block;
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .2s ease;
}

.nav-products[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

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

.search-trigger {
  display: flex;
  width: 170px;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 15px;
  color: #8a938e;
  background: #faf8f2;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  text-align: left;
}

.search-trigger:hover {
  border-color: #b8c7bf;
  box-shadow: var(--shadow-sm);
}

.search-trigger svg,
.icon-button svg,
.search-input-wrap svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-button {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--forest);
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.icon-button:hover {
  background: var(--forest-soft);
}

.cart-button > span,
.wishlist-header-button > span {
  position: absolute;
  top: 0;
  right: -2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border: 2px solid var(--paper);
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 700;
}

.wishlist-header-button > span[hidden] {
  display: none;
}

.header-contact {
  min-height: 40px;
  padding-inline: 16px;
  font-size: .72rem;
}

.menu-trigger {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.22, 1, .36, 1);
}

.menu-trigger span {
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 5px 0;
  background: var(--forest);
  border-radius: 999px;
  transform-origin: center;
  transition: opacity .2s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.menu-trigger[aria-expanded="true"] {
  background: var(--forest-soft);
  box-shadow: 0 8px 24px rgba(13, 82, 57, .12);
}

.menu-trigger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.35);
}

.menu-trigger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu-trigger:active {
  transform: scale(.94);
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 4;
  padding: 22px 0 28px;
  background: rgba(255, 253, 248, .99);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 250px;
  gap: 30px;
}

.mega-feature {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: var(--radius);
}

.mega-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.mega-feature:hover img {
  transform: scale(1.04);
}

.mega-feature__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(3, 35, 24, .9));
}

.mega-feature__copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.mega-feature__copy small,
.mega-feature__copy strong,
.mega-feature__copy em {
  display: block;
}

.mega-feature__copy small {
  margin-bottom: 5px;
  color: #e8d6b0;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mega-feature__copy strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
}

.mega-feature__copy em {
  margin-top: 12px;
  font-size: .73rem;
  font-style: normal;
  font-weight: 700;
}

.mega-menu__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 32px;
}

.mega-menu__category-column {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 24px;
}

.mega-menu__category {
  min-width: 0;
}

.mega-menu__categories h3,
.mega-menu__aside h3 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 1rem;
}

.mega-menu__categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  color: #586961;
  font-size: .75rem;
}

.mega-menu__categories a:hover {
  color: var(--forest);
  transform: translateX(2px);
}

.mega-menu__categories a span {
  padding: 2px 7px;
  color: var(--danger);
  background: #fbebe8;
  border-radius: 999px;
  font-size: .56rem;
  font-weight: 700;
}

.mega-menu__categories .mega-all {
  display: inline-flex;
  margin-top: 8px;
  color: var(--forest);
  font-weight: 700;
}

.mega-menu__aside {
  align-self: stretch;
  padding: 24px;
  background: var(--forest-soft);
  border: 1px solid #d7e3da;
  border-radius: var(--radius);
}

.mega-menu__aside p:not(.eyebrow) {
  color: #61726a;
  font-size: .75rem;
}

.mega-menu__aside a {
  color: var(--forest);
  font-size: .76rem;
  font-weight: 700;
}

.mega-program-list {
  display: grid;
  align-content: start;
}

.mega-program-list > a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
}

.mega-program-list > a:first-child {
  padding-top: 2px;
}

.mega-program-list > a > span:first-child {
  color: var(--gold);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.mega-program-list strong,
.mega-program-list small {
  display: block;
}

.mega-program-list strong {
  margin-bottom: 2px;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: .9rem;
}

.mega-program-list small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.mega-program-list em {
  color: var(--forest);
  font-style: normal;
  transition: transform .2s ease;
}

.mega-program-list > a:hover em {
  transform: translateX(3px);
}

.mobile-drawer,
.drawer-backdrop {
  display: none;
}

.flash-wrap {
  position: fixed;
  top: 112px;
  right: 24px;
  z-index: 1600;
  display: grid;
  width: min(420px, calc(100vw - 32px));
  gap: 10px;
}

.flash {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: .84rem;
}

.flash--error {
  border-left-color: var(--danger);
}

.flash button {
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  position: relative;
  padding: 92px 0;
}

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

.section--cream {
  background: var(--cream);
}

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

.section-head--center {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
  text-align: center;
}

.section-head--center.home-categories__head {
  max-width: 1100px;
}

.section-head.home-categories__head h2 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.home-categories__head h2 span {
  white-space: nowrap;
}

.section-head.home-categories__head p:not(.eyebrow) {
  max-width: 760px;
}

.section-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--forest-deep);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-head p:not(.eyebrow) {
  max-width: 600px;
  margin: 14px auto 0;
  color: var(--muted);
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 rgba(13, 82, 57, .02);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover {
  border-color: #d6c6a7;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee7d9;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__brand,
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: var(--forest);
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card__badge {
  top: 54px;
  right: 12px;
  left: auto;
  color: #7e591d;
  background: #fff3d7;
}

.wishlist-button {
  margin: 0;
}

.wishlist-button button {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.wishlist-button button:disabled {
  cursor: wait;
  opacity: .65;
}

.wishlist-button svg {
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: fill .2s ease, transform .2s ease;
}

.wishlist-button.is-active svg {
  fill: currentColor;
}

.wishlist-button.is-saving svg {
  transform: scale(.82);
}

.product-card .wishlist-button--card {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  margin-top: 0;
}

.wishlist-button--card button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: var(--forest);
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(7, 58, 42, .12);
  backdrop-filter: blur(10px);
}

.wishlist-button--card button:hover,
.wishlist-button--card.is-active button {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.wishlist-button--card svg {
  width: 18px;
  height: 18px;
}

.product-card__soldout {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: #fff;
  background: rgba(17, 28, 24, .69);
  text-align: center;
  backdrop-filter: grayscale(.5);
}

.product-card__soldout strong,
.product-card__soldout small {
  display: block;
}

.product-card__soldout strong {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 6px;
  font-size: .72rem;
  letter-spacing: .08em;
}

.product-card__soldout small {
  margin-top: 8px;
  color: #e6e3de;
  font-size: .63rem;
}

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

.product-card__category {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.product-card__excerpt {
  display: -webkit-box;
  min-height: 42px;
  margin-bottom: 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-card__price strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.product-card__price span {
  color: var(--muted);
  font-size: .66rem;
}

.stock-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 14px;
  color: var(--success);
  font-size: .65rem;
}

.stock-line > span {
  width: 7px;
  height: 7px;
  background: currentColor;
  border: 2px solid #dff0e4;
  border-radius: 50%;
  box-sizing: content-box;
}

.stock-line--preorder {
  color: #9b6f26;
}

.stock-line--preorder > span {
  border-color: #f6e8ca;
}

.stock-line--sold_out {
  color: var(--danger);
}

.stock-line--sold_out > span {
  border-color: #f9dcda;
}

.product-card form,
.product-card .button {
  margin-top: auto;
}

.site-footer {
  padding-bottom: 0;
  color: #43594f;
  background: #f5f1e8;
}

.footer-cta {
  color: #fff;
  background: linear-gradient(100deg, var(--forest-deep), var(--forest));
}

.footer-cta__inner {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 32px;
}

.footer-cta h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.footer-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #cbdcd4;
  font-size: .85rem;
}

.footer-cta__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 36px;
  padding-block: 52px 42px;
}

.footer-grid h3 {
  margin-bottom: 13px;
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: .76rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 7px;
  color: #6c7771;
  font-size: .7rem;
}

.footer-grid a:hover {
  color: var(--forest);
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
}

.footer-brand > p {
  max-width: 280px;
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social-row a {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid #cfc9bd;
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #ded7cb;
  font-size: .63rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.mobile-bottom-nav {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  isolation: isolate;
  transition: opacity .22s ease, visibility .22s ease;
}

.auth-modal.is-open {
  display: grid;
  opacity: 1;
  visibility: visible;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 31, 22, .64);
  border: 0;
  backdrop-filter: blur(8px);
}

.auth-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  min-width: 0;
  max-width: 100%;
  max-height: calc(100dvh - 36px);
  padding: 34px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 24px;
  box-shadow: 0 36px 100px rgba(3, 35, 24, .28);
  transform: translateY(14px) scale(.985);
  -webkit-overflow-scrolling: touch;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.auth-modal.is-open .auth-panel {
  transform: translateY(0) scale(1);
}

.auth-panel__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--forest);
  background: #f2eee5;
  border: 0;
  border-radius: 50%;
}

.auth-panel__handle {
  display: none;
}

.auth-panel__close svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.auth-panel__brand {
  margin-bottom: 24px;
}

.auth-panel__brand img {
  display: block;
  width: 145px;
  height: auto;
}

.auth-panel > h2 {
  margin-bottom: 8px;
  color: var(--forest-deep);
  font-size: 2rem;
}

.auth-panel > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .78rem;
}

.auth-panel__form {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 15px;
}

.auth-panel__form .field,
.auth-panel__form .field > span,
.auth-panel__form .field > input,
.password-field,
.auth-panel__options,
.auth-panel__register,
.auth-panel__privacy {
  min-width: 0;
  max-width: 100%;
}

.auth-panel__form .field > span:first-child {
  font-size: .68rem;
  font-weight: 700;
}

.auth-panel__form .field > input,
.password-field {
  min-height: 50px;
  margin-top: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.auth-panel__form .field > input {
  width: 100%;
  padding: 0 14px;
}

.password-field {
  display: flex;
  align-items: center;
}

.password-field input {
  min-width: 0;
  flex: 1;
  padding: 0 14px;
  background: transparent;
  border: 0;
  outline: 0;
}

.password-field button {
  padding: 0 13px;
  color: var(--forest);
  background: transparent;
  border: 0;
  font-size: .62rem;
  font-weight: 700;
}

.auth-panel__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: .65rem;
}

.auth-panel__options a,
.auth-panel__register a {
  color: var(--forest);
  font-weight: 700;
}

.field-error {
  display: block;
  margin-top: 5px;
  color: var(--danger);
  font-size: .62rem;
}

.auth-panel__register {
  margin: 18px 0 4px !important;
  overflow-wrap: anywhere;
  text-align: center;
}

.auth-panel__privacy {
  display: block;
  color: #89948f;
  font-size: .58rem;
  text-align: center;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  width: 100%;
  max-width: 100%;
  place-items: start center;
  padding-top: max(8vh, 70px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.search-modal.is-open {
  display: grid;
  opacity: 1;
  visibility: visible;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 31, 22, .58);
  border: 0;
  backdrop-filter: blur(8px);
}

.search-panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  max-width: calc(100% - 32px);
  max-height: min(750px, 84vh);
  min-width: 0;
  padding: 28px;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(4, 32, 22, .3);
  transform: translateY(-16px) scale(.985);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.search-modal.is-open .search-panel {
  transform: translateY(0) scale(1);
}

.search-panel__head {
  display: flex;
  min-width: 0;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.search-panel__head > div {
  min-width: 0;
}

.search-panel__head h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: 1.8rem;
}

.search-panel__head .eyebrow {
  margin-bottom: 4px;
}

.search-panel__head > button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  background: #f0ece3;
  border: 0;
  border-radius: 50%;
  font-size: 1.4rem;
}

.search-input-wrap {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  background: #fff;
  border: 1px solid #d5cbb9;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(13, 82, 57, .06);
}

.search-input-wrap:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(13, 82, 57, .1);
}

.search-input-wrap input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1rem;
}

.search-input-wrap kbd {
  padding: 3px 7px;
  color: #77837d;
  background: #f3f0e8;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: .6rem;
}

.search-hint {
  margin: 9px 4px 14px;
  color: var(--muted);
  font-size: .68rem;
}

.search-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.search-popular span {
  margin-right: 3px;
  color: var(--muted);
  font-size: .67rem;
}

.search-popular button {
  padding: 7px 10px;
  color: var(--forest);
  background: var(--forest-soft);
  border: 0;
  border-radius: 999px;
  font-size: .66rem;
}

.search-results {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 8px;
  overflow-x: hidden;
}

.search-result {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
}

.search-result:hover,
.search-result.is-selected {
  background: #f6f2e9;
  border-color: var(--line);
}

.search-result img {
  width: 68px;
  height: 56px;
  object-fit: cover;
  border-radius: 9px;
}

.search-result strong,
.search-result small,
.search-result em {
  display: block;
}

.search-result > span {
  min-width: 0;
}

.search-result strong,
.search-result small {
  overflow-wrap: anywhere;
}

.search-result strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .9rem;
}

.search-result small {
  color: var(--muted);
  font-size: .64rem;
}

.search-result em {
  color: var(--forest);
  font-size: .7rem;
  font-style: normal;
  font-weight: 700;
}

.search-empty,
.search-loading {
  padding: 34px;
  color: var(--muted);
  background: #f7f4ed;
  border-radius: 12px;
  font-size: .8rem;
  text-align: center;
}

.search-panel__foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  color: #87918c;
  border-top: 1px solid var(--line);
  font-size: .62rem;
}

.search-panel__foot a {
  margin-left: auto;
  color: var(--forest);
  font-weight: 700;
}

.page-hero {
  padding: 70px 0 55px;
  background: radial-gradient(circle at 85% 20%, rgba(198, 151, 67, .10), transparent 28%), var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 820px;
}

.page-hero h1 {
  margin-bottom: 18px;
  color: var(--forest-deep);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .7rem;
}

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

.form-card,
.content-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  color: #324d42;
  font-size: .72rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: #fff;
  border: 1px solid #d8cebc;
  border-radius: 10px;
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(13, 82, 57, .1);
}

.field small {
  color: var(--muted);
  font-size: .65rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .75rem;
}

.check-row input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: #39604d;
  background: #e8f2eb;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
}

.status-pill--warning {
  color: #865c1e;
  background: #fff0cf;
}

.status-pill--danger {
  color: #9e3d37;
  background: #fae8e6;
}

.status-pill--neutral {
  color: #65716b;
  background: #eeefed;
}

.empty-state {
  padding: 60px 26px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed #d7cdbb;
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h2 {
  color: var(--forest-deep);
}

.empty-state .button {
  margin-top: 12px;
}

.home-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home-hero__grid {
  display: grid;
  width: var(--container);
  min-width: 0;
  max-width: none;
  min-height: 650px;
  grid-template-columns: 48% 52%;
  align-items: stretch;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  max-width: 600px;
  padding: 82px 48px 42px 0;
  flex-direction: column;
  justify-content: center;
}

.home-hero__copy h1 {
  margin-bottom: 22px;
  color: #493a25;
  font-size: clamp(3rem, 5.1vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.home-hero__copy h1 em {
  display: block;
  color: var(--forest);
  font-style: normal;
}

.home-hero__lead {
  max-width: 510px;
  margin-bottom: 26px;
  color: #53655d;
  font-size: .94rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero__reserve {
  align-self: flex-start;
  margin-top: 16px;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
}

.home-hero__reserve span {
  margin-left: 7px;
}

.home-hero__metrics {
  display: grid;
  max-width: 510px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--gold-soft);
}

.home-hero__metrics div {
  display: grid;
}

.home-hero__metrics strong {
  color: var(--forest);
  font-size: .78rem;
}

.home-hero__metrics span {
  color: var(--muted);
  font-size: .6rem;
}

.home-hero__note {
  max-width: 510px;
  margin-top: 9px;
  color: #8a928e;
  font-size: .55rem;
}

.home-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 0;
  width: 52vw;
  max-width: none;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 46% 0 0 46% / 55% 0 0 45%;
}

.home-hero__visual::before {
  display: none;
}

.home-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.home-hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 253, 248, .12), transparent 24%), linear-gradient(0deg, rgba(4, 31, 22, .08), transparent 35%);
}

.home-hero__trust {
  position: absolute;
  right: clamp(24px, 3vw, 58px);
  bottom: 46px;
  left: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 6px;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.home-hero__trust span {
  display: flex;
  min-width: 132px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  color: #51655b;
  border-right: 1px solid var(--gold-soft);
  font-size: .62rem;
  font-weight: 600;
}

.home-hero__trust span:last-child {
  border-right: 0;
}

.home-hero__trust b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-size: .55rem;
}

.home-hero__leaf {
  position: absolute;
  top: 52px;
  left: -78px;
  z-index: 1;
  width: 210px;
  opacity: .24;
}

.category-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  min-height: 330px;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfaf5, #f6f0e4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.category-card:first-child {
  border-color: var(--gold);
}

.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.category-card > img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .45s ease;
}

.category-card > img.category-card__photo {
  object-fit: cover;
  mix-blend-mode: normal;
}

.category-card:hover > img {
  transform: scale(1.035) translateY(-3px);
}

.category-card__icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--forest);
  background: #eceadf;
  border-radius: 50%;
}

.category-card > span {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0 18px 18px;
}

.category-card strong,
.category-card small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.category-card strong {
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.category-card small {
  display: -webkit-box;
  max-width: 210px;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: .64rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-card em {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: end;
  color: var(--forest);
  font-style: normal;
}

.home-stock {
  background: #f9f6ef;
}

.stock-tabs {
  display: flex;
  gap: 10px;
  margin-top: -18px;
  margin-bottom: 28px;
}

.stock-tabs a {
  padding: 7px 13px;
  color: var(--muted);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
}

.stock-tabs a:hover,
.stock-tabs .is-active {
  color: #fff;
  background: var(--forest);
}

.farm-process {
  display: grid;
  min-height: 520px;
  grid-template-columns: 43% 57%;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.farm-process__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 48% 0 / 0 0 34% 0;
}

.farm-process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farm-process__copy {
  display: flex;
  max-width: 760px;
  padding: 64px 64px 56px;
  flex-direction: column;
  justify-content: center;
}

.farm-process__copy h2 {
  margin-bottom: 10px;
  color: var(--forest-deep);
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.farm-process__copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: .82rem;
}

.farm-process__copy > .button {
  align-self: center;
  margin-top: 28px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.process-steps::before {
  position: absolute;
  top: 14px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: var(--gold-soft);
}

.process-steps div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-steps span {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 15px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-soft);
  font-size: .54rem;
}

.process-steps strong {
  color: var(--forest-deep);
  font-size: .73rem;
}

.process-steps small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .58rem;
  line-height: 1.5;
}

.home-programs {
  overflow: hidden;
}

.home-programs__leaf {
  position: absolute;
  top: 110px;
  width: 190px;
  opacity: .28;
}

.home-programs__leaf--left { left: -55px; }
.home-programs__leaf--right { right: -55px; }

.program-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1020px;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-inline: auto;
}

.program-card {
  position: relative;
  min-height: 300px;
  padding: 34px 28px 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.program-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.program-card--featured {
  color: #fff;
  background: linear-gradient(145deg, var(--forest), var(--forest-deep));
  border-color: var(--forest);
  box-shadow: 0 20px 50px rgba(13, 82, 57, .18);
}

.program-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  font-size: .5rem;
  font-weight: 700;
}

.program-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--forest);
  background: var(--forest-soft);
  border-radius: 18px;
  font-size: 1.4rem;
}

.program-card--featured .program-card__icon {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
}

.program-card h3 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: 1.3rem;
}

.program-card--featured h3 {
  color: #fff;
}

.program-card p {
  color: var(--muted);
  font-size: .72rem;
}

.program-card--featured p {
  color: #c7d9d1;
}

.program-card > strong {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  color: var(--forest);
  font-size: .68rem;
}

.program-card--featured > strong {
  color: #f3d8a6;
}

.home-programs__all {
  margin: 20px 0 0;
  text-align: center;
}

.home-info {
  background: #f7f3ea;
}

.home-info__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.home-info__intro h2 {
  max-width: 440px;
  margin-bottom: 28px;
  color: var(--forest-deep);
  font-size: 2.5rem;
}

.info-points {
  display: grid;
  gap: 17px;
}

.info-points > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
}

.info-points > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 700;
}

.info-points p,
.info-points strong,
.info-points small {
  display: block;
  margin: 0;
}

.info-points strong {
  color: var(--ink);
  font-size: .78rem;
}

.info-points small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .66rem;
}

.faq-card {
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.faq-card h2 {
  margin-bottom: 16px;
  color: var(--forest-deep);
  font-size: 1.25rem;
}

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

.faq-card summary {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  color: #3e554b;
  font-size: .75rem;
  font-weight: 600;
}

.faq-card summary::-webkit-details-marker { display: none; }
.faq-card details[open] summary span { transform: rotate(45deg); }

.faq-card details p {
  padding: 0 30px 17px 0;
  color: var(--muted);
  font-size: .7rem;
}

.catalog-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
  color: var(--forest);
  font-size: .7rem;
  font-weight: 600;
}

.catalog-hero__facts b {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  place-items: center;
  background: var(--forest-soft);
  border-radius: 50%;
  font-size: .55rem;
}

.catalog-section {
  background: #f8f5ee;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
}

.catalog-sidebar {
  align-self: start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.catalog-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.catalog-sidebar__head h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: .88rem;
}

.catalog-sidebar__head a {
  color: var(--muted);
  font-size: .62rem;
}

.catalog-search-field {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

.catalog-search-field span,
.catalog-sidebar legend {
  color: #52645b;
  font-size: .65rem;
  font-weight: 700;
}

.catalog-search-field input {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  font-size: .72rem;
}

.catalog-search-field input:focus {
  border-color: var(--forest);
}

.catalog-sidebar fieldset {
  display: grid;
  gap: 3px;
  margin: 0 0 20px;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.catalog-sidebar legend {
  margin-bottom: 8px;
  padding: 0;
}

.catalog-sidebar fieldset > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px;
  color: var(--muted);
  border-radius: 7px;
  font-size: .7rem;
}

.catalog-sidebar fieldset > a:hover,
.catalog-sidebar fieldset > a.is-active {
  color: var(--forest);
  background: var(--forest-soft);
  font-weight: 700;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 3px;
  color: var(--muted);
  font-size: .7rem;
}

.radio-row input {
  accent-color: var(--forest);
}

.catalog-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .72rem;
}

.catalog-toolbar strong {
  color: var(--forest);
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-toolbar select {
  min-height: 40px;
  padding: 7px 30px 7px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .7rem;
}

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

.mobile-filter {
  display: none;
}

.product-detail-section {
  padding: 40px 0 80px;
  background: var(--paper);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 52px;
  align-items: start;
}

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

.product-gallery__main {
  position: relative;
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  background: #f0eadf;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.product-gallery__main > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__brand {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: var(--forest);
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.product-gallery__brand small {
  color: var(--muted);
  font-weight: 500;
}

.product-gallery__soldout {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(16, 27, 23, .64);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-gallery__thumbs button {
  aspect-ratio: 1.25 / 1;
  padding: 0;
  overflow: hidden;
  background: #eee7da;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(13, 82, 57, .12);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-buybox {
  position: relative;
  padding: 4px 0;
}

.product-buybox.is-sticky {
  position: sticky;
  top: var(--product-sidebar-top, 108px);
}

.product-buybox__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-buybox__topline button {
  padding: 6px 9px;
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: .62rem;
  letter-spacing: 0;
  text-transform: none;
}

.product-buybox__actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.wishlist-button--detail button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wishlist-button--detail svg {
  width: 14px;
  height: 14px;
}

.wishlist-button--detail.is-active button {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.product-buybox__brand {
  margin: 14px 0 2px;
  color: var(--forest);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-buybox__brand span {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
}

.product-buybox h1 {
  margin: 8px 0 14px;
  color: var(--forest-deep);
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.product-buybox__excerpt {
  color: var(--muted);
  font-size: .88rem;
}

.product-buybox__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 4px;
}

.product-buybox__price strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.85rem;
}

.product-buybox__price span {
  color: var(--muted);
  font-size: .74rem;
}

.buybox-notes {
  display: grid;
  gap: 0;
  margin: 20px 0;
  padding: 4px 16px;
  background: #f5f1e8;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.buybox-notes p {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 12px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #e5ddcf;
  font-size: .68rem;
}

.buybox-notes p:last-child {
  border-bottom: 0;
}

.buybox-notes span {
  color: var(--muted);
}

.buybox-notes strong {
  color: #385047;
  font-weight: 600;
}

.buybox-form {
  display: grid;
  gap: 13px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  border: 1px solid #d8cebc;
  border-radius: 10px;
}

.quantity-control button {
  background: #f4f0e8;
  border: 0;
  font-size: 1.05rem;
}

.quantity-control input {
  min-height: 46px;
  padding: 0;
  border: 0;
  border-inline: 1px solid #ded4c2;
  border-radius: 0;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button { display: none; }

.estimated-total {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 15px;
  background: var(--forest-soft);
  border-radius: 10px;
}

.estimated-total span {
  color: var(--muted);
  font-size: .68rem;
}

.estimated-total strong {
  color: var(--forest);
  font-family: var(--font-display);
}

.estimated-total small {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #71827a;
  font-size: .58rem;
}

.buybox-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: .57rem;
  text-align: center;
}

.soldout-action {
  padding: 20px;
  background: #f7efec;
  border: 1px solid #ead3cf;
  border-radius: 12px;
}

.soldout-action strong {
  color: var(--danger);
}

.soldout-action p {
  color: var(--muted);
  font-size: .72rem;
}

.product-information {
  background: #f6f2e9;
}

.product-information__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
}

.product-information h2 {
  color: var(--forest-deep);
  font-size: 1.8rem;
}

.rich-copy {
  color: var(--muted);
  font-size: .84rem;
}

.product-specs dl {
  margin: 0;
}

.product-specs dl div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
}

.product-specs dt {
  color: var(--muted);
}

.product-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.product-specs > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .68rem;
}

.compact-hero {
  padding-block: 55px 40px;
}

.compact-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
}

.commerce-section {
  background: #f7f4ed;
}

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

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 210px;
  gap: 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-item > a {
  overflow: hidden;
  border-radius: 11px;
}

.cart-item > a img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

.cart-item__info > p {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cart-item__info h2 {
  margin-bottom: 3px;
  color: var(--forest-deep);
  font-size: 1.2rem;
}

.cart-item__info small,
.cart-item__info span,
.cart-item__info em {
  display: block;
}

.cart-item__info small,
.cart-item__info em {
  color: var(--muted);
  font-size: .65rem;
  font-style: normal;
}

.cart-item__info span {
  margin-top: 13px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 700;
}

.cart-item__actions {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 10px;
}

.cart-item__actions form:first-child {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.cart-item__actions label {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 600;
}

.cart-stepper {
  display: grid;
  min-height: 42px;
  grid-template-columns: 42px 68px 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.cart-stepper input {
  width: 68px;
  min-height: 40px;
  padding: 5px;
  background: #fff;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  appearance: textfield;
}

.cart-stepper input::-webkit-inner-spin-button,
.cart-stepper input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.cart-stepper button {
  display: grid;
  width: 42px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--forest);
  background: #f7f4ed;
  border: 0;
  font-size: 1rem;
  font-weight: 700;
}

.cart-stepper button:hover {
  background: var(--forest-soft);
}

.cart-stepper button:disabled {
  color: #a9b0ac;
  background: #f3f1ec;
  cursor: not-allowed;
}

.cart-item__sync {
  min-height: 14px;
  margin: 0;
  color: #7b8b83;
  font-size: .54rem;
}

.cart-item__actions form.is-saving .cart-item__sync {
  color: var(--gold);
}

.cart-item__actions form.has-error .cart-item__sync {
  max-width: 190px;
  color: var(--danger);
  text-align: right;
}

.cart-item__actions > strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1rem;
}

.cart-remove {
  padding: 0;
  color: var(--danger);
  background: transparent;
  border: 0;
  font-size: .62rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-summary {
  position: sticky;
  top: 110px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.order-summary h2 {
  color: var(--forest-deep);
  font-size: 1.45rem;
}

.order-summary dl {
  margin: 20px 0;
}

.order-summary dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .7rem;
}

.order-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.order-summary .order-summary__total {
  padding-top: 15px;
  color: var(--ink);
  border-bottom: 0;
  font-weight: 700;
}

.order-summary__total dd {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.estimate-notice {
  margin-bottom: 16px;
  padding: 13px;
  background: #fff3dc;
  border: 1px solid #eed9ae;
  border-radius: 9px;
}

.estimate-notice strong {
  color: #7c581f;
  font-size: .68rem;
}

.estimate-notice p {
  margin: 3px 0 0;
  color: #8c744c;
  font-size: .61rem;
}

.order-summary .button + .button {
  margin-top: 9px;
}

.checkout-form {
  padding: 34px;
}

.form-section-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 2px 0 22px;
}

.form-grid + .form-section-head {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.form-section-head > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: .6rem;
}

.form-section-head h2 {
  margin-bottom: 2px;
  color: var(--forest-deep);
  font-size: 1.3rem;
}

.form-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: .66rem;
}

.fulfillment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.fulfillment-options label {
  position: relative;
}

.fulfillment-options input {
  position: absolute;
  opacity: 0;
}

.fulfillment-options label > span {
  display: grid;
  min-height: 84px;
  align-content: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.fulfillment-options input:checked + span {
  background: var(--forest-soft);
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(13, 82, 57, .08);
}

.fulfillment-options strong,
.fulfillment-options small {
  display: block;
}

.fulfillment-options strong {
  color: var(--forest);
  font-size: .74rem;
}

.fulfillment-options small {
  color: var(--muted);
  font-size: .62rem;
}

.checkout-mini-items {
  display: grid;
  gap: 11px;
  margin-top: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checkout-mini-items > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.checkout-mini-items strong,
.checkout-mini-items small {
  display: block;
}

.checkout-mini-items strong {
  color: var(--ink);
  font-size: .69rem;
}

.checkout-mini-items small {
  color: var(--muted);
  font-size: .58rem;
}

.checkout-mini-items b {
  color: var(--forest);
  font-size: .67rem;
  white-space: nowrap;
}

.checkout-summary__safe {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .57rem;
  text-align: center;
}

.invoice-page {
  min-height: 100vh;
  padding: 56px 0 90px;
  background: #ede9e0;
}

.invoice-shell {
  max-width: 970px;
}

.invoice-statusbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 15px 18px;
  background: #fff4dc;
  border: 1px solid #e8d1a1;
  border-radius: 12px;
}

.invoice-statusbar > span {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background: #d79c34;
  border: 3px solid #f7e4bd;
  border-radius: 50%;
  box-sizing: content-box;
}

.invoice-statusbar strong,
.invoice-statusbar p {
  display: block;
  margin: 0;
}

.invoice-statusbar strong {
  color: #77531b;
  font-size: .69rem;
  letter-spacing: .06em;
}

.invoice-statusbar p {
  color: #92774b;
  font-size: .62rem;
}

.invoice-statusbar.status-paid {
  background: #e8f3eb;
  border-color: #bcd8c4;
}

.invoice-statusbar.status-paid > span {
  background: var(--success);
  border-color: #d2e8d7;
}

.invoice-statusbar.status-paid strong,
.invoice-statusbar.status-paid p {
  color: #356349;
}

.invoice-paper {
  padding: 58px;
  background: #fff;
  box-shadow: 0 20px 65px rgba(36, 47, 42, .12);
}

.invoice-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--forest);
}

.invoice-head img {
  width: 150px;
  height: auto;
}

.invoice-head > div:first-child p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .63rem;
}

.invoice-head > div:last-child {
  text-align: right;
}

.invoice-head h1 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.invoice-head > div:last-child span {
  color: var(--muted);
  font-size: .62rem;
}

.invoice-parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  padding: 35px 0;
}

.invoice-parties small,
.invoice-parties strong,
.invoice-parties span {
  display: block;
}

.invoice-parties > div > small {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .09em;
}

.invoice-parties strong {
  color: var(--ink);
  font-size: .88rem;
}

.invoice-parties span {
  color: var(--muted);
  font-size: .67rem;
}

.invoice-parties dl {
  margin: 0;
}

.invoice-parties dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2px 0;
  font-size: .65rem;
}

.invoice-parties dt {
  color: var(--muted);
}

.invoice-parties dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.invoice-table-wrap {
  overflow-x: auto;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .66rem;
}

.invoice-table th {
  padding: 11px 10px;
  color: #fff;
  background: var(--forest);
  font-weight: 600;
  text-align: left;
}

.invoice-table th:last-child,
.invoice-table td:last-child {
  text-align: right;
}

.invoice-table td {
  padding: 15px 10px;
  color: #53645c;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.invoice-table td strong,
.invoice-table td small,
.invoice-table td em {
  display: block;
}

.invoice-table td strong {
  color: var(--ink);
  font-size: .7rem;
}

.invoice-table td small,
.invoice-table td em {
  color: var(--muted);
  font-size: .57rem;
  font-style: normal;
}

.invoice-total {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  padding: 28px 0;
}

.invoice-total > div > p {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
}

.invoice-total > div > span {
  color: var(--muted);
  font-size: .62rem;
}

.invoice-total dl {
  margin: 0;
}

.invoice-total dl div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--muted);
  font-size: .65rem;
}

.invoice-total dd {
  margin: 0;
  color: var(--ink);
}

.invoice-total dl div:last-child {
  margin-top: 7px;
  padding-top: 10px;
  color: var(--forest);
  border-top: 1px solid var(--forest);
  font-weight: 700;
}

.invoice-total dl div:last-child dd {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: .95rem;
}

.invoice-note {
  padding: 16px;
  background: #f6f2e9;
  border-left: 3px solid var(--gold);
}

.invoice-note strong {
  color: var(--forest-deep);
  font-size: .67rem;
}

.invoice-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .59rem;
}

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

.invoice-security {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .6rem;
  text-align: center;
}

.program-hero,
.program-detail-hero {
  background: radial-gradient(circle at 82% 30%, rgba(198, 151, 67, .16), transparent 22%), linear-gradient(135deg, #fdfaf4, #f2ebdf);
}

.program-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.program-list-card {
  position: relative;
  min-height: 330px;
  padding: 38px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.program-list-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.program-list-card.is-featured {
  color: #fff;
  background: linear-gradient(140deg, var(--forest), var(--forest-deep));
  border-color: var(--forest);
}

.program-list-card__number {
  position: absolute;
  right: 28px;
  bottom: 5px;
  color: rgba(13, 82, 57, .07);
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
}

.program-list-card.is-featured .program-list-card__number {
  color: rgba(255, 255, 255, .07);
}

.program-list-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--forest);
  background: var(--forest-soft);
  border-radius: 17px;
  font-size: 1.4rem;
}

.program-list-card.is-featured .program-list-card__icon {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.program-list-card h2 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: 1.8rem;
}

.program-list-card.is-featured h2 {
  color: #fff;
}

.program-list-card > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
  font-size: .78rem;
}

.program-list-card.is-featured > p:not(.eyebrow) {
  color: #c9d9d2;
}

.program-list-card > strong {
  position: absolute;
  bottom: 34px;
  left: 38px;
  z-index: 1;
  color: var(--forest);
  font-size: .72rem;
}

.program-list-card.is-featured > strong {
  color: #e7cb96;
}

.program-principles {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.program-principles > div:first-child h2 {
  color: var(--forest-deep);
  font-size: 2.5rem;
}

.program-principles > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: .82rem;
}

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

.principle-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.principle-grid article > span {
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
}

.principle-grid h3 {
  margin: 18px 0 8px;
  color: var(--forest-deep);
  font-size: 1rem;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
}

.program-detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 70px;
  align-items: center;
}

.program-detail-hero__grid > div:first-child > p:not(.eyebrow) {
  max-width: 690px;
}

.program-detail-hero__grid .button {
  margin-top: 14px;
}

.program-detail-hero__mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50% 50% 46% 54% / 52% 42% 58% 48%;
  box-shadow: 0 25px 60px rgba(13, 82, 57, .2);
}

.program-detail-hero__mark span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 5rem;
}

.program-detail-copy {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
}

.program-detail-copy h2 {
  color: var(--forest-deep);
}

.program-detail-copy ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-detail-copy li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.program-detail-copy li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: .6rem;
}

.program-detail-copy li p,
.program-detail-copy li strong,
.program-detail-copy li small {
  display: block;
  margin: 0;
}

.program-detail-copy li strong {
  font-size: .73rem;
}

.program-detail-copy li small {
  color: var(--muted);
  font-size: .64rem;
}

.program-inquiry-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 55px;
  align-items: start;
}

.program-inquiry-grid > div h2 {
  color: var(--forest-deep);
  font-size: 2.5rem;
}

.program-inquiry-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: .8rem;
}

.program-contact-note {
  margin-top: 24px;
  padding: 16px;
  background: var(--forest-soft);
  border-radius: 10px;
}

.program-contact-note strong,
.program-contact-note p {
  display: block;
  margin: 0;
  font-size: .7rem;
}

.program-contact-note p {
  color: var(--forest);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.about-story__image {
  aspect-ratio: .95 / 1;
  overflow: hidden;
  border-radius: 46% 46% 24px 24px;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story article h2 {
  color: var(--forest-deep);
  font-size: 2.7rem;
}

.about-story article > p:not(.eyebrow) {
  color: var(--muted);
  font-size: .84rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.about-values div {
  padding: 14px;
  background: var(--forest-soft);
  border-radius: 10px;
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  color: var(--forest);
  font-size: .72rem;
}

.about-values span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .58rem;
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.b2b-grid h2 {
  color: var(--forest-deep);
}

.b2b-grid li,
.b2b-grid p {
  color: var(--muted);
  font-size: .78rem;
}

.article-section {
  background: #f7f4ed;
}

.article-grid {
  display: grid;
  gap: 28px;
}

.article-card {
  max-width: 900px;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-card:nth-child(even) {
  margin-left: auto;
}

.article-card > span {
  color: var(--gold);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 12px 0;
  color: var(--forest-deep);
  font-size: 2rem;
}

.article-card h3 {
  margin-top: 24px;
  color: var(--forest);
  font-size: 1rem;
}

.article-card p,
.article-card li {
  color: var(--muted);
  font-size: .8rem;
}

.journal-hero {
  padding: 42px 0 72px;
  background: radial-gradient(circle at 88% 14%, rgba(198, 151, 67, .17), transparent 25%), linear-gradient(140deg, #fffdf8, #f4eee3);
  border-bottom: 1px solid var(--line);
}

.journal-hero__title {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 60px;
  margin: 36px 0 48px;
}

.journal-hero__title h1 {
  max-width: 760px;
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.02;
}

.journal-hero__title > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: .82rem;
}

.journal-featured {
  display: grid;
  min-height: 450px;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.journal-featured__image {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.journal-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.journal-featured:hover .journal-featured__image img {
  transform: scale(1.025);
}

.journal-featured__image > span {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(7, 58, 42, .88);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.journal-featured__copy {
  display: flex;
  padding: 44px;
  flex-direction: column;
  justify-content: center;
}

.journal-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journal-featured__copy h2 {
  margin-bottom: 14px;
  color: var(--forest-deep);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.journal-featured__copy > p:not(.journal-kicker) {
  color: var(--muted);
  font-size: .78rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 12px 0 24px;
  color: #78847e;
  font-size: .62rem;
}

.article-meta > * + * {
  position: relative;
}

.article-meta > * + *::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.journal-featured__copy .button {
  align-self: flex-start;
  margin-top: 6px;
}

.journal-section {
  background: #f8f5ee;
}

.journal-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.journal-toolbar h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: 2.35rem;
}

.journal-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.journal-topics span {
  padding: 7px 11px;
  color: #5d7066;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .6rem;
}

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

.journal-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.journal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.journal-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.journal-card:hover .journal-card__image img {
  transform: scale(1.04);
}

.journal-card__image span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(7, 58, 42, .88);
  border-radius: 999px;
  font-size: .52rem;
  font-weight: 700;
}

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

.journal-card > div > p:first-child {
  margin-bottom: 9px;
  color: #89938e;
  font-size: .56rem;
}

.journal-card h3 {
  margin-bottom: 10px;
  color: var(--forest-deep);
  font-size: 1.28rem;
}

.journal-card > div > p:not(:first-child) {
  display: -webkit-box;
  min-height: 54px;
  margin-bottom: 17px;
  overflow: hidden;
  color: var(--muted);
  font-size: .68rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.journal-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: .65rem;
  font-weight: 700;
}

.journal-card__link span {
  transition: transform .2s ease;
}

.journal-card__link:hover span {
  transform: translateX(3px);
}

.journal-cta {
  display: grid;
  min-height: 270px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  margin-top: 70px;
  padding: 48px;
  color: #fff;
  background: radial-gradient(circle at 90% 20%, rgba(198, 151, 67, .26), transparent 30%), var(--forest-deep);
  border-radius: 24px;
}

.journal-cta h2 {
  max-width: 660px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 2.35rem;
}

.journal-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #c9d8d2;
  font-size: .76rem;
}

.journal-cta > div:last-child {
  display: flex;
  gap: 10px;
}

.article-detail__hero {
  padding: 38px 0 70px;
  background: linear-gradient(140deg, #fffdf8, #f3ede1);
  border-bottom: 1px solid var(--line);
}

.article-detail__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 58px;
  margin-top: 34px;
}

.article-detail__heading h1 {
  margin-bottom: 18px;
  color: var(--forest-deep);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.04;
}

.article-detail__heading > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: .84rem;
}

.article-detail__cover {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px 26px 110px 26px;
  box-shadow: var(--shadow-md);
}

.article-detail__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail__section {
  background: #fffdf9;
}

.article-detail__layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 680px) minmax(220px, 1fr);
  justify-content: space-between;
  gap: 46px;
  align-items: start;
}

.article-toc,
.article-side-cta {
  position: sticky;
  top: 110px;
}

.article-toc > p,
.article-share > span {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-deep);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-toc nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.article-toc nav a {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .62rem;
  line-height: 1.45;
}

.article-toc nav a:hover {
  color: var(--forest);
}

.article-share {
  display: grid;
  gap: 6px;
  margin-top: 26px;
}

.article-share button {
  padding: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
  font-size: .62rem;
  font-weight: 700;
  text-align: left;
}

.article-prose {
  color: #3e554b;
}

.article-prose__lead {
  margin-bottom: 32px;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.6;
}

.article-prose blockquote {
  margin: 0 0 52px;
  padding: 23px 26px;
  background: #edf3ee;
  border: 1px solid #d8e5da;
  border-left: 4px solid var(--forest);
  border-radius: 0 14px 14px 0;
}

.article-prose blockquote span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.article-prose blockquote p {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.article-prose > section {
  scroll-margin-top: 120px;
  margin-bottom: 54px;
}

.article-section-number {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.article-prose h2 {
  margin-bottom: 18px;
  color: var(--forest-deep);
  font-size: 2rem;
}

.article-prose > section p,
.article-prose li {
  font-size: .82rem;
  line-height: 1.85;
}

.article-prose ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.article-prose li {
  position: relative;
  padding: 13px 15px 13px 38px;
  background: #faf8f2;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.article-prose li::before {
  position: absolute;
  top: 17px;
  left: 15px;
  display: grid;
  width: 14px;
  height: 14px;
  content: "✓";
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: .48rem;
}

.article-author {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-author > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-family: var(--font-display);
}

.article-author small,
.article-author strong {
  display: block;
}

.article-author small {
  color: var(--muted);
  font-size: .57rem;
}

.article-author strong {
  color: var(--forest-deep);
  font-size: .75rem;
}

.article-author p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .62rem;
}

.article-side-cta {
  padding: 24px;
  background: #f6f1e7;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-side-cta h3 {
  margin-bottom: 9px;
  color: var(--forest-deep);
  font-size: 1.25rem;
}

.article-side-cta > p:not(.eyebrow) {
  color: var(--muted);
  font-size: .66rem;
}

.article-side-cta .button {
  min-height: 43px;
  padding: 9px;
  font-size: .62rem;
}

.related-journal .journal-grid {
  margin-top: 28px;
}

.auth-section {
  padding: 52px 0 80px;
  background: radial-gradient(circle at 82% 12%, rgba(198, 151, 67, .12), transparent 25%), #f6f2e9;
}

.auth-shell {
  display: grid;
  max-width: 1040px;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.auth-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.auth-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 25%, rgba(3, 38, 26, .9));
}

.auth-visual > div {
  position: absolute;
  right: 34px;
  bottom: 38px;
  left: 34px;
  z-index: 1;
  color: #fff;
}

.auth-visual h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 2.05rem;
}

.auth-visual p:not(.eyebrow),
.auth-visual li {
  color: #ccdcd5;
  font-size: .76rem;
}

.auth-visual ul {
  padding-left: 18px;
}

.auth-card {
  display: flex;
  padding: 52px 60px;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.auth-card h1 {
  margin-bottom: 8px;
  color: var(--forest-deep);
  font-size: 2.5rem;
}

.auth-lead {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: .78rem;
}

.auth-card form {
  display: grid;
  gap: 16px;
}

.auth-back {
  align-self: flex-start;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: .68rem;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .68rem;
}

.auth-options a,
.auth-switch a {
  color: var(--forest);
  font-weight: 700;
}

.auth-switch {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.auth-guest {
  position: relative;
  margin-top: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.auth-guest > span {
  position: absolute;
  top: -10px;
  left: 50%;
  padding: 0 10px;
  color: var(--muted);
  background: #fff;
  font-size: .62rem;
  transform: translateX(-50%);
}

.auth-guest p {
  color: var(--muted);
  font-size: .66rem;
}

.auth-terms {
  margin: 18px 0;
}

.auth-simple,
.verification-section {
  display: grid;
  min-height: 720px;
  padding: 65px 16px;
  place-items: center;
  background: radial-gradient(circle at 20% 15%, rgba(198, 151, 67, .12), transparent 22%), #f4f0e7;
}

.auth-simple .auth-card {
  width: min(520px, 100%);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.auth-simple__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--forest);
  background: var(--forest-soft);
  border-radius: 16px;
  font-size: 1.4rem;
}

.verification-card {
  width: min(620px, 100%);
  padding: 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.verification-card__icon {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 26px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 1.8rem;
}

.verification-card__icon i {
  position: absolute;
  right: 1px;
  bottom: 4px;
  width: 23px;
  height: 23px;
  background: var(--gold);
  border: 4px solid #fff;
  border-radius: 50%;
}

.verification-card h1 {
  margin-bottom: 10px;
  color: var(--forest-deep);
  font-size: 2.5rem;
}

.verification-card > p:not(.eyebrow),
.verification-card > strong {
  display: block;
  margin-bottom: 4px;
}

.verification-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: .78rem;
}

.verification-card > strong {
  color: var(--forest);
  font-size: .9rem;
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
  text-align: left;
}

.verification-steps > div {
  padding: 14px;
  background: #f6f3ec;
  border-radius: 10px;
}

.verification-steps > div > span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 9px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: .55rem;
}

.verification-steps p,
.verification-steps b,
.verification-steps small {
  display: block;
  margin: 0;
}

.verification-steps b {
  font-size: .68rem;
}

.verification-steps small {
  color: var(--muted);
  font-size: .57rem;
}

.auth-logout-link {
  padding: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
  font-size: .68rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.verification-help {
  margin: 20px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .62rem !important;
}

.account-header {
  padding: 55px 0 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
}

.account-header__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.account-header__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.account-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest-deep);
  background: linear-gradient(145deg, #f7e5be, var(--gold));
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(3, 31, 22, .18);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.account-header__identity > div {
  min-width: 0;
}

.account-header__identity .eyebrow {
  margin-bottom: 5px;
}

.account-header__identity small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: #a9c3b8;
  font-size: .61rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-header h1 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 2.4rem;
}

.account-header p:not(.eyebrow) {
  margin: 0;
  color: #c5d8d0;
  font-size: .76rem;
}

.account-header nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.account-header nav a,
.account-header nav button {
  padding: 7px 2px;
  color: #c7d7d0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  font-size: .65rem;
  font-weight: 600;
}

.account-header nav .is-active {
  color: #fff;
  border-bottom-color: var(--gold);
}

.account-section {
  background: #f5f2eb;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.account-stat {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 0 rgba(13, 82, 57, .02);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.account-stat:hover {
  border-color: #d1bea0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.account-stat > span {
  color: var(--muted);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.account-stat strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.account-stat small {
  color: #75857d;
  font-size: .58rem;
}

.account-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  gap: 22px;
}

.account-card-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.account-card-heading h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: 1.55rem;
}

.account-card-heading .eyebrow {
  margin-bottom: 5px;
}

.account-card-heading > a {
  color: var(--forest);
  font-size: .63rem;
  font-weight: 700;
}

.account-profile-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.account-profile-card dl > div {
  min-width: 0;
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid var(--line);
}

.account-profile-card dt,
.account-profile-card dd {
  margin: 0;
}

.account-profile-card dt {
  color: var(--muted);
  font-size: .57rem;
}

.account-profile-card dd {
  overflow-wrap: anywhere;
  color: var(--forest-deep);
  font-size: .72rem;
  font-weight: 700;
}

.account-profile-card dd span {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  color: var(--success);
  background: #eaf4ec;
  border-radius: 999px;
  font-size: .48rem;
  vertical-align: middle;
}

.account-quick-actions {
  display: grid;
  align-content: start;
}

.account-quick-actions h2 {
  color: var(--forest-deep);
  font-size: 1.4rem;
}

.account-quick-actions > a {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #3e574d;
  border-bottom: 1px solid var(--line);
  font-size: .67rem;
  font-weight: 600;
}

.account-quick-actions > a em {
  color: var(--forest);
  font-style: normal;
}

.account-latest {
  margin-top: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.account-latest__row {
  display: grid;
  grid-template-columns: 1fr .8fr .8fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.account-latest__row span,
.account-latest__row small,
.account-latest__row strong {
  display: block;
  min-width: 0;
}

.account-latest__row small {
  color: var(--muted);
  font-size: .53rem;
}

.account-latest__row strong {
  overflow: hidden;
  color: var(--forest-deep);
  font-size: .65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-latest__row em {
  color: var(--forest);
  font-style: normal;
}

.account-latest__empty {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.account-latest__empty p {
  max-width: 700px;
  color: var(--muted);
  font-size: .7rem;
}

.account-logout {
  margin-top: 22px;
  text-align: right;
}

.wishlist-empty {
  max-width: 620px;
  margin-inline: auto;
}

.wishlist-empty__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--forest);
  background: var(--forest-soft);
  border-radius: 50%;
}

.wishlist-empty__icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.account-orders {
  display: grid;
  gap: 16px;
}

.account-order {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.account-order > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.account-order > header span:not(.status-pill) {
  color: var(--muted);
  font-size: .58rem;
}

.account-order h2 {
  margin: 2px 0 0;
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: .82rem;
}

.account-order__body {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 28px;
  padding: 20px 22px;
}

.account-order__items {
  display: grid;
  gap: 8px;
}

.account-order__items p,
.account-order__items strong,
.account-order__items span {
  display: block;
  margin: 0;
}

.account-order__items strong {
  font-size: .7rem;
}

.account-order__items span,
.account-order__items small {
  color: var(--muted);
  font-size: .59rem;
}

.account-order__total {
  align-self: center;
  text-align: right;
}

.account-order__total span,
.account-order__total strong {
  display: block;
}

.account-order__total span {
  color: var(--muted);
  font-size: .6rem;
}

.account-order__total strong {
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.account-order > footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px;
  background: #f8f5ef;
  border-radius: 0 0 var(--radius) var(--radius);
}

.account-order > footer a {
  display: grid;
  min-width: 220px;
  grid-template-columns: 1fr auto;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-order > footer span,
.account-order > footer strong,
.account-order > footer em {
  display: block;
}

.account-order > footer span {
  color: var(--muted);
  font-size: .54rem;
}

.account-order > footer strong {
  font-size: .64rem;
}

.account-order > footer em {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--forest);
  font-size: .58rem;
  font-style: normal;
}

.profile-layout {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}

.profile-layout h2 {
  color: var(--forest-deep);
}

.profile-layout aside p {
  color: var(--muted);
  font-size: .7rem;
}

.profile-layout aside .button + form .button {
  margin-top: 8px;
}

.profile-password-form {
  margin-top: 20px;
}

.error-page {
  display: grid;
  min-height: 720px;
  place-items: center;
  background: radial-gradient(circle at 75% 20%, rgba(198,151,67,.13), transparent 24%), #f6f2e9;
}

.error-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.error-code {
  margin-bottom: -8px;
  color: rgba(13,82,57,.12);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: .8;
}

.error-page__copy h1 {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--forest-deep);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.error-page__copy > p:not(.eyebrow, .error-code) {
  max-width: 540px;
  color: var(--muted);
  font-size: .85rem;
}

.error-page__copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.error-page__art {
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  background: var(--forest-soft);
  border: 1px solid #d0dfd5;
  border-radius: 50% 50% 38% 62% / 45% 42% 58% 55%;
}

.error-page__art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-page__art--dark {
  background: linear-gradient(145deg, var(--forest), var(--forest-deep));
}

.error-page__art--dark > img {
  width: 42%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 720px) {
  .error-page { min-height: 650px; padding: 55px 0; }
  .error-page__grid { grid-template-columns: 1fr; }
  .error-page__art { display: none; }
}

@media (max-width: 800px) {
  .auth-shell { grid-template-columns: .75fr 1.25fr; }
  .auth-card { padding: 42px 32px; }
}

@media (max-width: 720px) {
  .auth-section { padding: 0; }
  .auth-shell { width: 100%; grid-template-columns: 1fr; border: 0; border-radius: 0; box-shadow: none; }
  .auth-visual { min-height: 230px; }
  .auth-visual > div { right: 20px; bottom: 18px; left: 20px; }
  .auth-visual h2 { font-size: 1.4rem; }
  .auth-visual p:not(.eyebrow), .auth-visual li { display: none; }
  .auth-card { padding: 34px 20px 50px; }
  .auth-back { margin-bottom: 28px; }
  .auth-simple, .verification-section { min-height: 620px; padding: 30px 20px; }
  .auth-simple .auth-card, .verification-card { padding: 30px 22px; }
  .verification-card h1 { font-size: 2rem; }
  .verification-steps { grid-template-columns: 1fr; text-align: left; }
  .verification-steps > div { display: grid; grid-template-columns: 30px 1fr; gap: 8px; }
  .verification-steps > div > span { margin: 0; }
  .account-header { padding: 30px 0 0; }
  .account-header__inner { display: block; }
  .account-header__identity { align-items: flex-start; }
  .account-avatar { width: 48px; height: 48px; border-radius: 14px; }
  .account-header h1 { font-size: 1.75rem; }
  .account-header p:not(.eyebrow) { max-width: 290px; font-size: .66rem; }
  .account-header nav { width: 100%; margin: 22px 0 0; padding: 0; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .account-header nav::-webkit-scrollbar { display: none; }
  .account-header nav a { flex: 0 0 auto; padding: 11px 2px 13px; }
  .account-section { padding-top: 34px; }
  .account-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .account-stat { min-height: 126px; padding: 15px; }
  .account-stat strong { font-size: 1.65rem; }
  .account-overview__grid { grid-template-columns: 1fr; }
  .account-profile-card dl { grid-template-columns: 1fr; }
  .account-latest { padding: 19px; }
  .account-latest__row { grid-template-columns: 1fr auto; gap: 8px 14px; }
  .account-latest__row > span:nth-child(2), .account-latest__row > span:nth-child(3) { grid-column: 1; }
  .account-latest__row > em { grid-row: 1 / span 3; grid-column: 2; }
  .account-logout { display: grid; }
  .account-logout .button { width: 100%; }
  .account-order__body { grid-template-columns: 1fr; }
  .account-order__total { text-align: left; }
  .account-order > footer { display: grid; }
  .account-order > footer a { min-width: 0; }
  .profile-layout { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .program-principles { grid-template-columns: 1fr; }
  .program-detail-hero__grid { grid-template-columns: 1fr 220px; }
  .program-inquiry-grid { grid-template-columns: .8fr 1.2fr; gap: 30px; }
}

@media (max-width: 720px) {
  .program-list-grid { grid-template-columns: 1fr; }
  .program-list-card { min-height: 310px; padding: 28px; }
  .program-list-card > strong { left: 28px; }
  .principle-grid { grid-template-columns: 1fr; }
  .program-detail-hero__grid { grid-template-columns: 1fr; }
  .program-detail-hero__mark { display: none; }
  .program-detail-copy, .program-inquiry-grid, .about-story, .b2b-grid { grid-template-columns: 1fr; }
  .about-story__image { aspect-ratio: 1 / .82; }
  .about-story article h2, .program-inquiry-grid > div h2 { font-size: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .article-card { padding: 26px 20px; }
  .article-card h2 { font-size: 1.5rem; }
}

@media (max-width: 960px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr 320px; }
  .cart-item { grid-template-columns: 120px 1fr; }
  .cart-item__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
}

@media (max-width: 720px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 92px 1fr; gap: 13px; padding: 12px; }
  .cart-item > a img { min-height: 90px; }
  .cart-item__actions { justify-content: space-between; }
  .cart-item__actions form:first-child { display: grid; grid-template-columns: auto; justify-items: start; }
  .cart-item__sync { text-align: left; }
  .order-summary { position: static; }
  .checkout-form { padding: 20px; }
  .checkout-summary { grid-row: 1; }
  .fulfillment-options { grid-template-columns: 1fr; }
  .invoice-page { padding: 22px 0 45px; }
  .invoice-paper { margin-inline: 0; padding: 28px 18px; border-radius: 18px; }
  .invoice-head { display: block; }
  .invoice-head > div:last-child { margin-top: 24px; text-align: left; }
  .invoice-parties { grid-template-columns: 1fr; gap: 24px; }
  .invoice-table { min-width: 610px; }
  .invoice-total { grid-template-columns: 1fr; gap: 24px; }
  .invoice-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .invoice-actions .button:first-child { grid-column: 1 / -1; }
}

@media print {
  .announcement, .site-header, .site-footer, .mobile-bottom-nav, .invoice-statusbar, .invoice-actions, .invoice-security { display: none !important; }
  body { padding: 0; background: #fff; }
  .invoice-page { padding: 0; background: #fff; }
  .invoice-paper { padding: 20px; box-shadow: none; }
}

@media (max-width: 960px) {
  .catalog-layout { grid-template-columns: 200px minmax(0, 1fr); gap: 22px; }
  .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .buybox-assurance { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 720px) {
  .catalog-layout { display: block; }
  .catalog-sidebar { display: none; }
  .catalog-toolbar { position: sticky; top: 70px; z-index: 8; margin: 0 0 18px; padding: 8px 10px; background: rgba(248, 245, 238, .95); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
  .catalog-toolbar > div { display: none; }
  .catalog-toolbar form { margin-left: auto; }
  .catalog-toolbar label { font-size: 0; }
  .mobile-filter { position: relative; display: block; }
  .mobile-filter summary { min-height: 40px; padding: 9px 13px; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: .7rem; }
  .mobile-filter summary::-webkit-details-marker { display: none; }
  .mobile-filter div { position: absolute; top: 45px; left: 0; z-index: 10; display: grid; min-width: 180px; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-md); }
  .mobile-filter a { padding: 7px; font-size: .68rem; }
  .product-detail-section { padding: 24px 0 52px; }
  .product-detail-section .breadcrumbs { white-space: nowrap; overflow-x: auto; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 26px; }
  .product-gallery__main { margin-inline: 0; border-inline: 1px solid var(--line); border-radius: 24px; }
  .product-buybox { position: static; }
  .product-buybox h1 { font-size: 2.65rem; }
  .product-buybox__price strong { font-size: 1.55rem; }
  .buybox-form .button--primary { position: sticky; bottom: calc(68px + env(safe-area-inset-bottom)); z-index: 7; box-shadow: 0 10px 35px rgba(13, 82, 57, .3); }
  .product-information__grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .home-hero__grid { min-height: 610px; grid-template-columns: 50% 50%; }
  .home-hero__copy { padding: 60px 28px 36px 12px; }
  .home-hero__copy h1 { font-size: 3.5rem; }
  .home-hero__visual { position: relative; top: auto; right: auto; bottom: auto; width: 100%; max-width: 100%; min-height: 610px; margin: 0; }
  .home-hero__trust { right: 16px; bottom: 24px; left: auto; display: grid; }
  .home-hero__trust span { min-width: 150px; padding-block: 6px; border-right: 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .farm-process { grid-template-columns: 40% 60%; }
  .farm-process__copy { padding: 48px 30px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 860px) {
  .home-hero { min-height: 0; }
  .home-hero__grid { width: 100%; min-height: 0; grid-template-columns: 1fr; }
  .home-hero__copy { width: var(--container); max-width: none; margin-inline: auto; padding: 54px 0 34px; }
  .home-hero__visual { min-height: clamp(360px, 58vw, 500px); margin-right: 0; border-radius: 0 0 0 28% / 0 0 0 18%; }
  .home-hero__trust { right: 20px; bottom: 16px; left: 20px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 8px 2px; }
  .home-hero__trust span { min-width: 0; padding: 3px 5px; flex-direction: column; gap: 3px; text-align: center; }
  .home-hero__trust b { width: 22px; height: 22px; }
}

@media (max-width: 720px) {
  .home-hero { min-height: 0; }
  .home-hero__grid { width: 100%; min-height: 0; grid-template-columns: 1fr; }
  .home-hero__copy { width: var(--container); max-width: none; margin-inline: auto; padding: 54px 0 34px; }
  .home-hero__copy h1 { font-size: clamp(2.85rem, 13vw, 4rem); }
  .home-hero__lead { font-size: .86rem; }
  .home-hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .home-hero__metrics { gap: 8px; margin-top: 28px; }
  .home-hero__metrics strong { font-size: .7rem; }
  .home-hero__visual { min-height: 390px; margin-right: 0; border-radius: 0 0 0 28% / 0 0 0 18%; }
  .home-hero__visual::before { display: none; }
  .home-hero__trust { right: 20px; bottom: 16px; left: 20px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 8px 2px; }
  .home-hero__trust span { min-width: 0; padding: 3px 5px; flex-direction: column; gap: 3px; text-align: center; }
  .home-hero__trust b { width: 22px; height: 22px; }
  .category-grid { gap: 12px; }
  .category-card { min-height: 250px; }
  .category-card > img { height: 152px; }
  .category-card > span { padding: 0 13px 14px; }
  .category-card strong { font-size: .92rem; }
  .category-card small { font-size: .57rem; }
  .stock-tabs { margin-top: 0; overflow-x: auto; }
  .stock-tabs a { flex: 0 0 auto; }
  .farm-process { display: block; }
  .farm-process__image { min-height: 310px; border-radius: 0 0 35% 0; }
  .farm-process__copy { padding: 48px 20px; }
  .process-steps { gap: 18px 12px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 270px; }
  .home-programs__leaf { display: none; }
  .home-info__grid { grid-template-columns: 1fr; gap: 34px; }
  .home-info__intro h2 { font-size: 2rem; }
  .faq-card { padding: 20px; }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 42px;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .72rem;
}

.pagination .active {
  color: #fff;
  background: var(--forest);
}

@media (max-width: 1180px) {
  :root { --container: min(1060px, calc(100% - 36px)); }
  .site-header__inner { grid-template-columns: 150px 1fr auto; gap: 14px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav > a, .desktop-nav > button { font-size: .69rem; }
  .search-trigger { width: 42px; padding: 0; justify-content: center; }
  .search-trigger span { display: none; }
  .header-contact { display: none; }
  .mega-menu__grid { grid-template-columns: 240px 1fr 220px; gap: 20px; }
}

@media (max-width: 960px) {
  :root { --container: min(880px, calc(100% - 32px)); }
  .site-header__inner { min-height: 68px; grid-template-columns: 1fr auto; }
  .brand img { height: 39px; }
  .desktop-nav { display: none; }
  .menu-trigger { display: block; }
  .mega-menu { display: none; }
  .mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 1200;
    display: flex;
    width: min(430px, 100%);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    min-width: 0;
    flex-direction: column;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    border-left: 1px solid rgba(231, 222, 205, .72);
    border-radius: 26px 0 0 26px;
    box-shadow: -25px 0 60px rgba(7, 58, 42, .18);
    visibility: hidden;
    opacity: 0;
    clip-path: inset(0 0 0 100% round 30px 0 0 30px);
    transform: none;
    contain: layout paint style;
    pointer-events: none;
    will-change: clip-path, opacity;
    transition: clip-path .46s cubic-bezier(.22, 1, .36, 1), opacity .18s ease .18s, visibility 0s linear .46s;
  }
  .mobile-drawer.is-open { opacity: 1; visibility: visible; clip-path: inset(0 0 0 0 round 0); transform: none; pointer-events: auto; transition: clip-path .46s cubic-bezier(.22, 1, .36, 1), opacity .16s ease, visibility 0s; }
  .mobile-drawer__head { display: flex; width: 100%; min-width: 0; min-height: 76px; align-items: center; justify-content: space-between; gap: 14px; padding: max(14px, env(safe-area-inset-top)) 20px 14px; border-bottom: 1px solid var(--line); }
  .mobile-drawer__brand { display: inline-flex; }
  .mobile-drawer__brand img { width: 132px; height: auto; }
  .mobile-drawer__close { display: grid; width: 40px; height: 40px; padding: 0; place-items: center; color: var(--forest); background: #f0ece3; border: 0; border-radius: 50%; transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .32s cubic-bezier(.22, 1, .36, 1); }
  .mobile-drawer__close:hover { color: #fff; background: var(--forest); box-shadow: 0 10px 26px rgba(13, 82, 57, .2); }
  .mobile-drawer__close:active { transform: scale(.92); }
  .mobile-drawer__close svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
  .mobile-drawer__scroll { width: 100%; min-width: 0; min-height: 0; flex: 1; padding: 12px 20px 22px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; touch-action: pan-y pinch-zoom; }
  .mobile-drawer__search { display: grid; width: 100%; min-width: 0; min-height: 52px; grid-template-columns: 22px minmax(0, 1fr) auto; align-items: center; gap: 10px; margin: 2px 0 10px; padding: 8px 12px; color: var(--forest); background: #f2f5ef; border: 1px solid #dce7df; border-radius: 12px; text-align: left; }
  .mobile-drawer__search svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
  .mobile-drawer__search span, .mobile-drawer__search small, .mobile-drawer__search strong { display: block; min-width: 0; }
  .mobile-drawer__search small { color: var(--muted); font-size: .56rem; font-weight: 500; }
  .mobile-drawer__search strong { overflow: hidden; color: var(--forest-deep); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-drawer__search em { color: var(--gold); font-size: .8rem; font-style: normal; }
  .mobile-drawer__nav { display: grid; width: 100%; min-width: 0; }
  .mobile-nav-link, .mobile-nav-group > summary { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid #eae3d7; font-family: var(--font-display); font-size: 1.04rem; font-weight: 700; }
  .mobile-nav-link > span, .mobile-nav-group > summary > span { min-width: 0; overflow-wrap: anywhere; }
  .mobile-nav-link em { color: #9aa49e; font-family: var(--font-body); font-size: .52rem; font-style: normal; letter-spacing: .12em; }
  .mobile-nav-link.is-active { color: var(--forest); }
  .mobile-nav-group > summary { list-style: none; }
  .mobile-nav-group > summary::-webkit-details-marker { display: none; }
  .mobile-nav-group > summary svg { width: 11px; fill: none; stroke: var(--forest); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; transition: transform .2s ease; }
  .mobile-nav-group[open] > summary svg { transform: rotate(180deg); }
  .mobile-nav-group__links { display: grid; padding: 8px 0 12px 15px; border-bottom: 1px solid #eae3d7; }
  .mobile-nav-group__links a { position: relative; min-width: 0; padding: 8px 12px; color: var(--muted); font-size: .73rem; overflow-wrap: anywhere; }
  .mobile-nav-group__links a::before { position: absolute; top: 16px; left: 0; width: 4px; height: 4px; content: ""; background: var(--gold); border-radius: 50%; }
  .mobile-drawer__account { display: grid; gap: 8px; margin-top: 22px; }
  .mobile-drawer__account > a, .mobile-drawer__account > button { display: grid; width: 100%; min-height: 64px; grid-template-columns: 38px minmax(0, 1fr) auto; align-items: center; gap: 11px; padding: 10px 12px; color: var(--forest); background: #f2f5ef; border: 1px solid #dce7df; border-radius: 12px; text-align: left; }
  .mobile-drawer__account svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
  .mobile-drawer__account span, .mobile-drawer__account small, .mobile-drawer__account strong { display: block; min-width: 0; }
  .mobile-drawer__account small { color: var(--muted); font-size: .54rem; font-weight: 500; }
  .mobile-drawer__account small, .mobile-drawer__account strong { overflow-wrap: anywhere; }
  .mobile-drawer__account strong { color: var(--forest-deep); font-size: .72rem; }
  .mobile-drawer__account em { font-style: normal; }
  .mobile-drawer__foot { width: 100%; min-width: 0; padding: 16px 20px calc(18px + env(safe-area-inset-bottom)); background: #f6f1e7; border-top: 1px solid var(--line); }
  .mobile-drawer__foot p { margin: 0 0 8px; color: var(--muted); font-size: .64rem; }
  .mobile-drawer__foot .button { min-height: 46px; }
  .mobile-drawer__brand, .mobile-drawer__close, .mobile-drawer__search, .mobile-drawer__nav > *, .mobile-drawer__account > *, .mobile-drawer__foot { opacity: 0; transform: translateY(12px); transition: opacity .22s ease, transform .4s cubic-bezier(.22, 1, .36, 1); }
  .mobile-drawer__brand, .mobile-drawer__close { transform: translateY(-9px); }
  .mobile-drawer__close { transform: translateY(-9px) rotate(-42deg) scale(.9); transition: opacity .22s ease, color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .4s cubic-bezier(.22, 1, .36, 1); }
  .mobile-drawer.is-open .mobile-drawer__brand, .mobile-drawer.is-open .mobile-drawer__search, .mobile-drawer.is-open .mobile-drawer__nav > *, .mobile-drawer.is-open .mobile-drawer__account > *, .mobile-drawer.is-open .mobile-drawer__foot { opacity: 1; transform: translateY(0); }
  .mobile-drawer.is-open .mobile-drawer__close { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
  .mobile-drawer.is-open .mobile-drawer__close:active { transform: translateY(0) rotate(0) scale(.92); }
  .mobile-drawer.is-open .mobile-drawer__brand { transition-delay: .09s; }
  .mobile-drawer.is-open .mobile-drawer__close { transition-delay: .11s; }
  .mobile-drawer.is-open .mobile-drawer__search { transition-delay: .13s; }
  .mobile-drawer.is-open .mobile-drawer__nav > :nth-child(1) { transition-delay: .17s; }
  .mobile-drawer.is-open .mobile-drawer__nav > :nth-child(2) { transition-delay: .20s; }
  .mobile-drawer.is-open .mobile-drawer__nav > :nth-child(3) { transition-delay: .23s; }
  .mobile-drawer.is-open .mobile-drawer__nav > :nth-child(4) { transition-delay: .26s; }
  .mobile-drawer.is-open .mobile-drawer__nav > :nth-child(5) { transition-delay: .29s; }
  .mobile-drawer.is-open .mobile-drawer__account > :nth-child(1) { transition-delay: .32s; }
  .mobile-drawer.is-open .mobile-drawer__account > :nth-child(2) { transition-delay: .35s; }
  .mobile-drawer.is-open .mobile-drawer__account > :nth-child(3) { transition-delay: .38s; }
  .mobile-drawer.is-open .mobile-drawer__foot { transition-delay: .34s; }
  .drawer-backdrop { position: fixed; inset: 0; z-index: 1100; display: block; width: 100%; max-width: 100%; height: 100vh; height: 100dvh; padding: 0; overflow: hidden; background: rgba(4, 31, 22, .54); border: 0; opacity: 0; visibility: hidden; backdrop-filter: blur(0); pointer-events: none; touch-action: none; transition: opacity .34s ease, backdrop-filter .34s ease, visibility 0s linear .34s; }
  .drawer-backdrop.is-open { opacity: 1; visibility: visible; backdrop-filter: blur(3px); pointer-events: auto; transition: opacity .34s ease, backdrop-filter .34s ease, visibility 0s; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top: 10px; }
}

@media (max-width: 720px) {
  :root {
    --container: 100%;
    --mobile-gutter: 20px;
  }
  .container {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
  }
  body { width: 100%; min-width: 0; max-width: 100%; padding-bottom: calc(68px + env(safe-area-inset-bottom)); overflow-x: hidden; font-size: 15px; }
  .mobile-drawer { width: 100%; border-left: 0; border-radius: 0; }
  .mobile-drawer__head, .mobile-drawer__scroll, .mobile-drawer__foot { padding-right: max(var(--mobile-gutter), env(safe-area-inset-right)); padding-left: max(var(--mobile-gutter), env(safe-area-inset-left)); }
  .announcement__inner { justify-content: center; }
  .announcement a { display: none; }
  .site-header__inner { min-height: 62px; }
  .brand img { height: 36px; }
  .header-actions .icon-button { display: none; }
  .header-actions .search-trigger { display: grid; width: 40px; height: 40px; padding: 0; place-items: center; }
  .header-actions .search-trigger span { display: none; }
  .section { padding: 66px 0; }
  .section-head { display: block; margin-bottom: 28px; }
  .section-head > a { margin-top: 13px; }
  .section-head h2 { font-size: 2rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card__body { padding: 13px; }
  .product-card h3 { font-size: .9rem; }
  .product-card__excerpt { display: none; }
  .product-card__price strong { font-size: .93rem; }
  .product-card__price span, .stock-line { font-size: .57rem; }
  .product-card .button { min-height: 40px; padding: 9px; font-size: .72rem; }
  .product-card__brand { top: 8px; left: 8px; padding: 4px 6px; font-size: .48rem; }
  .product-card__soldout strong { font-size: .58rem; }
  .product-card__soldout small { display: none; }
  .footer-cta__inner { display: block; min-height: 0; padding: 34px 0; }
  .footer-cta__actions { display: grid; grid-template-columns: 1fr; margin-top: 22px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; padding-block: 38px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; padding: 18px 0; text-align: center; }
  .footer-bottom div { justify-content: center; margin-top: 8px; }
  .mobile-bottom-nav { position: fixed; right: auto; bottom: 0; left: 0; z-index: 1050; display: grid; width: 100vw; min-width: 0; max-width: 100vw; height: calc(62px + env(safe-area-inset-bottom)); grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: start; padding: 7px 0 env(safe-area-inset-bottom); contain: layout paint; overflow: hidden; background: rgba(255, 253, 248, .97); border-top: 1px solid var(--line); box-shadow: 0 -12px 35px rgba(13, 82, 57, .08); backdrop-filter: blur(16px); }
  .mobile-bottom-nav a, .mobile-bottom-nav button { position: relative; display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 2px; padding: 0; color: #78847e; background: transparent; border: 0; font-size: .53rem; font-weight: 600; }
  .mobile-bottom-nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
  .mobile-bottom-nav span { color: inherit; font-family: var(--font-body); font-size: .53rem; line-height: 1.3; }
  .mobile-bottom-nav .is-active { color: var(--forest); }
  .mobile-bottom-nav em { position: absolute; top: -2px; left: calc(50% + 7px); display: grid; min-width: 16px; height: 16px; padding: 0 3px; place-items: center; color: #fff; background: var(--forest); border-radius: 999px; font-size: .48rem; font-style: normal; }
  .search-modal { width: 100%; max-width: 100%; height: 100vh; height: 100dvh; padding: 0; place-items: stretch; }
  .search-panel { width: 100%; max-width: 100%; height: 100dvh; max-height: 100dvh; min-height: 0; padding: max(18px, env(safe-area-inset-top)) 20px calc(30px + env(safe-area-inset-bottom)); overflow-x: hidden; overflow-y: auto; border: 0; border-radius: 0; }
  .search-panel__head { gap: 12px; }
  .search-panel__head h2 { font-size: clamp(1.25rem, 6vw, 1.45rem); overflow-wrap: anywhere; }
  .search-panel__head > button { flex: 0 0 38px; }
  .search-input-wrap { min-height: 54px; grid-template-columns: 20px minmax(0, 1fr); gap: 9px; padding-inline: 13px; }
  .search-input-wrap kbd, .search-panel__foot span { display: none; }
  .search-popular { align-items: flex-start; }
  .search-popular > span { flex: 0 0 100%; }
  .search-result { grid-template-columns: 60px minmax(0, 1fr); gap: 10px; }
  .search-result img { width: 60px; height: 54px; }
  .search-result > em { grid-column: 2; }
  .search-empty, .search-loading { padding: 26px 16px; }
  .search-panel__foot { justify-content: flex-end; }
  .search-panel__foot a { margin-left: 0; }
  .auth-modal { width: 100%; max-width: 100%; height: 100vh; height: 100dvh; padding: 0; overflow: hidden; place-items: end stretch; }
  .auth-panel { width: 100%; min-width: 0; max-width: 100%; max-height: calc(100dvh - max(8px, env(safe-area-inset-top))); padding: 24px 20px calc(24px + env(safe-area-inset-bottom)); overflow-x: hidden; overflow-y: auto; border-right: 0; border-bottom: 0; border-left: 0; border-radius: 24px 24px 0 0; transform: translate3d(0, 100%, 0); }
  .auth-modal.is-open .auth-panel { transform: translateY(0); }
  .auth-panel__handle { display: block; width: 42px; height: 4px; margin: -10px auto 18px; background: #d9d2c5; border-radius: 999px; }
  .auth-panel__close { top: 12px; right: 14px; width: 44px; height: 44px; }
  .auth-panel__brand { margin-bottom: 18px; }
  .auth-panel > h2 { font-size: 1.7rem; }
  .auth-panel > p:not(.eyebrow) { margin-bottom: 18px; overflow-wrap: anywhere; }
  .auth-panel__form .field > input, .password-field { min-height: 52px; }
  .auth-panel__form input { font-size: 16px; }
  .page-hero { padding: 52px 0 38px; }
  .page-hero h1 { font-size: 2.45rem; }
  .form-card, .content-card { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .flash-wrap { top: 78px; right: 20px; left: 20px; }
  .home-hero__grid { padding-right: 0; padding-left: 0; }
  .home-hero__copy { width: 100%; max-width: 100%; margin-right: 0; margin-left: 0; padding-right: max(var(--mobile-gutter), env(safe-area-inset-right)); padding-left: max(var(--mobile-gutter), env(safe-area-inset-left)); }
  .farm-process__copy { padding-right: max(var(--mobile-gutter), env(safe-area-inset-right)); padding-left: max(var(--mobile-gutter), env(safe-area-inset-left)); }
}

@media (max-width: 1100px) {
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-detail__layout { grid-template-columns: minmax(0, 1fr) 240px; }
  .article-toc { display: none; }
}

@media (max-width: 720px) {
  .journal-hero { padding: 28px 0 50px; }
  .journal-hero__title { grid-template-columns: 1fr; gap: 18px; margin: 26px 0 32px; }
  .journal-hero__title h1 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .journal-featured { grid-template-columns: 1fr; }
  .journal-featured__image { min-height: 285px; }
  .journal-featured__copy { padding: 26px 22px 30px; }
  .journal-featured__copy h2 { font-size: 1.85rem; }
  .journal-toolbar { display: block; }
  .journal-toolbar h2 { font-size: 2rem; }
  .journal-topics { justify-content: flex-start; margin-top: 18px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card__image { aspect-ratio: 1.55 / 1; }
  .journal-cta { grid-template-columns: 1fr; gap: 25px; margin-top: 48px; padding: 30px 22px; }
  .journal-cta h2 { font-size: 1.9rem; }
  .journal-cta > div:last-child { display: grid; }
  .article-detail__hero { padding: 28px 0 48px; }
  .article-detail__hero-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 26px; }
  .article-detail__heading h1 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .article-detail__cover { min-height: 310px; border-radius: 20px 20px 75px 20px; }
  .article-detail__layout { grid-template-columns: 1fr; gap: 38px; }
  .article-prose__lead { font-size: 1.25rem; }
  .article-prose h2 { font-size: 1.7rem; }
  .article-prose > section p, .article-prose li { font-size: .78rem; }
  .article-side-cta { position: static; }
  .related-journal .journal-grid { gap: 15px; }
}

/* Defensive mobile layout layer: every storefront surface must stay inside the viewport. */
@media (max-width: 960px) {
  main,
  main > *,
  .home-hero,
  .home-hero__visual,
  .section,
  .category-grid,
  .product-grid,
  .farm-process,
  .program-grid,
  .footer-cta {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .home-hero__grid > *,
  .section-head > *,
  .category-grid > *,
  .product-grid > *,
  .farm-process > *,
  .program-grid > *,
  .home-info__grid > *,
  .footer-grid > *,
  .product-detail-grid > *,
  .catalog-layout > * {
    min-width: 0;
    max-width: 100%;
  }

  .mobile-drawer,
  .drawer-backdrop,
  .auth-modal,
  .search-modal,
  .mobile-bottom-nav {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  main > *,
  .section,
  .home-hero,
  .farm-process,
  .site-footer {
    overflow-x: hidden;
  }

  .home-hero__copy h1,
  .section-head h2,
  .page-hero h1,
  .product-buybox h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home-hero__actions,
  .home-hero__metrics,
  .home-hero__trust,
  .category-grid,
  .product-grid,
  .process-steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__actions > *,
  .home-hero__metrics > *,
  .home-hero__trust > *,
  .category-grid > *,
  .product-grid > *,
  .process-steps > *,
  .footer-grid > * {
    min-width: 0;
  }

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

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

  .category-card > img {
    max-width: 100%;
    object-position: center;
  }

  .category-card small {
    max-width: 100%;
  }

  .mobile-drawer__search,
  .mobile-drawer__account > a,
  .mobile-drawer__account > button,
  .search-result {
    max-width: 100%;
  }
}

@supports (overflow: clip) {
  @media (max-width: 720px) {
    main > *,
    .section,
    .home-hero,
    .farm-process,
    .site-footer {
      overflow-x: clip;
    }
  }
}

/* Mobile viewport lock: calculate the page and fixed navigation from the real viewport, never from an oversized child. */
@media (max-width: 720px) {
  html,
  body {
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }

  main,
  main > *,
  .announcement,
  .site-header,
  .site-footer,
  .home-hero,
  .home-hero__grid,
  .home-hero__visual,
  .section,
  .farm-process {
    min-width: 0;
    max-width: 100vw;
  }

  .home-hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
  }

  .mobile-bottom-nav {
    right: auto;
    left: 0;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-bottom-nav > * {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

@supports (width: 100dvw) {
  @media (max-width: 720px) {
    html,
    body,
    .mobile-bottom-nav {
      width: 100dvw;
      max-width: 100dvw;
    }
  }
}

@media (max-width: 480px) {
  .home-hero__copy { padding-top: 44px; }
  .home-hero__copy h1 { font-size: clamp(2.45rem, 12vw, 3.25rem); }
  .home-hero__actions { grid-template-columns: minmax(0, 1fr); }
  .home-hero__actions .button { width: 100%; min-height: 48px; }
  .home-hero__metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
  .home-hero__metrics div { align-content: start; }
  .category-card { min-height: 230px; }
  .category-card > img { height: 136px; }
  .category-card > span { padding: 0 12px 13px; }
  .category-card strong { font-size: .9rem; }
  .category-card small { font-size: .55rem; }
  .auth-panel { padding-right: 16px; padding-left: 16px; }
  .auth-panel__brand img { width: 128px; }
  .auth-panel > h2 { padding-right: 38px; font-size: 1.55rem; }
  .auth-panel__options { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .auth-panel__options a { justify-self: start; }
}

@media (max-width: 380px) {
  :root { --mobile-gutter: 16px; }
  .mobile-drawer__search { grid-template-columns: 20px minmax(0, 1fr); }
  .mobile-drawer__search em { display: none; }
  .product-grid { gap: 9px; }
  .product-card__body { padding: 11px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .mobile-drawer, .drawer-backdrop, .mobile-drawer__brand, .mobile-drawer__close, .mobile-drawer__search, .mobile-drawer__nav > *, .mobile-drawer__account > *, .mobile-drawer__foot { transition-delay: 0s !important; }
  .reveal { opacity: 1; transform: none; }
}
