:root {
  --bg: #f3eee5;
  --page: #ffffff;
  --card: #ffffff;
  --text: #292431;
  --muted: rgba(46, 42, 57, 0.72);
  --line: rgba(46, 42, 57, 0.12);
  --brown: #4a302b;
  --brown-hover: #38211d;
  --footer: #f2ece2;
  --shadow: 0 4px 14px rgba(41, 36, 49, 0.12);
  --radius: 8px;
  --container: 1290px;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--page);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}
main {
  flex: 1 0 auto;
}
.site-header,
.site-footer,
.copyright {
  flex-shrink: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 50;
  background: var(--brown);
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 0 clamp(18px, 5vw, 52px);
  background: var(--bg);
}
.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  min-height: 76px;
}
.brand img {
  width: 176px;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}
.desktop-nav,
.icon-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 18px);
}
.desktop-nav a {
  color: var(--text);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}
.icon-nav {
  justify-self: end;
  gap: 18px;
}
.icon-nav svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.desktop-nav a,
.icon-nav a,
.mobile-nav a,
.button,
.product-contact,
.product-card,
.category-card,
.thumbs button {
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.desktop-nav a:hover,
.icon-nav a:hover,
.mobile-nav a:hover { opacity: 0.68; }
.button:active,
.thumbs button:active,
.filter-tabs button:active { transform: scale(0.98); }

.menu-button {
  display: none;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}
.mobile-nav {
  display: none;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-banner img {
  width: 100%;
  height: min(610px, 68vw);
  min-height: 360px;
  object-fit: cover;
}
.hero-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: auto;
  width: min(92%, 520px);
  height: fit-content;
  text-align: center;
  color: #1f1a20;
}
.hero-panel h1,
.wide-feature h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
}
.hero-panel p,
.wide-feature p {
  max-width: 520px;
  margin: 0 auto 22px;
  color: rgba(31, 26, 32, 0.74);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  border: 0;
  border-radius: 6px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
}
.button.dark {
  background: var(--brown);
  color: #fff;
}
.button.dark:hover {
  background: var(--brown-hover);
  transform: translateY(-1px);
}

.section {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section h2,
.category-series h2,
.page-heading h1,
.contact-page h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.best-sellers {
  padding: 34px 0 46px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  animation: rise 420ms ease both;
  animation-delay: var(--delay, 0ms);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 24px rgba(41, 36, 49, 0.16);
}
.product-image {
  display: block;
  background: #f7f4ef;
}
.product-image img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
}
.product-copy {
  padding: 16px 16px 18px;
}
.product-copy a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.24;
}
.product-price {
  display: block;
  margin: 0 0 9px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}
.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}
.sku-count {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
}
.product-copy .product-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  margin: 14px 0 0;
  border-radius: 5px;
  background: var(--brown);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.product-copy .product-contact:hover {
  background: var(--brown-hover);
  transform: translateY(-1px);
}
.product-copy .product-contact:active {
  transform: scale(0.98);
}

.wide-feature {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  place-items: center;
  margin: 0 auto 42px;
  text-align: center;
  color: #1f1a20;
  background: var(--bg);
}
.wide-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wide-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 240, 231, 0.32);
}
.wide-feature > div {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
}

.category-series {
  padding-bottom: 66px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}
