:root {
  --ink: #151713;
  --ink-soft: #30362f;
  --paper: #f6f2ea;
  --paper-deep: #ebe4d6;
  --mist: #d9e1df;
  --glacier: #8eb2c6;
  --moss: #526348;
  --rust: #b7643d;
  --amber: #d2a15f;
  --stone: #8d8a80;
  --white: #ffffff;
  --black: #050605;
  --shadow: 0 22px 70px rgba(13, 17, 15, 0.22);
  --soft-shadow: 0 18px 54px rgba(33, 36, 31, 0.12);
  --border: 1px solid rgba(21, 23, 19, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  position: relative;
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background:
    linear-gradient(180deg, #f7f3ec 0%, var(--paper) 42%, #ede5d8 100%);
  color: var(--ink);
  font-family: "Noto Sans JP", "Inter", system-ui, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 23, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 19, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  opacity: 0.34;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.heading-line,
.copy-line {
  display: block;
}

.keep {
  white-space: nowrap;
}

.mobile-copy {
  display: none;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 40;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topline {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
}

.topline span {
  flex: 0 0 auto;
}

.topline {
  scrollbar-width: none;
}

.topline::-webkit-scrollbar {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px 28px;
  background: rgba(239, 233, 222, 0.9);
  border-bottom: 1px solid rgba(21, 23, 19, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 38px rgba(20, 25, 21, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
}

.brand-text {
  font-size: 0.98rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.primary-nav a,
.mobile-nav a {
  position: relative;
}

.primary-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button,
.cart-button,
.button,
.checkout-button,
.filter-button,
.add-button,
.quick-button,
.wishlist-button,
.qty-button,
.remove-button {
  border: 0;
  border-radius: 6px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: rgba(21, 23, 19, 0.06);
  color: var(--ink);
}

.icon-button:hover,
.cart-button:hover,
.button:hover,
.checkout-button:hover,
.filter-button:hover {
  transform: translateY(-1px);
}

.icon-button svg,
.button svg,
.cart-button svg,
.checkout-button svg,
.guide-list svg,
.service-grid svg,
.cart-empty svg,
.search-field svg,
.quick-button svg,
.wishlist-button svg,
.add-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
}

.cart-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--rust);
  color: var(--white);
  font-size: 0.75rem;
}

.mobile-nav {
  position: sticky;
  top: 72px;
  z-index: 29;
  display: grid;
  gap: 2px;
  padding: 12px 20px 18px;
  background: var(--paper);
  border-bottom: var(--border);
  box-shadow: 0 18px 35px rgba(13, 17, 15, 0.12);
}

.mobile-nav[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.82) 0%, rgba(5, 6, 5, 0.5) 46%, rgba(5, 6, 5, 0.06) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.62) 0%, rgba(5, 6, 5, 0.04) 48%, rgba(5, 6, 5, 0.18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 44px;
  align-items: end;
  padding: 104px 28px 136px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 5.15rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-content {
  max-width: 780px;
}

.hero-actions,
.guide-list,
.signup-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  font-weight: 800;
}

.button-primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 128px));
  gap: 14px;
  margin: 48px 0 0;
}

.hero-stats div {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats dt {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.hero-kit {
  min-width: 0;
  align-self: end;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.16), rgba(246, 242, 234, 0.08)),
    rgba(5, 6, 5, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(5, 6, 5, 0.24);
  backdrop-filter: blur(18px);
}

.kit-kicker {
  color: var(--amber);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kit h2 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.16;
}

.hero-kit p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.kit-list {
  min-width: 0;
  max-width: 100%;
  display: grid;
  gap: 8px;
}

.kit-list a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

.kit-list span {
  color: var(--amber);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.76rem;
}

.trip-finder {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: -112px auto 0;
  display: grid;
  gap: 18px;
  padding: 0 28px;
}

.trip-finder-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: end;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(183, 100, 61, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--ink);
  color: var(--paper);
  border-radius: 8px 8px 0 0;
}

