:root {
  --paper: #f7f7f4;
  --surface: #ffffff;
  --ink: #181817;
  --muted: #69675f;
  --line: #deddd6;
  --gold: #967327;
  --sage: #686b5a;
  --rose: #ae7f73;
  --soft-sage: #e7e9e1;
  --soft-rose: #efe3df;
  --shadow: 0 14px 36px rgba(24, 24, 23, 0.08);
  --content: 1240px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; }

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

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

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

.container {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.header-actions a {
  position: relative;
  font-size: 13px;
  color: #34332f;
}

.desktop-nav a::after,
.header-actions a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right 160ms ease;
}

.desktop-nav a:hover::after,
.header-actions a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.brand {
  display: flex;
  width: 232px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-actions {
  justify-content: flex-end;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}

.mobile-contact {
  display: none;
}

.menu-button svg,
.mobile-contact svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button .icon-close { display: none; }
.menu-button.open .icon-menu { display: none; }
.menu-button.open .icon-close { display: block; }

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 106px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #32332c;
  background-position: center 28%;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 72px 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow { color: #f4e4bd; }

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

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

.hero h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 58px;
  line-height: 1.04;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: var(--ink);
  background: transparent;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: #fff;
  background: transparent;
}

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

.button-ghost-light:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #aaa89f;
}

.button-secondary:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

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

.trust-item {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 26px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child { border-left: 1px solid var(--line); }

.trust-item strong {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.contact-proof-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-proof-card h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.contact-proof-card p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-proof-lines {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-proof-lines div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-proof-lines div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-proof-lines span,
.contact-proof-steps h4 {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-proof-lines strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  word-break: break-word;
}

.contact-proof-steps {
  display: grid;
  gap: 18px;
}

.contact-proof-steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-proof-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}

.contact-proof-steps h4 {
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-proof-steps p {
  margin-bottom: 0;
}

.section {
  padding: 84px 0;
}

.section-white { background: var(--surface); }
.section-sage { background: var(--soft-sage); }
.section-rose { background: var(--soft-rose); }
.section-dark { color: #fff; background: var(--ink); }

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

.section-head h2,
.page-intro h1 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.1;
}

.section-head p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 13px;
}

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

.category-grid-4 { grid-template-columns: repeat(4, 1fr); }
.category-grid-4 .category-card { min-height: 410px; }

.category-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 4px;
  background: #d9d8d1;
}

.category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 320ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  background: rgba(15, 15, 14, 0.42);
}

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

.category-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}

.category-copy h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.category-copy span { font-size: 12px; }

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

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

.product-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: #ecebe6;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  text-transform: uppercase;
}

.product-card-copy {
  padding: 14px 2px 0;
}

.product-card-copy h3 {
  margin-bottom: 7px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.step {
  min-height: 210px;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.step:last-child { border-right: 0; }

.step-number {
  display: block;
  margin-bottom: 42px;
  color: #d9c89f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 580px;
  background: var(--surface);
}

.story-media { min-height: 480px; }

.story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.story-copy h2 {
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.1;
}

.story-copy p {
  color: var(--muted);
  line-height: 1.75;
}

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

.journal-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.journal-card:nth-child(2) { background: var(--soft-sage); }
.journal-card:nth-child(3) { background: var(--soft-rose); }

.journal-card span {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 42px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.journal-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.newsletter h2 {
  margin-bottom: 8px;
  font-size: 38px;
}

.newsletter p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
}

.newsletter-action {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.newsletter-action span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.not-found { min-height: 56vh; }
.not-found .button-row { margin-top: 30px; }

.button-paypal-pending {
  color: #5a6470;
  background: #edf0f3;
  border-color: #cbd1d7;
  cursor: not-allowed;
}

.contact-panel .button-paypal-pending {
  display: flex;
  margin-top: 10px;
}

.button-paypal-link {
  color: #111;
  background: #ffc439;
  border-color: #ffc439;
}

.button-paypal-link:hover {
  color: #111;
  background: #f5b800;
  border-color: #f5b800;
}

.contact-panel .button-paypal-link {
  display: flex;
  margin-top: 10px;
}

.site-footer {
  color: #d5d3cc;
  background: #10100f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding: 64px 0;
}

.footer-brand strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.footer-brand p {
  max-width: 310px;
  color: #96938b;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 0 0 12px;
  color: #aaa79f;
  font-size: 13px;
}

.footer-column a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px;
  border-top: 1px solid #2d2d2a;
  color: #77746e;
  font-size: 11px;
}

.page-intro {
  padding: 74px 0 44px;
  border-bottom: 1px solid var(--line);
}

.page-intro p {
  max-width: 650px;
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.content-block {
  min-height: 220px;
  padding: 30px;
  background: var(--surface);
}

.content-block h2,
.content-block h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.content-block p,
.content-block li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 48px;
  padding: 54px 0 80px;
}

.product-gallery {
  position: sticky;
  top: 110px;
  align-self: start;
}

.product-main-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: #e9e8e2;
}

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

.gallery-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.product-info { padding-top: 10px; }

.breadcrumbs {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
}

.product-info h1 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.1;
}