.category-card:hover { transform: translateY(-2px); }
.category-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.42));
}
.category-card span,
.category-card em {
  position: absolute;
  z-index: 1;
  left: 20px;
}
.category-card span {
  bottom: 58px;
  font-size: 14px;
  font-weight: 800;
}
.category-card em {
  bottom: 18px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  padding: 0 18px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.product-strip {
  padding: 0 0 72px;
}
.strip-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.strip-heading h2 {
  margin: 0;
}
.strip-controls {
  display: flex;
  gap: 8px;
}
.strip-controls button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.strip-controls button:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-1px);
}
.strip-controls button:active {
  transform: scale(0.96);
}
.strip-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.strip-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  -webkit-overflow-scrolling: touch;
}
.strip-viewport::-webkit-scrollbar {
  height: 0;
}
.strip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 16px;
  min-width: max-content;
  padding: 2px 2px 14px;
}
.strip-card {
  width: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  animation: rise 420ms ease both;
  animation-delay: var(--delay, 0ms);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.strip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 24px rgba(41, 36, 49, 0.16);
}
.strip-card img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  background: #f7f4ef;
}
.strip-card span {
  display: block;
  min-height: 48px;
  padding: 13px 14px 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.strip-card strong {
  display: block;
  padding: 0 14px 14px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.page-heading,
.filters,
.detail,
.contact-page,
.search-page,
.login-page {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.page-heading {
  padding: 52px 0 16px;
}
.page-heading p,
.contact-page p,
.detail-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.filters {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 28px;
}
.filter-tabs {
  display: flex;
  gap: 8px;
}
.filter-tabs button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  padding: 10px 16px;
  font-weight: 700;
}
.filter-tabs button.is-active,
.filter-tabs button:hover {
  background: var(--brown);
  color: #fff;
}
.filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.filters input,
.contact-form input,
.login-form input,
.search-box input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  outline: 0;
}
.filters input {
  min-width: 290px;
  height: 43px;
  padding: 0 12px;
}
.filters input:focus,
.contact-form input:focus,
.login-form input:focus,
.search-box input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(74, 48, 43, 0.12);
}
.catalog-grid {
  padding-bottom: 64px;
}
.empty-state {
  color: var(--muted);
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 54px 0 48px;
}
.main-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: #f7f4ef;
  box-shadow: var(--shadow);
}
.main-photo img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.thumbs button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #fff;
  padding: 0;
}
.thumbs button.is-active,
.thumbs button:hover {
  border-color: var(--brown);
}
.thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.back-link,
.detail-category {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.back-link:hover { text-decoration: underline; }
.detail-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.detail-price {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1;
}
.detail-contact {
  margin-top: 2px;
}
.specs {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}
.specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  background: #fff;
  padding: 15px 0;
}
.specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.specs dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}
.rating-panel {
  display: grid;
  gap: 15px;
  margin: 24px 0 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.rating-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.rating-summary strong {
  font-size: 28px;
  line-height: 1;
}
.rating-summary small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.stars {
  position: relative;
  display: inline-block;
  color: rgba(74, 48, 43, 0.22);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}
.stars span {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: var(--brown);
  white-space: nowrap;
}
.rating-bars {
  display: grid;
  gap: 8px;
}
.rating-row {
  display: grid;
  grid-template-columns: 18px 1fr 38px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.rating-row meter {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(74, 48, 43, 0.12);
}
.rating-row meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: rgba(74, 48, 43, 0.12);
}
.rating-row meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: var(--brown);
}
.rating-row meter::-moz-meter-bar {
  border-radius: 999px;
  background: var(--brown);
}
.rating-row em {
  font-style: normal;
  text-align: right;
}
.sku-panel {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}
.sku-panel h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}
.sku-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sku-options button {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 13px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.sku-options button:hover {
  border-color: rgba(74, 48, 43, 0.42);
  transform: translateY(-1px);
}
.sku-options button.is-selected {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(74, 48, 43, 0.11);
}
.sku-options button:focus-visible {
  outline: 3px solid rgba(74, 48, 43, 0.22);
  outline-offset: 2px;
}
.sku-swatch {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(46, 42, 57, 0.18);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}
.sku-option-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.sku-option-copy strong,
.sku-option-copy small,
.sku-option-copy em {
  overflow-wrap: anywhere;
}
.sku-option-copy strong {
  font-size: 12px;
  line-height: 1.25;
}
.sku-option-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}
.sku-option-copy em {
  color: rgba(46, 42, 57, 0.56);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.sku-summary {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.dimension-panel {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}
.dimension-panel h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.dimension-grid div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 15px 16px;
  background: #fff;
}
.dimension-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.dimension-grid strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.dimension-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}
.related-products {
  padding-bottom: 76px;
}
.related-products h2 {
  margin-bottom: 22px;
}
.review-section {
  padding-bottom: 64px;
}
.review-section h2 {
  margin-bottom: 20px;
}
.review-section .rating-panel {
  max-width: 720px;
  margin: 0;
}