.trip-finder-head h2 {
  margin: 0;
  color: var(--paper);
  font-size: 2rem;
  line-height: 1.16;
}

.trip-finder-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(246, 242, 234, 0.66);
}

.trip-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  overflow: visible;
}

.trip-options button {
  position: relative;
  isolation: isolate;
  min-height: 174px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 10px;
  overflow: hidden;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  text-align: left;
  box-shadow: 0 18px 46px rgba(21, 23, 19, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.trip-options button::before,
.trip-options button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.trip-options button::before {
  background: var(--trip-image) center / cover;
  transform: scale(1.02);
  transition: transform 520ms ease;
}

.trip-options button::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.2) 0%, rgba(5, 6, 5, 0.46) 44%, rgba(5, 6, 5, 0.86) 100%),
    linear-gradient(90deg, rgba(5, 6, 5, 0.52), transparent 72%);
}

.trip-options button:nth-child(1) {
  --trip-image: url("assets/images/product-shell.webp");
}

.trip-options button:nth-child(2) {
  --trip-image: url("assets/images/product-pack.webp");
}

.trip-options button:nth-child(3) {
  --trip-image: url("assets/images/product-tent.webp");
}

.trip-options button:nth-child(4) {
  --trip-image: url("assets/images/product-cookset.webp");
}

.trip-options button:hover,
.trip-options button.is-active {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(21, 23, 19, 0.2);
}

.trip-options button:hover::before,
.trip-options button.is-active::before {
  transform: scale(1.08);
}

.trip-options svg {
  width: 21px;
  height: 21px;
  color: var(--amber);
}

.trip-options button:hover svg,
.trip-options button.is-active svg {
  color: var(--amber);
}

.trip-options button > span {
  max-width: 14ch;
  margin-top: 48px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.22;
}

.trip-options button > span .keep + .keep {
  margin-left: 0.25em;
}

