:root {
  --ink: #202420;
  --muted: #6d675c;
  --paper: #f7f3ec;
  --warm: #e5dbcc;
  --bone: #fffaf2;
  --moss: #2f4a3d;
  --moss-light: #dfe8d8;
  --clay: #9f6547;
  --sage: #8f9a78;
  --charcoal: #171a17;
  --line: rgba(32, 36, 32, 0.13);
  --shadow: 0 28px 70px rgba(31, 28, 21, 0.15);
  --radius: 8px;
  --policy: "Policy", "Policy Display", Georgia, "Times New Roman", serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open,
body.searching {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.announcement {
  min-height: 44px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto 44px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  background: var(--charcoal);
  color: var(--bone);
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.announcement span {
  color: #e7bc81;
  font-weight: 700;
  margin-right: 12px;
}

.announcement a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, 0.28);
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.announcement__arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--bone);
  opacity: 0.7;
}

.announcement__arrow svg {
  width: 19px;
  height: 19px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  width: 118px;
}

.logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clay);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.cart-button,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.8);
  color: var(--ink);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.cart-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-weight: 800;
}

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

.cart-count {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  font-size: 0.75rem;
}

.commerce-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(23, 26, 23, 0.48);
  backdrop-filter: blur(8px);
}

.commerce-backdrop[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(440px, 100vw);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  transform: translateX(100%);
  background: var(--bone);
  box-shadow: -24px 0 60px rgba(31, 28, 21, 0.18);
  transition: transform 220ms ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-drawer__header,
.cart-drawer__summary {
  padding: 22px;
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__header span,
.checkout-modal__heading span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-drawer h2,
.checkout-modal h2,
.order-confirmation h2 {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.cart-drawer__items {
  overflow: auto;
  padding: 10px 22px;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
}

.cart-empty p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--warm);
}

.cart-line span {
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-line h3 {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.cart-line p {
  margin: 4px 0 10px;
  color: var(--muted);
}

.quantity-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.quantity-control button {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.quantity-control button:last-child {
  padding: 0 12px;
  color: var(--clay);
}

.cart-drawer__summary {
  border-top: 1px solid var(--line);
  background: rgba(247, 243, 236, 0.76);
}

.cart-drawer__summary > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.cart-drawer__summary p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-open {
  width: 100%;
}

.checkout-open:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-modal__panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--bone);
  box-shadow: var(--shadow);
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.checkout-modal__heading {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.checkout-modal__heading p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.checkout-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-wide {
  grid-column: 1 / -1;
}

.checkout-grid input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
  text-transform: none;
  letter-spacing: 0;
}

.checkout-grid input:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(47, 74, 61, 0.14);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-total span {
  color: var(--muted);
  font-weight: 800;
}

.checkout-form > .button,
.order-confirmation .button {
  width: 100%;
}

.order-confirmation {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.order-confirmation[hidden] {
  display: none;
}

.order-confirmation span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-confirmation p {
  max-width: 560px;
  margin: 0 0 10px;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  place-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 130px 14px auto;
  z-index: 30;
  display: none;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: grid;
  align-items: end;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 72px) 0;
  color: var(--bone);
  isolation: isolate;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 18, 15, 0.78), rgba(14, 18, 15, 0.26) 58%, rgba(14, 18, 15, 0.5)),
    linear-gradient(0deg, rgba(14, 18, 15, 0.72), rgba(14, 18, 15, 0.02) 48%);
}

.hero__content {
  width: min(720px, 100%);
  margin: 0 auto;
  padding-bottom: clamp(90px, 12vw, 150px);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c98d;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

.hero h1 {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(2.55rem, 5.6vw, 5.55rem);
  letter-spacing: 0;
}

.hero__content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  background: var(--clay);
  color: var(--bone);
}

.button--ghost {
  border-color: rgba(255, 250, 242, 0.45);
  color: var(--bone);
  background: rgba(255, 250, 242, 0.08);
}

.button--dark {
  background: var(--ink);
  color: var(--bone);
}

.hero__proof {
  width: calc(100% + clamp(36px, 10vw, 144px));
  margin-left: calc(clamp(18px, 5vw, 72px) * -1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 250, 242, 0.24);
  background: rgba(23, 26, 23, 0.62);
  backdrop-filter: blur(16px);
}

.hero__proof span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 250, 242, 0.2);
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.collection-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--bone);
}