.search-page {
  padding: 58px 0 76px;
}
.search-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}
.search-head h1,
.login-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.search-head p,
.login-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.search-box {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.search-box input {
  height: 52px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
}
.search-meta {
  min-height: 22px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.search-grid {
  padding-bottom: 10px;
}

.login-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  padding: 64px 0 84px;
}
.eyebrow {
  color: var(--brown) !important;
  font-size: 12px !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.login-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 2px;
}
.auth-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.auth-tabs button:hover {
  border-color: rgba(74, 48, 43, 0.42);
}
.auth-tabs button.is-active {
  border-color: var(--brown);
  background: var(--brown);
  color: #fff;
}
.auth-tabs button:active {
  transform: scale(0.98);
}
.login-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}
.login-form input {
  height: 45px;
  padding: 0 12px;
}
.form-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.form-link:hover {
  color: var(--text);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 6vw, 90px);
  padding: 62px 0 82px;
}
.contact-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}
.contact-info-panel {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.contact-info-panel h2 {
  margin: 0 0 18px;
  font-size: 15px;
  letter-spacing: 0;
}
.contact-info-list {
  display: grid;
  gap: 13px;
  margin: 0;
  font-style: normal;
}
.contact-info-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.contact-info-list strong {
  display: block;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}
.contact-form input,
.contact-form select {
  height: 44px;
  padding: 0 12px;
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  padding: 12px;
}
.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.map-section,
.content-page {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}
.map-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding: 0 0 86px;
}
.map-copy h2,
.content-page h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 54px);
}
.map-copy p,
.content-page p,
.content-page li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.map-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(28deg, transparent 0 44%, rgba(139, 161, 177, 0.34) 44% 47%, transparent 47%),
    linear-gradient(112deg, transparent 0 38%, rgba(139, 161, 177, 0.26) 38% 41%, transparent 41%),
    linear-gradient(0deg, transparent 0 24%, rgba(255, 255, 255, 0.75) 24% 27%, transparent 27%),
    linear-gradient(90deg, transparent 0 31%, rgba(255, 255, 255, 0.7) 31% 34%, transparent 34%),
    linear-gradient(18deg, transparent 0 62%, rgba(255, 255, 255, 0.62) 62% 65%, transparent 65%),
    #e8e2d9;
  box-shadow: var(--shadow);
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 52% 45%, #c94538 0 9px, rgba(201, 69, 56, 0.22) 10px 18px, transparent 19px),
    linear-gradient(90deg, rgba(132, 169, 144, 0.16), rgba(132, 169, 144, 0) 38%),
    linear-gradient(180deg, rgba(132, 169, 144, 0.16), rgba(132, 169, 144, 0) 44%);
  pointer-events: none;
}
.map-card iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 390px;
  min-height: 390px;
  border: 0;
}
.map-fallback {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: 520px;
  padding: 14px 16px;
  border: 1px solid rgba(46, 42, 57, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}
.map-fallback strong {
  font-size: 12px;
  font-weight: 800;
}
.map-fallback span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.map-fallback a {
  width: fit-content;
  margin-top: 4px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-page {
  padding: 62px 0 88px;
}
.content-page article {
  max-width: 860px;
}
.policy-page article {
  max-width: 820px;
}
.policy-eyebrow {
  margin: 0 0 10px !important;
  color: var(--brown) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.policy-meta {
  margin: -2px 0 22px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 700;
}
.content-page h2 {
  margin: 36px 0 10px;
  font-size: 20px;
}
.content-page h3 {
  margin: 24px 0 10px;
  font-size: 14px;
  font-weight: 800;
}
.content-page ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}
.about-hero,
.about-story,
.about-values,
.about-process,
.about-contact-band {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: 62px 0 66px;
}
.about-hero-copy h1 {
  margin: 0 0 20px;
  max-width: 620px;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.96;
}
.about-hero-copy p:not(.policy-eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.about-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--footer);
  box-shadow: var(--shadow);
}
.about-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: 16px 0 76px;
}
.about-story article {
  max-width: 760px;
}
.about-story h2,
.about-values h2,
.about-process h2,
.about-contact-band h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
}
.about-story p,
.section-heading-tight p,
.value-grid p,
.about-process span,
.about-contact-band p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.about-facts {
  display: grid;
  border-top: 1px solid var(--line);
}
.about-facts div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.about-facts span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.about-facts strong {
  font-size: 15px;
  line-height: 1.35;
}
.about-values {
  padding: 0 0 76px;
}
.section-heading-tight {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-bottom: 26px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-grid div {
  min-height: 230px;
  padding: 24px;
  background: #fff;
}
.value-grid h3 {
  margin: 0 0 12px;
  font-size: 16px;
}
.about-process {
  padding: 0 0 74px;
}
.about-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.about-process li {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px 22px 0 0;
}
.about-process strong {
  font-size: 15px;
}
.about-contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 86px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-contact-band p {
  margin: 0;
  max-width: 640px;
}
.about-contact-band .button {
  flex: 0 0 auto;
}
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}
.policy-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.policy-nav a:hover {
  border-color: rgba(91, 54, 46, 0.28);
  background: var(--footer);
}
.policy-nav a:active {
  transform: scale(0.98);
}
.policy-block {
  padding-top: 26px;
}
.policy-block + .policy-block {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.policy-page h2 {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.policy-page h1 + p {
  max-width: 680px;
}
.policy-company-info {
  display: grid;
  gap: 8px;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--footer);
}
.policy-company-info h2 {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  font-size: 20px;
}
.policy-company-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.policy-company-info strong {
  color: var(--text);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(360px, 1.55fr) 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  background: var(--footer);
  padding: 58px max(24px, calc((100vw - var(--container)) / 2)) 56px;
}
.site-footer h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
}
.site-footer p,
.site-footer a,
.footer-info span {
  display: block;
  max-width: 460px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.footer-company {
  color: var(--text) !important;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-info {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  font-style: normal;
}
.footer-info span {
  margin-bottom: 0;
}
.footer-info strong {
  display: block;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}
.site-footer a:hover { color: var(--text); }
.footer-logo {
  width: 178px;
  height: auto;
  margin: -18px 0 12px;
}
.copyright {
  background: var(--footer);
  border-top: 1px solid rgba(46, 42, 57, 0.08);
  color: var(--muted);
  padding: 20px 24px;
  text-align: center;
  font-size: 11px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail, .contact-page { grid-template-columns: 1fr; }
  .map-section { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-header {
    min-height: 58px;
    grid-template-columns: 40px 1fr 70px;
    padding: 0 14px;
  }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .icon-nav { gap: 12px; }
  .icon-nav svg { width: 19px; height: 19px; }
  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    display: grid;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 58px;
    grid-template-columns: 40px 1fr 70px;
    padding: 0 14px;
  }
  .brand {
    width: 118px;
    min-height: 50px;
  }
  .brand img {
    width: 108px;
    max-height: 52px;
  }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .icon-nav { gap: 12px; }
  .icon-nav svg { width: 19px; height: 19px; }
  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    display: grid;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-nav a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }
  .hero-banner img {
    height: 360px;
    min-height: 360px;
  }
  .hero-panel {
    width: min(86%, 360px);
  }
  .hero-panel h1 {
    font-size: 24px;
  }
  .hero-panel p {
    font-size: 12px;
  }
  .section {
    width: min(calc(100% - 22px), var(--container));
  }
  .best-sellers {
    padding-top: 28px;
  }
  .section h2,
  .category-series h2,
  .page-heading h1,
  .contact-page h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .product-copy {
    padding: 12px 12px 14px;
  }
  .product-copy a {
    font-size: 12px;
  }
  .product-copy p {
    font-size: 11px;
  }
  .wide-feature {
    min-height: 360px;
  }
  .wide-feature h2 {
    font-size: 24px;
  }
  .wide-feature p {
    font-size: 12px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-card,
  .category-card img {
    min-height: 265px;
  }
  .product-strip {
    padding-bottom: 52px;
  }
  .strip-heading {
    align-items: flex-end;
    margin-bottom: 16px;
  }
  .strip-controls button {
    width: 36px;
    height: 36px;
  }
  .strip-track {
    grid-auto-columns: 176px;
    gap: 12px;
  }
  .strip-card {
    width: 176px;
  }
  .strip-card span {
    min-height: 58px;
    padding: 12px;
    font-size: 11px;
  }
  .filters {
    align-items: stretch;
    flex-direction: column;
    width: min(calc(100% - 22px), var(--container));
  }
  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .filters input {
    min-width: 0;
  }
  .page-heading,
  .detail,
  .contact-page,
  .map-section,
  .content-page,
  .about-hero,
  .about-story,
  .about-values,
  .about-process,
  .about-contact-band,
  .search-page,
  .login-page {
    width: min(calc(100% - 22px), var(--container));
  }
  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 38px 0 48px;
  }
  .about-hero-copy h1 {
    font-size: 34px;
  }
  .about-story,
  .about-values,
  .about-process {
    padding-bottom: 52px;
  }
  .value-grid,
  .about-process ol {
    grid-template-columns: 1fr;
  }
  .value-grid div {
    min-height: 0;
    padding: 20px;
  }
  .about-process li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .about-contact-band {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 52px;
  }
  .about-contact-band .button {
    width: 100%;
  }
  .detail {
    padding-top: 34px;
  }
  .thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .rating-panel {
    padding: 16px;
  }
  .rating-row {
    grid-template-columns: 16px 1fr 32px;
    gap: 8px;
  }
  .sku-options {
    grid-template-columns: 1fr;
  }
  .dimension-grid {
    grid-template-columns: 1fr;
  }
  .related-products {
    padding-bottom: 54px;
  }
  .search-page {
    padding: 38px 0 56px;
  }
  .login-page {
    grid-template-columns: 1fr;
    padding: 42px 0 62px;
  }
  .login-form {
    padding: 22px;
  }
  .map-card,
  .map-card iframe {
    height: 320px;
    min-height: 320px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 22px;
  }
}