.trip-options small {
  max-width: 18ch;
  color: rgba(246, 242, 234, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.trip-options button:hover small,
.trip-options button.is-active small {
  color: rgba(246, 242, 234, 0.68);
}

.trip-result {
  margin: 0;
  padding: 0 2px;
  color: rgba(21, 23, 19, 0.62);
  font-size: 0.88rem;
}

.shop-band,
.collections,
.services,
.journal-signup {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 84px 28px;
}

.shop-band {
  padding-top: 52px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.64fr);
  align-items: end;
  gap: 26px;
  margin-bottom: 28px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.guide-copy h2,
.journal-signup h2,
.materials-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.guide-copy p,
.service-grid p {
  margin: 0;
  color: rgba(21, 23, 19, 0.68);
}

.section-copy {
  display: grid;
  gap: 12px;
}

.section-copy span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  background: rgba(82, 99, 72, 0.12);
  color: var(--moss);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.shop-toolbar {
  position: sticky;
  top: 72px;
  z-index: 20;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 12px;
  background: rgba(246, 242, 234, 0.76);
  border: 1px solid rgba(21, 23, 19, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.search-field,
.sort-field {
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 23, 19, 0.1);
  border-radius: 6px;
}

.search-field input,
.sort-field select,
.signup-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.sort-field span {
  color: rgba(21, 23, 19, 0.6);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-group {
  min-width: 0;
  max-width: 100%;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-group::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 42px;
  padding: 0 14px;
  background: rgba(21, 23, 19, 0.045);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  white-space: nowrap;
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 23, 19, 0.1);
  border-radius: 8px;
  box-shadow: 0 0 0 rgba(13, 17, 15, 0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 23, 19, 0.24);
  box-shadow: var(--soft-shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(5, 6, 5, 0.12));
  opacity: 0;
  transition: opacity 280ms ease;
}

.product-card:hover .product-media::after {
  opacity: 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-badges span,
.product-category {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(246, 242, 234, 0.9);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 20px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.product-title {
  margin: 8px 0 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.product-price {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-desc {
  margin: 0;
  color: rgba(21, 23, 19, 0.64);
  font-size: 0.9rem;
}

.product-signal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 26px;
  color: rgba(21, 23, 19, 0.66);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-signal span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-signal svg {
  width: 13px;
  height: 13px;
  color: var(--amber);
  fill: currentColor;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 30px;
}

.product-specs span {
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(235, 228, 214, 0.8);
  color: rgba(21, 23, 19, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
}

.product-swatches,
.quick-swatches {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
}

.product-swatches span,
.quick-swatches span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(21, 23, 19, 0.22);
}

.detail-swatches {
  min-height: 34px;
}

.detail-swatches button {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(21, 23, 19, 0.18);
  border-radius: 50%;
  background: transparent;
}

.detail-swatches button::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.detail-swatches button.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(183, 100, 61, 0.16);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 44px 44px 44px;
  gap: 8px;
  margin-top: 2px;
}

.add-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wishlist-button,
.quick-button {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  background: rgba(21, 23, 19, 0.07);
  color: var(--ink);
  border: 0;
  border-radius: 6px;
}

.wishlist-button.is-saved {
  background: var(--mist);
  color: var(--moss);
}

.quick-button:hover,
.wishlist-button:hover,
.add-button:hover {
  transform: translateY(-1px);
}

.editorial-feature {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
  padding: 36px 28px 84px;
}

.feature-copy {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
}

.feature-copy h2 {
  margin: 0;
  color: var(--paper);
  font-size: 2.2rem;
  line-height: 1.16;
}

.feature-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(246, 242, 234, 0.7);
}

.feature-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.feature-metrics div {
  padding-top: 12px;
  border-top: 1px solid rgba(246, 242, 234, 0.22);
}

.feature-metrics strong {
  display: block;
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-metrics span {
  color: rgba(246, 242, 234, 0.62);
  font-size: 0.78rem;
}

.feature-collage {
  position: relative;
  min-height: 560px;
}

.feature-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.collage-main {
  inset: 30px 90px 0 0;
  width: calc(100% - 90px);
  height: calc(100% - 30px);
}

.collage-small {
  right: 0;
  width: 190px;
  height: 190px;
  border: 8px solid var(--paper);
}

.collage-small.top {
  top: 0;
}

.collage-small.bottom {
  bottom: 34px;
}

.empty-results {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: var(--border);
  border-radius: 8px;
  color: rgba(21, 23, 19, 0.62);
}

.collections {
  padding-top: 40px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.collection-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.collection-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 440ms ease;
}

.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 5, 0.84), rgba(5, 6, 5, 0.06));
}

.collection-tile:hover img {
  transform: scale(1.045);
}

.collection-tile span,
.collection-tile strong {
  position: relative;
  z-index: 1;
}

.collection-tile span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.collection-tile strong {
  margin-top: 5px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.field-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
  gap: 42px;
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 80px 28px;
}

.guide-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-copy {
  display: grid;
  gap: 18px;
}

.guide-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  font-weight: 800;
}

.materials-lab {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 0;
  padding: 0 28px 84px;
}

.materials-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: var(--ink);
}

.materials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 46px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--ink);
  color: var(--paper);
  border-radius: 0 8px 8px 0;
}

.materials-copy h2 {
  color: var(--paper);
}

.materials-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(246, 242, 234, 0.68);
}

.materials-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.materials-checks span,
.materials-checks a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(246, 242, 234, 0.86);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.materials-checks a:hover,
.text-link:hover {
  color: var(--amber);
}

.text-link {
  width: max-content;
  color: var(--rust);
  font-size: 0.86rem;
  font-weight: 800;
}

.services {
  padding-top: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border: var(--border);
  border-radius: 8px;
}

.service-grid svg {
  color: var(--rust);
}

.service-grid h3 {
  margin: 0;
  font-size: 1.05rem;
}

.journal-signup {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
}