.collection-strip a {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.collection-strip a:hover {
  background: var(--moss-light);
}

.collection-strip a:last-child {
  border-right: 0;
}

.collection-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-strip strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
}

.section-pad {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.intro h2,
.section-heading h2,
.reviews h2,
.buyer-guide h2,
.faq h2,
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.intro p {
  max-width: 740px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 1220px;
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-subcopy {
  max-width: 660px;
  margin: 18px auto 14px;
  color: var(--muted);
  text-align: center;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.products .section-heading {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products .filters {
  justify-content: center;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--bone);
  color: var(--muted);
  font-weight: 800;
}

.filter.is-active {
  background: var(--moss);
  color: var(--bone);
}

.product-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone);
  box-shadow: 0 18px 48px rgba(31, 28, 21, 0.07);
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  background: var(--warm);
}

.product-card__body {
  min-height: 280px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
}

.product-card__body span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

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

.product-card__body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-card strong {
  font-size: 1.05rem;
}

.quick-add {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--ink);
  color: var(--bone);
  font-size: 0.83rem;
  font-weight: 900;
}

.story {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  background: var(--bone);
}

.story.section-pad {
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(46px, 6vw, 78px);
}

.story__image {
  justify-self: center;
  width: min(100%, 330px);
}

.story__image img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story__copy {
  max-width: 640px;
  justify-self: center;
  text-align: center;
}

.story h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.story p {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  text-align: center;
}

.check-list li {
  position: relative;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 500;
}

.check-list li:nth-child(2n) {
  border-right: 0;
}

.check-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.check-list li::before {
  content: none;
}

.standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--moss);
  color: var(--bone);
}

.standards div {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 250, 242, 0.18);
}

.standards div:last-child {
  border-right: 0;
}

.standards svg {
  width: 25px;
  height: 25px;
  color: #e7bc81;
}

.standards strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
}

.standards span {
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.88rem;
}

.field-note {
  display: grid;
  grid-template-columns: 170px minmax(0, 620px);
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.field-note img {
  width: 170px;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(31, 28, 21, 0.12);
}

.field-note span,
.events article span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-note h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.08;
}

.stacks {
  background: linear-gradient(180deg, var(--paper), #e9ede1);
}

.stack-layout {
  max-width: 1100px;
  margin: 0 auto;
}

.stack-tabs {
  width: max-content;
  max-width: 100%;
  display: flex;
  gap: 8px;
  margin: 0 auto 22px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bone);
}

.stack-tab {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.stack-tab.is-active {
  background: var(--ink);
  color: var(--bone);
}

.stack-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  justify-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.stack-image {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: var(--radius);
}

.stack-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 500;
}

.stack-copy {
  margin: 20px 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.stack-pills span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
}

.reviews {
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(231, 188, 129, 0.16), transparent 38%),
    var(--charcoal);
  color: var(--bone);
}

.reviews .section-kicker {
  color: #e7bc81;
}

.review-grid {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 36px auto 0;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
}

.review-grid figure {
  position: relative;
  min-height: 142px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  margin: 0;
  padding: 16px 22px;
  border-right: 1px solid rgba(255, 250, 242, 0.14);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.07), rgba(255, 250, 242, 0.02));
  text-align: center;
}

.review-grid figure:last-child {
  border-right: 0;
}

.review-grid figure::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #e7bc81;
}

.review-grid div {
  color: #e7bc81;
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 0.72;
  letter-spacing: 0;
}