.product-price {
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.product-description {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 26px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-fact {
  padding: 14px;
  background: var(--surface);
}

.product-fact span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.product-fact strong { font-size: 13px; }

.product-actions {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

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

.purchase-trust {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--soft-sage);
}

.purchase-trust p {
  margin-bottom: 9px;
  color: #44463b;
  font-size: 12px;
  line-height: 1.5;
}

.purchase-trust p:last-child { margin-bottom: 0; }

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

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

summary {
  padding: 18px 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

details p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-panel {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-panel h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.contact-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.faq-list details {
  background: var(--surface);
}

.faq-list summary,
.faq-list details p { padding-left: 20px; padding-right: 20px; }

.catalog-section {
  padding: 34px 0 88px;
}

.catalog-toolbar {
  position: sticky;
  top: 106px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 2fr) minmax(190px, 0.65fr);
  align-items: end;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 244, 0.96);
  backdrop-filter: blur(12px);
}

.catalog-search,
.catalog-sort {
  display: grid;
  gap: 8px;
}

.catalog-search > span,
.catalog-sort > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-search input,
.catalog-sort select {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #bdbbb2;
  border-radius: 3px;
  color: var(--ink);
  background: var(--surface);
  font-size: 13px;
}

.catalog-search input:focus,
.catalog-sort select:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(150, 115, 39, 0.16);
  outline-offset: 1px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-filters button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #c9c7bf;
  border-radius: 3px;
  color: #45443f;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.catalog-filters button span {
  margin-left: 4px;
  color: var(--muted);
}

.catalog-filters button:hover,
.catalog-filters button.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.catalog-filters button.active span { color: #d4d1c7; }

.catalog-summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 12px;
}

.catalog-grid { min-height: 380px; }

.catalog-grid .product-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.catalog-empty {
  padding: 70px 24px;
  text-align: center;
}

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

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

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-rail article {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

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

.process-rail span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.process-rail h3 {
  margin-bottom: 9px;
  font-size: 15px;
}

.process-rail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.supply-link { margin-top: 24px; }

.supply-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.supply-media {
  margin: 0;
  background: var(--surface);
}

.supply-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.supply-media figcaption {
  display: grid;
  gap: 5px;
  padding: 14px 0 0;
}

.supply-media figcaption strong { font-size: 13px; }
.supply-media figcaption span { color: var(--muted); font-size: 11px; }

@media (max-width: 1000px) {
  .desktop-nav { gap: 14px; }
  .header-actions a:not(:last-child) { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: 1fr 1fr; gap: 28px; }
  .story-copy { padding: 42px; }
  .category-grid,
  .category-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .catalog-toolbar { grid-template-columns: 1fr 1fr; }
  .catalog-filters { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 760px) {
  .container { width: min(var(--content), calc(100% - 28px)); }
  .header-row { min-height: 62px; grid-template-columns: 42px 1fr 42px; gap: 8px; }
  .brand { width: 100%; height: 36px; min-width: 0; }
  .brand img { width: min(100%, 188px); }
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .mobile-contact { display: flex; align-items: center; justify-content: center; font-size: 19px; }
  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 45;
    height: calc(100dvh - 62px);
    overflow-y: auto;
    padding: 26px 22px;
    background: var(--surface);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
  .hero { min-height: 650px; background-position: 58% center; }
  .hero-content { padding: 58px 0; }
  .hero h1 { max-width: 350px; font-size: 40px; }
  .hero-copy { max-width: 340px; font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 100px; padding: 16px; }
  .trust-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-proof-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 26px; }
  .section-head h2, .page-intro h1 { font-size: 34px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 380px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 10px; }
  .product-card-copy h3 { white-space: normal; min-height: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step { min-height: 190px; border-bottom: 1px solid rgba(255,255,255,.22); }
  .step:nth-child(2) { border-right: 0; }
  .step-number { margin-bottom: 28px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { padding: 36px 24px; }
  .story-copy h2 { font-size: 34px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card { min-height: 220px; }
  .newsletter { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-action .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .content-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; padding-top: 24px; }
  .product-gallery { position: static; }
  .product-info h1 { font-size: 34px; }
  .contact-layout { grid-template-columns: 1fr; gap: 16px; }
  .contact-proof-card { padding: 28px 24px; }
  .catalog-section { padding-top: 18px; }
  .catalog-toolbar { position: static; grid-template-columns: 1fr; gap: 14px; padding-top: 0; }
  .catalog-filters { grid-column: auto; grid-row: auto; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
  .catalog-filters button { flex: 0 0 auto; }
  .catalog-summary { min-height: 44px; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .process-rail article:nth-child(2) { border-right: 0; }
  .process-rail article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .supply-media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 36px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card-meta { flex-direction: column; gap: 4px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .process-rail { grid-template-columns: 1fr; }
  .process-rail article { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-rail article:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process-rail article:last-child { border-bottom: 0; }
  .process-rail span { margin-bottom: 22px; }
}

/* B2B wholesale optimization */
.wholesale-hero .hero-content {
  max-width: 740px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--surface);
}

.business-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.business-grid strong {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.business-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.business-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card-inquiry {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.competitor-grid,
.price-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.competitor-grid article,
.price-band-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
}

.competitor-grid strong,
.price-band-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.competitor-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.competitor-grid p,
.price-band-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.price-band-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-band-grid h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.catalog-summary strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.direction-split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.direction-split h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0;
}

.direction-split p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.direction-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.direction-list li {
  min-height: 112px;
  padding: 22px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
  }

  .competitor-grid,
  .price-band-grid {
    grid-template-columns: 1fr 1fr;
  }

  .direction-split {
    grid-template-columns: 1fr;
  }

  .business-grid article:nth-child(2) {
    border-right: 0;
  }

  .business-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .contact-proof-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .competitor-grid,
  .price-band-grid {
    grid-template-columns: 1fr;
  }

  .direction-list {
    grid-template-columns: 1fr;
  }

  .direction-list li {
    min-height: 88px;
  }

  .competitor-grid article,
  .price-band-grid article {
    min-height: 170px;
  }

  .business-grid article,
  .business-grid article:nth-child(2) {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-proof-steps article {
    grid-template-columns: 46px 1fr;
  }

  .contact-proof-steps strong {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

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

  .business-grid strong {
    margin-bottom: 24px;
  }

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