.journal-signup h2 {
  color: var(--paper);
}

.signup-form {
  justify-content: flex-end;
}

.signup-form label {
  flex: 1 1 240px;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.signup-form input {
  color: var(--white);
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 30px 28px 44px;
  color: rgba(21, 23, 19, 0.74);
  border-top: 1px solid rgba(21, 23, 19, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.98rem;
}

.footer-brand p {
  margin: 2px 0 0;
  font-size: 0.84rem;
}

.footer-links,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-meta {
  color: rgba(21, 23, 19, 0.48);
}

.cart-drawer,
.quick-view {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  width: min(100vw, 430px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 240ms ease;
}

.cart-drawer.is-open,
.quick-view.is-open {
  transform: translateX(0);
}

.quick-view {
  width: min(100vw, 940px);
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 0.72fr);
  grid-template-rows: 1fr;
  background: var(--paper);
}

.quick-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(246, 242, 234, 0.9);
}

.quick-media {
  min-height: 100svh;
  background: var(--ink);
}

.quick-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 48px;
  overflow-y: auto;
}

.quick-body h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

.quick-body p {
  margin: 0;
  color: rgba(21, 23, 19, 0.66);
}

.quick-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: var(--border);
  border-bottom: var(--border);
}

.quick-price-row strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.45rem;
}

.quick-price-row span {
  color: var(--moss);
  font-size: 0.84rem;
  font-weight: 800;
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.quick-specs div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
}

.quick-specs dt {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

.quick-specs dd {
  margin: 0;
  color: rgba(21, 23, 19, 0.58);
  font-size: 0.78rem;
}

.quick-note {
  padding: 14px;
  background: rgba(142, 178, 198, 0.16);
  border-left: 3px solid var(--glacier);
  color: rgba(21, 23, 19, 0.72);
  font-size: 0.92rem;
}

.cart-head,
.cart-foot {
  padding: 20px;
  background: var(--paper);
  border-bottom: var(--border);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h2 {
  margin: 0;
}

.cart-items {
  overflow-y: auto;
  padding: 16px;
}

.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: var(--border);
}

.cart-line img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-line h3 {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.3;
}

.cart-line p {
  margin: 2px 0 8px;
  color: rgba(21, 23, 19, 0.64);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 36px 34px;
  align-items: center;
  border: var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.qty-button,
.remove-button {
  min-height: 34px;
  background: transparent;
  color: var(--ink);
}

.qty-control span {
  text-align: center;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

.remove-button {
  color: rgba(21, 23, 19, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-empty {
  display: none;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  color: rgba(21, 23, 19, 0.58);
}

.cart-empty.is-visible {
  display: grid;
}

.cart-foot {
  border-top: var(--border);
  border-bottom: 0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.04rem;
}

.cart-total strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.3rem;
}

.checkout-button {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--rust);
  color: var(--white);
  font-weight: 800;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(5, 6, 5, 0.46);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-page {
  background:
    linear-gradient(180deg, #f8f4ec 0%, var(--paper) 36%, #e9e2d4 100%);
}

.detail-main {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 70px 28px 92px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 28px;
  align-items: start;
}

.detail-gallery {
  position: sticky;
  top: 100px;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.detail-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.02) 48%, rgba(5, 6, 5, 0.28) 100%),
    linear-gradient(90deg, rgba(5, 6, 5, 0.22), transparent 36%);
  pointer-events: none;
}

.detail-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-badges {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-badges span {
  padding: 6px 10px;
  background: rgba(246, 242, 234, 0.92);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.detail-buy-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 23, 19, 0.12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.breadcrumb {
  width: max-content;
  color: var(--rust);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-buy-panel h1,
.page-hero-copy h1,
.service-detail-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.04;
}

.detail-buy-panel h1 {
  font-size: 2.65rem;
}

.detail-buy-panel p {
  margin: 0;
  color: rgba(21, 23, 19, 0.68);
}

.detail-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-signal span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  background: rgba(82, 99, 72, 0.1);
  color: var(--moss);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.detail-signal svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
  fill: currentColor;
}

.detail-buy-panel .quick-price-row {
  margin-top: 2px;
}

.detail-buy-panel .quick-specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-choice-block {
  display: grid;
  gap: 10px;
}

.detail-choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(21, 23, 19, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-choice-head strong,
.detail-choice-head a {
  color: var(--ink);
  font-size: 0.78rem;
}

.detail-choice-head a {
  color: var(--rust);
}

.detail-option-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
}

.detail-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-size-options button,
.detail-qty-control button,
.detail-sub-actions button {
  border: 1px solid rgba(21, 23, 19, 0.14);
  border-radius: 6px;
  background: rgba(246, 242, 234, 0.74);
  color: var(--ink);
  font-weight: 800;
}

.detail-size-options button {
  min-width: 48px;
  min-height: 42px;
  padding: 0 12px;
}

.detail-size-options button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.detail-qty-control {
  min-height: 42px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 19, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
}

.detail-qty-control button {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.detail-qty-control span {
  display: grid;
  place-items: center;
  border-inline: 1px solid rgba(21, 23, 19, 0.1);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

.detail-sub-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.detail-sub-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.detail-sub-actions button.is-active {
  background: rgba(142, 178, 198, 0.2);
  border-color: rgba(61, 97, 117, 0.28);
  color: #3d6175;
}

.detail-sub-actions svg {
  width: 16px;
  height: 16px;
}

.detail-assurance {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(246, 242, 234, 0.74);
  border: 1px solid rgba(21, 23, 19, 0.1);
  border-radius: 8px;
}

.detail-assurance div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.detail-assurance svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--moss);
}

.detail-assurance span {
  display: grid;
  gap: 1px;
}

.detail-assurance strong {
  font-size: 0.84rem;
  line-height: 1.35;
}

.detail-assurance small {
  color: rgba(21, 23, 19, 0.58);
  font-size: 0.76rem;
  line-height: 1.45;
}

.detail-secondary {
  width: 100%;
  background: var(--paper-deep);
  color: var(--ink);
  border: var(--border);
}

.detail-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.72fr) minmax(240px, 0.72fr);
  gap: 16px;
  margin-top: 28px;
}

.detail-story-block,
.detail-mini-card,
.article-block,
.service-detail-card,
.related-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 23, 19, 0.11);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(21, 23, 19, 0.06);
}