.rating-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c8c9c2;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-grid blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  line-height: 1.34;
}

.review-grid figcaption {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.buyer-guide {
  background: var(--paper);
}

.guide-panel {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-panel a {
  min-height: 142px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.guide-panel a:last-child {
  border-right: 0;
}

.guide-panel span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-panel strong {
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.05;
  font-weight: 500;
}

.guide-panel p {
  margin: 0;
  max-width: 250px;
  color: var(--muted);
  font-size: 0.94rem;
}

.events {
  background: var(--bone);
}

.events-hero {
  display: grid;
  justify-items: center;
  min-height: 470px;
  align-content: center;
  background:
    linear-gradient(rgba(23, 26, 23, 0.52), rgba(23, 26, 23, 0.58)),
    url("https://wildmamas.com/cdn/shop/files/2020wolfson-44_1200x.jpg?v=1774549330") center/cover;
  color: var(--bone);
  text-align: center;
}

.events-hero .section-kicker {
  color: #e7bc81;
}

.events-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.2vw, 6.3rem);
}

.events-hero p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.08rem;
}

.events-current {
  display: grid;
  justify-items: center;
  gap: 18px;
  background: var(--bone);
  text-align: center;
}

.events-current.section-pad {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.events-current > div {
  max-width: 720px;
  text-align: center;
}

.events-current h2,
.events-archive h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
}

.events-current article {
  max-width: 620px;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.events-current article span,
.event-list span {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.events-current article strong {
  display: block;
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.06;
}

.events-current article p {
  margin: 12px auto 0;
  max-width: 540px;
  font-size: 0.96rem;
}

.events-current .event-link {
  margin-top: 18px;
}

.events-current p,
.event-list p {
  color: var(--muted);
}

.event-panel {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.events article {
  min-height: 180px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 26px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.events article strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.events article p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
}

.events-archive {
  background: var(--paper);
}

.event-list {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.event-list article {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.event-thumb {
  position: relative;
  width: 118px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(32, 36, 32, 0.14);
  border-radius: var(--radius);
  background: var(--bone);
  box-shadow: 0 16px 34px rgba(31, 28, 21, 0.1);
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.event-thumb:hover img,
.event-thumb:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.02) contrast(1.06);
}

.event-copy {
  justify-self: center;
}

.event-list h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.25vw, 2.24rem);
  font-weight: 500;
  text-align: center;
}

.event-list p {
  max-width: 620px;
  margin: 12px auto 0;
  text-align: center;
}

.event-meta {
  color: var(--clay) !important;
  font-weight: 800;
}

.event-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--bone);
  font-weight: 900;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  justify-content: center;
  color: var(--clay);
  font-weight: 900;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: 34px;
  background: var(--bone);
  text-align: center;
}

.faq > div:first-child {
  justify-self: center;
  max-width: 700px;
}

.assurance-grid {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  justify-self: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-grid article {
  min-height: 172px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.assurance-grid article:last-child {
  border-right: 0;
}

.assurance-grid span {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.assurance-grid strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.08;
}

.assurance-grid p {
  max-width: 235px;
  margin: 0;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(rgba(247, 243, 236, 0.7), rgba(247, 243, 236, 0.96)),
    url("https://wildmamas.com/cdn/shop/files/JWCO-WM-2624_2000x.jpg?v=1776796601") center/cover;
}

.contact__panel {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.9);
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.newsletter {
  width: min(520px, 100%);
  margin-top: 28px;
}

.contact-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-logo {
  width: 132px;
  margin-bottom: 18px;
}

.contact-copy a {
  color: var(--clay);
  font-weight: 900;
}

.newsletter label,
.search-modal label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}

.newsletter > div,
.search-modal form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter input,
.search-modal input {
  min-height: 50px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--bone);
  color: var(--ink);
  outline: 0;
}

.newsletter input:focus,
.search-modal input:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(47, 74, 61, 0.14);
}

