:root {
  --ink: #000000;
  --paper: #ffffff;
  --soft: #f8f8f8;
  --muted: #666666;
  --gold: #c48d35;
  --gold-dark: #9b6c23;
  --line: rgba(0, 0, 0, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);
  --success: #137a4a;
  --danger: #b42318;
  --container: 1300px;
  --wide: 1500px;
  --radius: 2px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

:target {
  scroll-margin-top: 190px;
}

[hidden] {
  display: none !important;
}

.container,
.wide-container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.wide-container {
  width: min(100% - 40px, var(--wide));
}

.content-narrow {
  width: min(100% - 40px, 900px);
}

.section {
  padding-block: clamp(76px, 9vw, 120px);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #f0d5aa;
}

.lead {
  color: #292929;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-gold:hover {
  background: #d8a858;
}

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

.button-dark:hover {
  background: var(--gold-dark);
}

.button-outline,
.button-outline-light {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--paper);
}

.button-whatsapp {
  color: #fff;
  background: #138a54;
}

.button-whatsapp:hover {
  background: #0d7043;
}

.button-large {
  width: 100%;
  min-height: 58px;
  font-size: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 24px;
}

.rich-text .contact-actions .button {
  color: var(--ink);
  text-decoration: none;
}

.rich-text .contact-actions .button-whatsapp {
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.announcement {
  position: relative;
  z-index: 102;
  padding: 11px 0;
  color: #fff;
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--paper);
  transition: box-shadow 180ms ease;
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.6fr) minmax(180px, 0.6fr);
  gap: clamp(20px, 4vw, 55px);
  align-items: center;
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
}

.brand-with-logo {
  width: min(100%, 230px);
}

.brand-logo {
  width: auto;
  max-width: 100%;
  height: 78px;
  object-fit: contain;
}

.footer-brand .brand-with-logo {
  width: min(100%, 215px);
  padding: 8px;
  background: var(--paper);
}

.footer-brand .brand-logo {
  height: auto;
  max-height: 94px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
}

.site-search {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 14px 18px;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

.site-search button {
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 20px;
  color: var(--ink);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 750;
}

.header-contact {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}

.header-contact > span:first-child {
  color: #16a261;
  font-size: 1.45rem;
}

.header-contact > span:last-child {
  display: grid;
  line-height: 1.2;
}

.header-contact small {
  color: var(--muted);
  font-size: 0.72rem;
}

.header-contact strong {
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  padding: 10px;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

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

.primary-nav {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
}

.primary-nav ul {
  display: flex;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--gold-dark);
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: none !important;
  width: 240px;
  padding: 12px !important;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 20px;
  content: "";
}

.submenu li a {
  display: block;
  padding: 9px;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: block !important;
}

.nav-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(650px, 78vh, 830px);
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.15)),
    var(--hero-image, radial-gradient(circle at 72% 38%, #775b38, #171513 42%, #020202 76%));
  background-position: center;
  background-size: cover;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  padding-block: clamp(80px, 10vw, 124px);
}

.hero-copy {
  width: min(900px, 78%);
}

.hero-copy h1 {
  max-width: 1000px;
  margin-bottom: 26px;
  color: #fff;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  width: 250px;
  gap: 16px;
  align-items: flex-start;
  border-left: 1px solid var(--gold);
  padding-left: 20px;
}

.hero-note span {
  color: var(--gold);
  font-weight: 800;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
}

.split-heading,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
}

.split-heading h2,
.section-heading h2 {
  margin-bottom: 0;
}

.intro-copy p:not(.lead) {
  margin-bottom: 1.1rem;
}

.intro-copy .text-link {
  margin-top: 0.5rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.section-heading > :last-child {
  flex: 0 0 auto;
}

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

.brand-cloud {
  border-block: 1px solid var(--line);
  padding-block: 42px;
  background: var(--paper);
}

.brand-cloud .eyebrow {
  justify-content: center;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-logo-grid a,
.brand-logo-grid li > div {
  display: grid;
  min-height: 110px;
  place-items: center;
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--soft);
  transition: border-color 180ms ease, transform 180ms ease;
}

.brand-logo-grid a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.brand-logo-grid img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

.collection-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #171717;
}