.detail-story-block {
  padding: 32px;
}

.detail-story-block h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.16;
}

.story-title-line {
  display: block;
}

.detail-story-block p:not(.eyebrow),
.detail-mini-card p {
  margin: 0;
  color: rgba(21, 23, 19, 0.68);
}

.detail-mini-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.detail-mini-card svg,
.service-detail-card svg {
  width: 24px;
  height: 24px;
  color: var(--rust);
}

.detail-mini-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.detail-tags span {
  padding: 7px 10px;
  background: rgba(142, 178, 198, 0.18);
  color: #3d6175;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.related-section {
  padding-top: 74px;
}

.detail-spec-section {
  padding-top: 64px;
}

.detail-spec-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-spec-table div {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 23, 19, 0.1);
  border-radius: 8px;
}

.detail-spec-table dt {
  color: rgba(21, 23, 19, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-spec-table dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto auto;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 23, 19, 0.22);
  box-shadow: var(--soft-shadow);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.related-card span,
.related-card strong,
.related-card small {
  margin-inline: 16px;
}

.related-card span {
  margin-top: 16px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 800;
}

.related-card strong {
  margin-top: 4px;
  color: var(--ink);
  line-height: 1.28;
}

.related-card small {
  margin-top: 10px;
  margin-bottom: 18px;
  color: rgba(21, 23, 19, 0.62);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: 38px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(21, 23, 19, 0.12);
}

.material-page-hero {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 0.82fr);
}