.form-note {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--moss);
  font-weight: 800;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.social-heading {
  margin-top: 24px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(32, 36, 32, 0.18);
  border-radius: 999px;
  padding: 0 15px 0 11px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(31, 28, 21, 0.08);
}

.contact-links a svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
}

.contact-links svg {
  width: 20px;
  height: 20px;
}

.email-link {
  margin-top: 12px;
  color: var(--clay);
  font-weight: 900;
}

.footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 250, 242, 0.75);
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a {
  color: var(--bone);
  font-family: var(--policy);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: start center;
  padding: 18px;
  padding-top: min(18vh, 150px);
  background: rgba(23, 26, 23, 0.42);
  backdrop-filter: blur(10px);
}

.search-modal[hidden] {
  display: none;
}

.search-modal__panel {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--bone);
  box-shadow: var(--shadow);
  text-align: center;
}

.search-modal h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
}

.search-kicker {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  transform: translateY(20px);
  opacity: 0;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-weight: 900;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(159, 101, 71, 0.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .announcement {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .announcement a {
    display: none;
  }

  .site-header {
    grid-template-columns: 120px 1fr;
    min-height: 78px;
  }

  .desktop-nav {
    display: none;
  }

  .logo {
    width: 104px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-actions > .icon-button:nth-child(2),
  .cart-button span {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    min-height: calc(100svh - 122px);
  }

  .hero__proof,
  .collection-strip,
  .product-grid,
  .standards,
  .review-grid,
  .guide-panel,
  .event-panel,
  .assurance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__proof span:nth-child(3),
  .standards div:nth-child(2),
  .standards div:nth-child(4) {
    border-right: 0;
  }

  .section-heading,
  .story,
  .stack-panel,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading--center,
  .products .section-heading {
    align-items: center;
  }

  .filters {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .announcement {
    min-height: 50px;
    padding: 0 8px;
  }

  .announcement p {
    font-size: 0.75rem;
  }

  .announcement span {
    display: block;
    margin: 0;
  }

  .site-header {
    padding-inline: 14px;
  }

  .icon-button,
  .cart-button,
  .menu-toggle {
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
  }

  .cart-button {
    justify-content: center;
  }

  .cart-count {
    position: absolute;
    transform: translate(15px, -14px);
    box-shadow: 0 0 0 2px var(--paper);
  }

  .hero {
    min-height: calc(100svh - 128px);
    padding-inline: 16px;
  }

  .hero__content {
    padding-bottom: 74px;
  }

  .hero__content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero__actions,
  .newsletter > div,
  .search-modal form > div {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .cart-line {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .cart-line img {
    width: 76px;
  }

  .hero__proof,
  .collection-strip,
  .product-grid,
  .standards,
  .review-grid,
  .guide-panel,
  .event-panel,
  .assurance-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .hero__proof span,
  .collection-strip a,
  .standards div {
    border-right: 0;
    border-bottom: 1px solid rgba(32, 36, 32, 0.13);
  }

  .hero__proof span {
    min-height: 54px;
    border-bottom-color: rgba(255, 250, 242, 0.18);
  }

  .collection-strip a {
    min-height: 88px;
  }

  .section-pad {
    padding-inline: 16px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .product-card__body {
    min-height: 248px;
  }

  .stack-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .stack-tab {
    flex: 0 0 auto;
  }

  .review-grid figure {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  }

  .review-grid figure:last-child {
    border-bottom: 0;
  }

  .guide-panel a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-panel a:last-child {
    border-bottom: 0;
  }

  .event-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-panel article:last-child {
    border-bottom: 0;
  }

  .events-current,
  .event-list article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .events-current > div,
  .events-current article {
    justify-self: center;
  }

  .event-list article {
    justify-items: center;
  }

  .event-list p {
    margin-left: auto;
    margin-right: auto;
  }

  .field-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .field-note img {
    width: min(220px, 100%);
  }

  .assurance-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid article:last-child {
    border-bottom: 0;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