.collection-image,
.collection-image::after {
  position: absolute;
  inset: 0;
}

.collection-image::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 65%);
  content: "";
}

.collection-image img,
.collection-image .image-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 450ms ease;
  object-fit: cover;
}

.collection-card:hover .collection-image img,
.collection-card:hover .collection-image .image-placeholder {
  transform: scale(1.045);
}

.collection-copy {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.collection-copy h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.collection-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.collection-copy .text-link {
  color: #fff;
}

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

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

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

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f1f1ef;
}

.product-media img,
.product-media .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms ease;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: #fff;
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 24px;
}

.product-card-body .eyebrow {
  margin-bottom: 10px;
  font-size: 0.67rem;
}

.product-card-body h3 {
  min-height: 2.3em;
  margin-bottom: 12px;
}

.rating {
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.rating small {
  color: var(--muted);
  letter-spacing: 0;
}

.product-card-footer {
  display: flex;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.product-card-footer strong {
  color: var(--ink);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
}

.product-card-footer a {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.image-placeholder {
  display: grid;
  min-height: 240px;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 70% 30%, rgba(196, 141, 53, 0.65), transparent 18%),
    linear-gradient(145deg, #36312c, #090909 70%);
}

.image-placeholder span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.editorial-band {
  padding-block: clamp(70px, 9vw, 120px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.editorial-grid,
.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
}

.editorial-media {
  min-height: 520px;
}

.editorial-media img,
.editorial-media .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.editorial-copy h2 {
  color: #fff;
}

.editorial-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
}

.editorial-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.editorial-copy li {
  border-top: 1px solid var(--line-light);
  padding: 15px 0;
  color: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 1.1rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.gallery-controls button:hover {
  color: var(--paper);
  background: var(--ink);
}

.testimonial-gallery {
  display: grid;
  grid-auto-columns: minmax(260px, calc((100% - 48px) / 3));
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  margin: 0;
  padding: 2px 2px 22px;
  list-style: none;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold) var(--soft);
  contain: layout paint;
  overscroll-behavior-inline: contain;
}

.testimonial-gallery li {
  min-width: 0;
  scroll-snap-align: start;
}

.testimonial-gallery figure {
  height: 100%;
  margin: 0;
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--soft);
}

.testimonial-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details div {
  padding-top: 14px;
}

.supplemental-faq {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.supplemental-faq h2 {
  margin-bottom: 8px;
}

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

.post-card {
  min-width: 0;
  background: var(--paper);
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.post-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.45;
}

.post-media img,
.post-media .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.post-body {
  padding: 25px;
}

.post-body time,
.article-meta {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.post-body h3 {
  margin: 10px 0 14px;
}

.benefit-strip {
  padding: 44px 0;
  background: #ececea;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit > span {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.benefit h2 {
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.benefit p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer {
  padding-top: 82px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 0.8fr;
  gap: clamp(32px, 5vw, 76px);
}

.brand-light,
.brand-light .brand-copy small {
  color: #fff;
}

.brand-light .brand-mark {
  border-color: rgba(255, 255, 255, 0.65);
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 28px;
}

.footer-links h2,
.footer-contact h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li,
.footer-contact > * + * {
  margin-top: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact a,
.footer-contact address {
  display: block;
  font-style: normal;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  margin-top: 70px;
  padding: 30px 0;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero,
.article-hero {
  padding-block: clamp(76px, 10vw, 140px);
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 78% 30%, rgba(196, 141, 53, 0.42), transparent 22%),
    linear-gradient(135deg, #201d1a, #000 70%);
}

.page-hero h1,
.article-hero h1 {
  max-width: 1000px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
}

.page-hero > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
}

.breadcrumbs {
  padding: 20px 0;
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 9px;
  color: var(--gold-dark);
  content: "/";
}

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

.collection-links {
  padding-top: clamp(28px, 5vw, 52px);
}

.collection-links h2 {
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.collection-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
}

.collection-links a:hover,
.collection-links a:focus-visible {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
  padding-bottom: 24px;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--ink);
}

.catalog-search input,
.sort-select select,
.product-option select,
.quantity-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
}

.catalog-search {
  max-width: 430px;
}

.sort-select {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 120px;
}

.filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.filter-heading h2 {
  margin-bottom: 0;
}

.filter-heading h2,
.catalog-sidebar legend {
  font-size: 1rem;
  letter-spacing: 0;
}

.filter-heading button {
  min-height: 44px;
  border: 0;
  padding: 8px 10px;
  color: var(--gold-dark);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-sidebar fieldset {
  display: grid;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 24px 0;
}

.filter-panel summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.filter-panel summary::-webkit-details-marker {
  display: none;
}

.filter-panel summary span {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.7rem;
}

.filter-panel[open] summary span {
  color: var(--ink);
  background: var(--gold);
}

.filter-options {
  max-height: calc(100vh - 235px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
}

.catalog-sidebar legend {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 700;
}

.catalog-sidebar label {
  display: flex;
  min-height: 38px;
  gap: 10px;
  align-items: center;
  font-size: 0.86rem;
  cursor: pointer;
}

.catalog-sidebar input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

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

.load-more {
  display: flex;
  min-width: min(100%, 260px);
  margin: 36px auto 0;
}

.empty-state {
  border: 1px solid var(--line);
  padding: 60px 30px;
  text-align: center;
}

.empty-state h2 {
  font-size: 1.6rem;
}

.product-breadcrumbs {
  padding-top: 18px;
}

.product-detail {
  padding-top: 35px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.78fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.product-main-image {
  display: grid;
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  place-items: center;
  background: var(--soft);
}

.product-main-image img,
.product-main-image .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 10px;
  padding-bottom: 8px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold) var(--soft);
}

.thumbnail {
  flex: 0 0 92px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 0;
  background: var(--soft);
  scroll-snap-align: start;
}

.thumbnail.is-active {
  border-color: var(--gold);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-summary {
  position: sticky;
  top: 120px;
}

.product-summary h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.product-price {
  margin: 26px 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 750;
}

.product-intro {
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.summary-facts,
.product-specs {
  margin: 0 0 26px;
}

.summary-facts > div,
.product-specs > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

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

.summary-facts dd,
.product-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  text-align: right;
}

.product-option,
.quantity-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.quantity-field {
  width: 120px;
}

.order-note {
  margin: 12px 0 0;
  font-size: 0.76rem;
  text-align: center;
}

.product-information h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.notice {
  border-left: 3px solid var(--gold);
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
}

.rich-text {
  color: #3d3d3d;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-detail-grid > *,
.product-info-grid > *,
.editorial-grid > *,
.catalog-layout > *,
.split-heading > *,
.footer-grid > * {
  min-width: 0;
}

.rich-text > :first-child {
  margin-top: 0;
}

.rich-text > :last-child {
  margin-bottom: 0;
}

.rich-text h2,
.rich-text h3,
.rich-text h4 {
  margin-top: 1.6em;
  letter-spacing: -0.02em;
}

.rich-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.rich-text h3 {
  font-size: 1.45rem;
}

.rich-text a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rich-text img,
.content-hero-image img,
.article-image img {
  width: 100%;
  height: auto;
}

/* WordPress block-content fallbacks. The legacy content is kept as HTML, but
   the new site intentionally does not ship WordPress or plugin styles. */
.rich-text figure {
  max-width: 100%;
  margin: 2rem 0;
}

.rich-text figcaption,
.rich-text .wp-element-caption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.rich-text ul,
.rich-text ol {
  padding-left: 1.35em;
}

.rich-text li + li {
  margin-top: 0.45em;
}

.rich-text hr,
.rich-text .wp-block-separator {
  width: 100%;
  height: 1px;
  border: 0;
  margin: clamp(36px, 6vw, 64px) 0;
  background: var(--line);
}

.rich-text blockquote,
.rich-text .wp-block-quote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  color: #292929;
  background: var(--soft);
}

.rich-text blockquote > :last-child {
  margin-bottom: 0;
}

.rich-text .wp-block-columns,
.rich-text .gspb_row__content,
.rich-text .gspb_container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.rich-text .wp-block-column,
.rich-text [class*="gspb_row__col--"] {
  flex: 1 1 280px;
  min-width: 0;
}

.rich-text .gspb_row__col--2 {
  flex: 1 1 calc((100% - 80px) / 6);
  min-width: 120px;
}

.rich-text .gspb_row__col--2 figure {
  display: grid;
  height: 100%;
  min-height: 120px;
  place-items: center;
  border: 1px solid var(--line);
  margin: 0;
  padding: 14px;
  background: var(--soft);
}

.rich-text .gspb_row__col--2 img {
  width: 100%;
  height: 110px;
  object-fit: contain;
}

.rich-text .gspb_row,
.rich-text .wp-block-greenshift-blocks-container {
  margin-block: clamp(30px, 5vw, 60px);
}

.rich-text .gspb_image img {
  border-radius: var(--radius);
}

.rich-text .wp-block-buttons,
.rich-text .gspb_button_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rich-text .wp-element-button,
.rich-text .gspb-buttonbox {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 12px 20px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.rich-text .gspb-buttonbox svg {
  width: 12px !important;
  height: 12px !important;
  margin: 0 !important;
  fill: currentColor;
}

.rich-text .wp-block-gallery,
.rich-text .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rich-text .wp-block-gallery figure,
.rich-text .swiper-slide {
  min-width: 0;
  margin: 0;
}

.rich-text .swiper,
.rich-text .gs-swiper-init {
  overflow: visible;
}

.rich-text .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rich-text table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  color: #292929;
  font-size: 0.92rem;
}

.rich-text > table {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rich-text pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 18px;
  background: var(--soft);
  -webkit-overflow-scrolling: touch;
}

.rich-text iframe,
.rich-text video {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
}

.rich-text th,
.rich-text td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.rich-text th {
  color: var(--ink);
  background: var(--soft);
  font-weight: 750;
}

.rich-text .toc,
.rich-text .gs-toc {
  margin: 2rem 0;
}

.rich-text p.toc {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
}

.rich-text .gs-autolist {
  border: 1px solid var(--line);
  padding: 12px 20px;
  background: var(--soft);
}

.rich-text .gs-autolist-item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.rich-text .gs-autolist-item:last-child {
  border-bottom: 0;
}

.rich-text .gs-autolist-number {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.rich-text .glossary-cluster,
.rich-text .rwm-hub {
  border-top: 1px solid var(--line);
  margin-top: clamp(36px, 6vw, 64px);
  padding-top: clamp(28px, 4vw, 42px);
}

.rich-text .glossary-cluster-title {
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.rich-text .glossary-cluster-desc,
.rich-text .rwm-sub {
  margin: 0.65rem 0 1.4rem;
}

.rich-text .glossary-grid,
.rich-text .rwm-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rich-text .glossary-grid-item a,
.rich-text .rwm-card {
  display: block;
  height: 100%;
  border: 1px solid var(--line);
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.rich-text .glossary-grid-item a:hover,
.rich-text .rwm-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.rich-text .rwm-card h4 {
  margin: 0 0 10px;
}

.rich-text .rwm-card p {
  color: var(--muted);
}

.rich-text .rwm-link {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 750;
}

.rich-text .wp-block-accordion {
  border-top: 1px solid var(--line);
}

.rich-text .wp-block-accordion-heading {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.rich-text .wp-block-accordion-heading__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  text-align: left;
}

.rich-text .wp-block-accordion-heading__toggle-icon {
  color: var(--gold-dark);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.rich-text .wp-block-accordion-panel {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.rich-text .wp-block-accordion[data-enhanced="true"] .wp-block-accordion-panel[hidden] {
  display: none;
}

.rich-text .wp-block-accordion-heading__toggle[aria-expanded="true"] .wp-block-accordion-heading__toggle-icon {
  transform: rotate(45deg);
}

.rich-text .has-text-align-center {
  text-align: center;
}

.rich-text .has-text-align-left {
  text-align: left;
}

.content-hero-image,
.article-image {
  margin: 0 0 42px;
}

.article-hero {
  text-align: center;
}

.article-hero .eyebrow {
  justify-content: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
}

.article-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.article-meta a:hover,
.article-meta a:focus-visible {
  color: #fff;
}

.article-body {
  padding-top: 45px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  margin: 48px 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  color: var(--ink);
  background: var(--soft);
  font-size: 0.76rem;
}

.not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found .error-code {
  margin: 0;
  color: var(--gold);
  font-size: clamp(6rem, 20vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h1 {
  margin: 30px 0 15px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.not-found .button {
  margin: 12px 5px 0;
}

@media (max-width: 1100px) {
  .header-main {
    grid-template-columns: 1fr 1.4fr auto;
  }

  .header-contact {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .header-main {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 18px;
  }

  .site-header.is-stuck .site-search {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 390px);
    padding: 110px 24px 30px;
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.16);
    z-index: 101;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 0s linear 220ms;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-inner,
  .primary-nav ul {
    display: grid;
    gap: 0;
    align-content: start;
  }

  .primary-nav li,
  .primary-nav a {
    width: 100%;
  }

  .primary-nav .nav-item > a {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
  }

  .submenu {
    position: static;
    display: grid !important;
    width: auto;
    box-shadow: none;
  }

  .submenu::before {
    display: none;
  }

  .nav-cta {
    margin-top: 28px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card:last-child {
    grid-column: 1 / -1;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .editorial-grid,
  .product-info-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .thumbnail {
    flex-basis: 72px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-gallery {
    grid-auto-columns: minmax(250px, calc((100% - 24px) / 2));
  }

  .rich-text .gspb_row__col--2 {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media (max-width: 680px) {
  :target {
    scroll-margin-top: 100px;
  }

  body {
    font-size: 16px;
  }

  .container,
  .wide-container,
  .content-narrow {
    width: min(100% - 28px, var(--container));
  }

  .collection-links ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
  }

  .collection-links li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .announcement {
    padding: 9px 0;
    font-size: 0.7rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-with-logo {
    width: 160px;
  }

  .brand-logo {
    height: 68px;
  }

  .home-hero {
    min-height: 620px;
  }

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

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

  .split-heading,
  .section-heading,
  .faq-layout,
  .catalog-toolbar,
  .catalog-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .collection-grid,
  .post-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .collection-card,
  .editorial-media,
  .editorial-media img,
  .editorial-media .image-placeholder {
    min-height: 430px;
  }

  .product-grid,
  .catalog-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card-body {
    padding: 15px;
  }

  .product-card-body .eyebrow,
  .rating {
    display: none;
  }

  .product-card-body h3 {
    min-height: 2.5em;
    font-size: 0.94rem;
  }

  .product-card-footer {
    display: grid;
    gap: 8px;
  }

  .catalog-toolbar {
    gap: 14px;
  }

  .catalog-search {
    max-width: none;
  }

  .catalog-sidebar {
    position: static;
    top: auto;
  }

  .catalog-sidebar:not(:last-child) {
    margin-bottom: 8px;
  }

  .filter-options {
    max-height: 58vh;
  }

  .footer-bottom {
    display: grid;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-gallery {
    grid-auto-columns: min(84vw, 320px);
  }

  .rich-text .wp-block-gallery,
  .rich-text .swiper-wrapper,
  .rich-text .glossary-grid,
  .rich-text .rwm-cards {
    grid-template-columns: 1fr;
  }

  .rich-text .wp-element-button,
  .rich-text .gspb-buttonbox {
    width: 100%;
  }

  .rich-text .gspb_row__col--2 {
    flex-basis: calc((100% - 20px) / 2);
    min-width: 0;
  }
}

@media (max-width: 340px) {
  .product-grid,
  .catalog-results .product-grid {
    grid-template-columns: 1fr;
  }
}

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