.page-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.page-hero-copy h1,
.service-detail-hero h1 {
  font-size: 3.45rem;
}

.page-hero-copy p:not(.eyebrow),
.service-detail-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(21, 23, 19, 0.68);
  font-size: 1.03rem;
}

.page-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  padding-top: 42px;
}

.guide-article-layout {
  grid-template-columns: minmax(0, 1fr);
}

.article-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.article-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 23, 19, 0.1);
  border-radius: 6px;
  color: rgba(21, 23, 19, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-nav a:hover {
  background: var(--ink);
  color: var(--paper);
}

.article-content {
  display: grid;
  gap: 18px;
}

.article-block {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 34px;
}

.article-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--rust), var(--glacier));
}

.article-block > span {
  color: var(--rust);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.article-block h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.22;
}

.article-block p {
  margin: 0;
  max-width: 760px;
  color: rgba(21, 23, 19, 0.68);
}

.article-picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(21, 23, 19, 0.1);
}

.article-picks a {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
}

.article-picks img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 6px;
}

.article-picks span {
  display: grid;
  gap: 3px;
}

.article-picks strong {
  line-height: 1.26;
}

.article-picks small {
  color: rgba(21, 23, 19, 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.article-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.article-actions a:hover {
  background: var(--rust);
}

.service-detail-hero {
  min-height: 390px;
  display: grid;
  align-items: end;
  padding: 60px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.88), rgba(5, 6, 5, 0.42)),
    url("assets/images/product-pack.webp") center / cover;
  color: var(--paper);
  border-radius: 8px;
}

.service-detail-hero h1,
.service-detail-hero .eyebrow {
  color: var(--paper);
}

.service-detail-hero p:not(.eyebrow) {
  color: rgba(246, 242, 234, 0.72);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.service-detail-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.service-detail-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.service-detail-card p {
  margin: 0;
  color: rgba(21, 23, 19, 0.66);
}

.service-detail-card ol {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding-left: 20px;
  color: rgba(21, 23, 19, 0.74);
  font-size: 0.9rem;
}

.complete-main {
  padding-top: 52px;
}

.complete-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 28px;
  align-items: stretch;
}

.complete-confirmation,
.complete-summary-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 23, 19, 0.11);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.complete-confirmation {
  min-height: 640px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 56px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.86), rgba(5, 6, 5, 0.32)),
    url("assets/images/hero-alpine-camp.webp") center / cover;
  color: var(--paper);
}

.complete-confirmation .eyebrow,
.complete-confirmation h1 {
  color: var(--paper);
}

.complete-confirmation h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.complete-confirmation p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(246, 242, 234, 0.78);
  font-size: 1.02rem;
}

.complete-check {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--moss);
  border-radius: 50%;
}

.complete-check svg {
  width: 30px;
  height: 30px;
  stroke-width: 3;
}

.complete-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.complete-secondary {
  background: rgba(246, 242, 234, 0.16);
  color: var(--paper);
  border: 1px solid rgba(246, 242, 234, 0.36);
}

.complete-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.complete-timeline div {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 2px;
  padding: 14px;
  background: rgba(246, 242, 234, 0.12);
  border: 1px solid rgba(246, 242, 234, 0.18);
  border-radius: 8px;
}

.complete-timeline .is-current {
  background: rgba(246, 242, 234, 0.9);
  color: var(--ink);
}

.complete-timeline span,
.complete-timeline small {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.complete-timeline small {
  color: inherit;
  opacity: 0.68;
}

.complete-summary-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.complete-summary-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.complete-summary-head h2 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.complete-summary-head > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  background: rgba(82, 99, 72, 0.12);
  color: var(--moss);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.complete-meta {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 0;
  border-top: var(--border);
  border-bottom: var(--border);
}

.complete-meta div,
.complete-total div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.complete-meta dt,
.complete-total span {
  color: rgba(21, 23, 19, 0.56);
  font-size: 0.82rem;
  font-weight: 800;
}

.complete-meta dd {
  margin: 0;
  color: rgba(21, 23, 19, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.complete-items {
  display: grid;
  gap: 12px;
}

.complete-line {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(246, 242, 234, 0.58);
  border: 1px solid rgba(21, 23, 19, 0.08);
  border-radius: 8px;
}

.complete-line img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}

.complete-line h3 {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.28;
}

.complete-line p {
  margin: 3px 0 0;
  color: rgba(21, 23, 19, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.complete-line strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  white-space: nowrap;
}

.complete-total {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.complete-total strong {
  font-family: "Inter", system-ui, sans-serif;
}

.complete-total .grand-total {
  align-items: baseline;
  padding-top: 12px;
  border-top: var(--border);
}

.complete-total .grand-total span {
  color: var(--ink);
  font-size: 1rem;
}

.complete-total .grand-total strong {
  color: var(--ink);
  font-size: 1.55rem;
}

.complete-note {
  margin: 0;
  padding: 14px;
  background: rgba(142, 178, 198, 0.16);
  border-left: 3px solid var(--glacier);
  color: rgba(21, 23, 19, 0.68);
  font-size: 0.88rem;
}

.detail-page .site-footer {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-kit {
    max-width: 520px;
  }

  .trip-finder-head {
    grid-template-columns: 1fr;
  }

  .trip-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trip-options button {
    min-height: 164px;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .service-grid,
  .related-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid,
  .field-guide,
  .materials-lab,
  .journal-signup,
  .editorial-feature,
  .complete-shell,
  .product-detail-hero,
  .page-hero,
  .material-page-hero,
  .detail-story-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .detail-gallery,
  .article-nav {
    position: static;
  }

  .detail-gallery {
    min-height: 560px;
  }

  .article-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .materials-image {
    min-height: 420px;
    border-radius: 8px 8px 0 0;
  }

  .materials-copy {
    border-radius: 0 0 8px 8px;
  }

  .feature-collage {
    min-height: 470px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-meta {
    flex-wrap: wrap;
  }

  .quick-view {
    grid-template-columns: 1fr;
    grid-template-rows: 42svh 1fr;
    overflow-y: auto;
  }

  .quick-media {
    min-height: 42svh;
  }

  .quick-body {
    align-content: start;
  }

  .guide-media {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .topline {
    min-height: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 12px;
    overflow: hidden;
    padding: 8px 12px;
    white-space: normal;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .topline span {
    white-space: nowrap;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .mobile-nav {
    top: 66px;
  }

  .brand-text,
  .cart-button span {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero picture img {
    object-position: 67% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, 0.9) 0%, rgba(5, 6, 5, 0.48) 66%, rgba(5, 6, 5, 0.08) 100%),
      linear-gradient(0deg, rgba(5, 6, 5, 0.74) 0%, rgba(5, 6, 5, 0) 48%);
  }

  .hero-inner {
    min-width: 0;
    gap: 22px;
    padding: 72px 18px 38px;
  }

  .hero-kit {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(246, 242, 234, 0.18), rgba(246, 242, 234, 0.08)),
      rgba(5, 6, 5, 0.2);
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-kit h2 {
    margin-bottom: 10px;
    font-size: 1.12rem;
  }

  .hero-kit p {
    display: none;
  }

  .kit-list {
    display: flex;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 1px;
    scrollbar-width: none;
  }

  .kit-list::-webkit-scrollbar {
    display: none;
  }

  .kit-list a {
    flex: 0 0 148px;
    min-height: 56px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 8px 10px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: block;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-band,
  .collections,
  .services,
  .journal-signup,
  .field-guide,
  .materials-lab,
  .editorial-feature,
  .detail-main {
    padding: 56px 18px;
  }

  .product-detail-hero {
    gap: 18px;
  }

  .detail-gallery {
    min-height: 430px;
  }

  .detail-buy-panel {
    padding: 24px;
  }

  .detail-buy-panel h1 {
    font-size: 2.1rem;
  }

  .detail-buy-panel .quick-specs {
    grid-template-columns: 1fr;
  }

  .detail-option-grid,
  .detail-sub-actions,
  .detail-spec-table {
    grid-template-columns: 1fr;
  }

  .detail-story-grid {
    margin-top: 18px;
  }

  .detail-story-block,
  .article-block,
  .service-detail-card {
    padding: 24px;
  }

  .detail-story-block h2,
  .article-block h2 {
    font-size: 1.48rem;
  }

  .related-section {
    padding-top: 54px;
  }

  .page-hero {
    gap: 22px;
    padding-bottom: 34px;
  }

  .page-hero-copy h1,
  .service-detail-hero h1 {
    font-size: 2.25rem;
  }

  .page-hero-image {
    aspect-ratio: 3 / 2;
  }

  .article-layout {
    gap: 20px;
    padding-top: 30px;
  }

  .article-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .article-nav::-webkit-scrollbar {
    display: none;
  }

  .article-nav a {
    justify-content: center;
    white-space: nowrap;
  }

  .article-picks {
    grid-template-columns: 1fr;
  }

  .service-detail-hero {
    min-height: 340px;
    padding: 32px 24px;
  }

  .complete-main {
    padding: 56px 18px;
  }

  .complete-confirmation,
  .complete-summary-panel {
    padding: 24px;
  }

  .complete-confirmation {
    min-height: 580px;
  }

  .complete-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .complete-line {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .complete-line strong {
    grid-column: 2;
  }

  .materials-lab {
    padding-top: 0;
  }

  .materials-image {
    min-height: 300px;
  }

  .materials-copy {
    padding: 26px;
  }

  .materials-checks {
    grid-template-columns: 1fr;
  }

  .trip-finder {
    padding: 0 18px;
    margin-top: -36px;
  }

  .trip-finder-head {
    padding: 22px;
  }

  .trip-finder-head h2 {
    font-size: 1.65rem;
  }

  .trip-options {
    grid-template-columns: 1fr;
  }

  .trip-options button {
    min-height: 148px;
  }

  .trip-options button > span {
    margin-top: 30px;
    max-width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .guide-copy h2,
  .journal-signup h2 {
    font-size: 1.9rem;
  }

  .shop-toolbar {
    top: 66px;
    border-radius: 0;
    margin-inline: -18px;
    border-left: 0;
    border-right: 0;
  }

  .filter-group {
    width: 100%;
    padding-bottom: 2px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .product-grid,
  .service-grid,
  .related-grid,
  .service-detail-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 24px;
  }

  .feature-copy h2 {
    font-size: 1.75rem;
  }

  .feature-metrics {
    grid-template-columns: 1fr;
  }

  .feature-collage {
    min-height: 360px;
  }

  .collage-main {
    inset: 0 54px 0 0;
    width: calc(100% - 54px);
    height: 100%;
  }

  .collage-small {
    width: 126px;
    height: 126px;
    border-width: 6px;
  }

  .quick-body {
    padding: 28px 18px 24px;
  }

  .quick-specs {
    grid-template-columns: 1fr;
  }

  .collection-tile {
    min-height: 300px;
  }

  .guide-media {
    min-height: 320px;
  }

  .journal-signup {
    border-radius: 0;
    margin-bottom: 0;
  }

  .site-footer {
    padding: 28px 18px 36px;
  }

  .cart-drawer {
    width: 100vw;
  }
}

@media (max-width: 430px) {
  .header-actions {
    gap: 5px;
  }

  .icon-button,
  .cart-button {
    width: 40px;
    min-height: 40px;
  }

  .cart-button {
    padding: 0;
    justify-content: center;
  }

  .cart-button strong {
    position: absolute;
    transform: translate(15px, -14px);
  }

  .hero h1 {
    font-size: 2.48rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats dt {
    font-size: 1.35rem;
  }
}
