:root {
  --ink: #171511;
  --paper: #fffefa;
  --soft: #f6f3ed;
  --sand: #ece6dc;
  --muted: #625e57;
  --gold: #b87822;
  --gold-dark: #815319;
  --line: rgba(32, 27, 20, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --success: #137a4a;
  --danger: #b42318;
  --container: 1340px;
  --wide: 1540px;
  --radius: 14px;
  --radius-small: 8px;
  --shadow: 0 22px 65px rgba(37, 29, 18, 0.1);
  --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;
  overflow-x: clip;
  color: var(--muted);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.68;
  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: 680;
  line-height: 1.13;
  letter-spacing: -0.032em;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.65rem, 6.2vw, 5.7rem);
}

h2 {
  font-size: clamp(1.95rem, 3.5vw, 3.65rem);
}

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% - 56px, var(--container));
  margin-inline: auto;
}

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

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

.section {
  padding-block: clamp(68px, 8vw, 108px);
}

.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;
  inset-inline-start: 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.74rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: #f0d5aa;
}

.lead {
  color: #302d28;
  font-size: clamp(1.06rem, 1.7vw, 1.26rem);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  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: #fff;
  background: var(--gold-dark);
}

.button-gold:hover {
  background: #68400f;
}

.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: var(--success);
}

.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: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.04em;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement a {
  color: #f0d5aa;
  font-weight: 720;
}

.announcement-compact {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-stuck {
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(28, 22, 15, 0.08);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(175px, auto) minmax(0, 1fr) auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  min-height: 84px;
}

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

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

.brand-logo {
  width: auto;
  max-width: 100%;
  height: 62px;
  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;
  width: 230px;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-search:focus-within {
  border-color: var(--gold-dark);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(129, 83, 25, 0.2);
}

.site-search > .icon {
  display: none;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding-block: 10px;
  padding-inline: 16px 4px;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

.site-search button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-whatsapp {
  fill: currentColor;
  stroke: none;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  direction: ltr;
}

.language-selector {
  position: relative;
  z-index: 105;
  flex: 0 0 auto;
  color: var(--ink);
  direction: ltr;
}

.language-toggle {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--paper);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 680;
  line-height: 1.2;
  list-style: none;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-toggle::-webkit-details-marker {
  display: none;
}

.language-toggle:hover,
.language-selector[open] > .language-toggle {
  border-color: var(--gold-dark);
  background: var(--soft);
}

.language-flag {
  display: block;
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(23, 21, 17, 0.14);
}

.language-current-code {
  display: none;
}

.language-chevron {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-left: 2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-selector[open] .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(248px, calc(100vw - 28px));
  max-height: min(620px, calc(100dvh - 112px));
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.language-panel-label {
  margin: 0;
  padding: 8px 10px 12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.4;
}

.language-menu {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.875rem;
  font-weight: 580;
  line-height: 1.3;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  background: var(--soft);
}

.language-menu a:focus-visible {
  outline-offset: -3px;
}

.language-menu a[aria-current="page"] {
  color: var(--gold-dark);
  background: var(--soft);
  font-weight: 750;
}

.language-native-name {
  flex: 1;
  text-align: start;
  unicode-bidi: isolate;
}

.language-menu .icon-check {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(19, 122, 74, 0.22);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--ink);
  background: rgba(19, 122, 74, 0.055);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.header-contact:hover {
  border-color: rgba(19, 122, 74, 0.46);
  background: rgba(19, 122, 74, 0.1);
}

.header-contact > .icon-whatsapp {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: #128c7e;
}

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

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

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

.menu-toggle {
  display: none;
  position: relative;
  z-index: 104;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  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 {
  min-width: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.nav-item {
  position: relative;
}

.nav-link-row {
  display: flex;
  align-items: center;
}

.nav-link-row > a {
  display: flex;
  min-height: 84px;
  align-items: center;
  white-space: nowrap;
}

.submenu-toggle {
  display: grid;
  width: 25px;
  height: 38px;
  flex: 0 0 25px;
  place-items: center;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.submenu-toggle > span:last-child {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.submenu-toggle[aria-expanded="true"] > span:last-child {
  transform: translateY(2px) rotate(225deg);
}

.submenu {
  position: absolute;
  top: calc(100% - 8px);
  inset-inline-start: -22px;
  display: none !important;
  width: 260px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px !important;
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: menu-reveal 180ms ease both;
}

.submenu::before {
  position: absolute;
  bottom: 100%;
  inset-inline: 0;
  height: 20px;
  content: "";
}

.submenu li a {
  display: block;
  border-radius: 7px;
  padding: 9px 11px;
  font-weight: 590;
}

.submenu li a:hover {
  background: var(--soft);
}

.mobile-navigation-tools,
.menu-backdrop {
  display: none;
}

.has-submenu.is-open .submenu {
  display: block !important;
}

@keyframes menu-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mega-menu {
  position: static;
}

.submenu-mega {
  top: 100%;
  inset-inline: 0;
  width: 100%;
  grid-template-columns: minmax(230px, 0.85fr) minmax(440px, 1.65fr) minmax(230px, 0.8fr);
  gap: clamp(28px, 4vw, 62px) !important;
  align-items: stretch !important;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 34px max(28px, calc((100vw - var(--container)) / 2)) !important;
  box-shadow: 0 24px 42px rgba(28, 22, 15, 0.12);
}

.has-submenu.is-open .submenu-mega {
  display: grid !important;
}

.submenu-mega::before {
  height: 12px;
}

.submenu-mega .mega-menu-intro,
.submenu-mega .mega-menu-directory,
.submenu-mega .mega-menu-feature {
  min-width: 0;
}

.mega-menu-intro > span,
.mega-menu-directory > span,
.mega-menu-feature small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-menu-intro > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

.mega-menu-intro > p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.submenu .mega-menu-intro > a {
  display: inline-flex;
  gap: 8px;
  padding: 0;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.submenu .mega-menu-intro > a:hover {
  background: transparent;
}

.mega-menu-directory > ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px 20px;
}

.submenu .mega-menu-directory li a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 21, 17, 0.08);
  border-radius: 0;
  padding: 7px 2px;
  font-size: 0.76rem;
}

.mega-menu-directory li a b {
  color: var(--gold-dark);
  font-weight: 500;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-menu-directory li a:hover b,
.mega-menu-directory li a:focus-visible b {
  opacity: 1;
  transform: none;
}

.mega-menu-feature > a {
  display: flex !important;
  height: 100%;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 2px !important;
  padding: 24px !important;
  color: #fff !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(231, 200, 151, 0.34), transparent 24%),
    linear-gradient(145deg, #2d2821, #11100e) !important;
}

.mega-menu-feature small {
  color: #e7c897;
}

.mega-menu-feature strong,
.mega-menu-feature span {
  display: block;
}

.mega-menu-feature strong {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.mega-menu-feature span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

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

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 66vh, 680px);
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #171411;
  isolation: isolate;
}

.home-hero-media,
.home-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-media {
  z-index: -2;
}

.home-hero-media img {
  object-fit: cover;
  object-position: 48% 42%;
  inset: -5% 0;
  height: 110%;
  transform: translate3d(0, var(--parallax-shift, 0), 0) scale(1.035);
  will-change: transform;
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.home-hero::before {
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 8, 7, 0.88) 0%, rgba(9, 8, 7, 0.62) 48%, rgba(9, 8, 7, 0.12) 82%);
}

.home-hero::after {
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 7, 6, 0.55), transparent 48%);
}

.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(790px, 72%);
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.65rem, 5.2vw, 4.65rem);
  line-height: 1.02;
}

.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-inline-start: 1px solid var(--gold);
  padding-inline-start: 20px;
  backdrop-filter: blur(4px);
}

.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: start;
}

.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;
}

.intro-section {
  background: linear-gradient(110deg, var(--paper) 0 54%, #faf7f0 54% 100%);
}

.intro-section .split-heading {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.intro-heading {
  max-width: 520px;
}

.intro-heading h2 {
  margin-bottom: 26px;
}

.intro-kicker {
  max-width: 430px;
  border-inline-start: 2px solid var(--gold);
  margin: 0;
  padding-inline-start: 18px;
}

.intro-proof {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 2px;
  margin: 34px 0 0;
  background: #231c16;
  box-shadow: 0 22px 48px rgba(45, 31, 15, 0.13);
}

.intro-proof::after {
  position: absolute;
  z-index: 1;
  inset: 28% 0 0;
  background: linear-gradient(0deg, rgba(15, 12, 9, 0.96), rgba(15, 12, 9, 0));
  content: "";
  pointer-events: none;
}

.intro-proof-media {
  position: absolute;
  inset: -7% 0;
  transform: translate3d(0, var(--parallax-shift, 0), 0);
  will-change: transform;
}

.intro-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.intro-proof:hover .intro-proof-media img {
  transform: scale(1.065);
}

.intro-proof figcaption {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  inset-inline: 22px;
  color: #fff;
}

.intro-proof-label {
  display: block;
  margin-bottom: 12px;
  color: #e7c897;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-proof ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-proof li {
  min-width: 0;
  padding: 0 14px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.3);
}

.intro-proof li:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.intro-proof strong,
.intro-proof span:not(.intro-proof-label) {
  display: block;
}

.intro-proof strong {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.intro-proof li span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  line-height: 1.3;
}

.intro-copy {
  max-width: 660px;
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px);
  background: rgba(255, 254, 250, 0.78);
  box-shadow: inset 0 0 0 1px var(--line);
}

.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: 22px;
}

.brand-cloud {
  border-block: 1px solid var(--line);
  padding-block: 44px;
  background: #201d19;
}

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

.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 rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.brand-logo-grid a:hover {
  border-color: rgba(231, 200, 151, 0.65);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

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

.collection-card {
  position: relative;
  min-height: 500px;
  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(10, 9, 8, 0.96) 0%, rgba(10, 9, 8, 0.56) 48%, rgba(10, 9, 8, 0.08) 78%);
  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;
  bottom: clamp(24px, 3vw, 36px);
  inset-inline: clamp(24px, 3vw, 36px);
}

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

.collection-copy p:not(.eyebrow) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

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

.section-pill {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  margin-bottom: 18px;
  padding-block: 7px;
  padding-inline: 31px 16px;
  color: #3c3934;
  background: #efede8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-pill::before {
  position: absolute;
  inset-inline-start: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.product-showcase-section {
  overflow: hidden;
  background: #f4f3ef;
}

.product-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 105px);
  align-items: end;
  margin-bottom: 56px;
}

.product-showcase-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.product-showcase-heading-side > p {
  max-width: 580px;
  margin-bottom: 24px;
}

.product-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.product-showcase-actions .button {
  border-radius: 2px;
}

.product-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 72px) / 4);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 3px 3px 20px;
  cursor: grab;
  scroll-padding-inline: 3px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-carousel:active {
  cursor: grabbing;
}

.product-carousel .product-card {
  scroll-snap-align: start;
}

.carousel-track {
  position: relative;
  height: 2px;
  overflow: hidden;
  margin-top: 20px;
  background: rgba(23, 21, 17, 0.12);
}

.carousel-track span {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(var(--slider-progress, 0.25));
  transform-origin: left center;
  transition: transform 500ms ease;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  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-card-showcase {
  border-color: rgba(23, 21, 17, 0.08);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(34, 29, 22, 0.045);
}

.product-card-showcase:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(34, 29, 22, 0.12);
}

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

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

.catalog-results .product-media {
  aspect-ratio: 4 / 5;
}

.catalog-results .product-media img {
  padding: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

.product-card-showcase .product-media {
  aspect-ratio: 1 / 1.08;
  background: #f8f8f6;
}

.product-card-showcase .product-media img {
  padding: 18px 24px 8px;
  transform: scale(0.96);
  transition: transform 600ms ease;
}

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

.product-media-action {
  position: absolute;
  inset-inline-end: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 38px;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(18, 17, 15, 0.9);
  font-size: 0.72rem;
  font-weight: 750;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease, background-color 180ms ease;
}

.product-media-action b {
  color: #e7c897;
  font-size: 0.9rem;
}

.product-card-showcase:hover .product-media-action,
.product-card-showcase:focus-within .product-media-action {
  opacity: 1;
  transform: none;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 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: 22px;
  text-align: center;
}

.product-card-body .eyebrow {
  justify-content: center;
}

.product-card-showcase .product-card-body {
  padding: 26px 22px 28px;
  text-align: center;
}

.product-card-showcase .product-card-body .eyebrow {
  justify-content: center;
  margin-bottom: 9px;
  color: #88827a;
  letter-spacing: 0.13em;
}

.product-card-showcase .product-card-body h3 {
  display: -webkit-box;
  min-height: 2.55em;
  overflow: hidden;
  margin: 0 auto 13px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-assurance {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #7a736a;
  font-size: 0.74rem;
  line-height: 1.3;
}

.product-card-assurance span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
}

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

.product-card-body h3 {
  display: -webkit-box;
  min-height: 3.75em;
  overflow: hidden;
  margin-bottom: 12px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

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

.product-card-footer {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.product-card-footer strong {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

.product-card-footer a {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-showcase .product-card-footer {
  display: block;
  border-top: 0;
  margin-top: 14px;
  padding-top: 0;
  text-align: center;
}

.product-card-showcase .product-card-footer strong {
  display: block;
  color: #15130f;
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  font-weight: 720;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.product-card-showcase .product-card-footer a {
  display: none;
}

.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: linear-gradient(135deg, #1b1814, #0b0a09 72%);
}

.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: start;
}

.editorial-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 2px;
}

.editorial-media img,
.editorial-media .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 2px;
  transform: translate3d(0, var(--parallax-shift, 0), 0) scale(1.075);
  transition: transform 600ms ease;
  will-change: transform;
}

.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);
}

.gallery-controls button:disabled {
  border-color: rgba(23, 21, 17, 0.16);
  color: rgba(23, 21, 17, 0.3);
  background: transparent;
  cursor: default;
}

.carousel-controls button {
  border-radius: 50%;
}

.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;
}

.trustpilot-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.trustpilot-section::before {
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(920px, 82vw);
  height: 330px;
  background-image: radial-gradient(circle, rgba(74, 70, 64, 0.2) 1.15px, transparent 1.3px);
  background-size: 12px 12px;
  content: "";
  mask-image: radial-gradient(ellipse at center, #000 0 45%, transparent 75%);
  opacity: 0.42;
  pointer-events: none;
  transform: translateX(-50%);
}

.trustpilot-section > .container {
  position: relative;
  z-index: 1;
}

.trustpilot-heading {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.trustpilot-heading .section-pill {
  margin-bottom: 22px;
  text-transform: none;
}

.trustpilot-heading h2 {
  margin-bottom: 20px;
}

.trustpilot-heading > p:last-child {
  max-width: 690px;
  margin: 0 auto;
  font-size: 1.06rem;
}

.trustpilot-review-grid {
  display: grid;
  grid-auto-columns: calc((100% - 60px) / 3);
  grid-auto-flow: column;
  gap: 30px;
  overflow-x: auto;
  margin: 0;
  padding: 3px 3px 18px;
  list-style: none;
  scroll-padding-inline: 3px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  overscroll-behavior-inline: contain;
}

.trustpilot-review-card {
  min-width: 0;
  scroll-snap-align: start;
}

.trustpilot-review-card article,
.trustpilot-review-card article > a {
  position: relative;
  display: block;
  height: 100%;
  min-height: 510px;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  background: #161513;
}

.trustpilot-review-card article > a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.05) 22%, rgba(5, 5, 4, 0.68) 54%, rgba(5, 5, 4, 0.96) 100%);
  content: "";
  pointer-events: none;
}

.trustpilot-review-media,
.trustpilot-review-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trustpilot-review-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 600ms ease;
}

.trustpilot-review-card:hover .trustpilot-review-media img,
.trustpilot-review-card:focus-within .trustpilot-review-media img {
  transform: scale(1.06);
}

.trustpilot-review-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 38px);
}

.trustpilot-stars {
  display: inline-flex;
  gap: 3px;
  align-self: flex-start;
  margin-bottom: 18px;
}

.trustpilot-stars span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #fff;
  background: #00b67a;
  font-size: 0.75rem;
  line-height: 1;
}

.trustpilot-review-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 760;
  line-height: 1.28;
}

.trustpilot-review-copy blockquote {
  margin: 0;
}

.trustpilot-review-copy blockquote p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.trustpilot-review-copy footer {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 24px;
  padding-top: 22px;
}

.trustpilot-review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #151511;
  background: #e7c897;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.trustpilot-review-copy footer > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.trustpilot-review-copy footer strong {
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.25;
}

.trustpilot-review-copy footer small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.67rem;
  line-height: 1.35;
}

.trustpilot-review-arrow {
  color: #e7c897;
  font-size: 1.15rem;
}

.trustpilot-section-footer {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
}

.trustpilot-review-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.trustpilot-section-footer .button {
  border-radius: 2px;
}

.trustpilot-rating {
  display: flex;
  gap: 13px;
  align-items: center;
  border-inline-start: 1px solid var(--line);
  padding-inline-start: 28px;
}

.trustpilot-brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: #fff;
  background: #00b67a;
  font-size: 1.65rem;
  line-height: 1;
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.trustpilot-rating > span:last-child {
  display: grid;
  gap: 2px;
}

.trustpilot-rating strong {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.trustpilot-rating small {
  color: var(--muted);
  font-size: 0.8rem;
}

.trustpilot-rating small b {
  color: var(--ink);
  font-weight: 800;
}

[data-reveal].reveal-pending {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

[data-reveal].reveal-visible {
  opacity: 1;
  transform: none;
  transition: opacity 680ms ease var(--reveal-delay, 0ms), transform 680ms cubic-bezier(0.2, 0.72, 0.25, 1) var(--reveal-delay, 0ms);
}

[data-reveal].reveal-visible.product-card:hover {
  transform: translateY(-7px);
}

.faq-list {
  counter-reset: faq-item;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  counter-increment: faq-item;
}

.faq-list summary {
  display: grid;
  min-height: 78px;
  grid-template-columns: 42px minmax(0, 1fr) 40px;
  gap: 14px;
  color: var(--ink);
  font-weight: 700;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::before {
  color: var(--gold-dark);
  content: counter(faq-item, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-list summary::after {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.faq-list details[open] summary::after {
  color: #fff;
  background: var(--ink);
  content: "−";
  transform: rotate(180deg);
}

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

.faq-list details div {
  padding-block: 0 24px;
  padding-inline: 56px 54px;
  animation: faq-reveal 260ms ease both;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.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 {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(40, 31, 20, 0.055);
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.post-card:hover {
  border-color: rgba(184, 120, 34, 0.45);
  box-shadow: 0 20px 48px rgba(40, 31, 20, 0.1);
  transform: translateY(-4px);
}

.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-media img {
  transition: transform 400ms ease;
}

.post-card:hover .post-media img {
  transform: scale(1.035);
}

.post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.post-card-meta,
.post-card-footer,
.featured-guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.post-card-meta {
  margin-bottom: 12px;
}

.post-card-meta a,
.featured-guide-category {
  color: var(--gold-dark);
  font-weight: 800;
}

.post-card-meta > * + *::before,
.featured-guide-meta > * + *::before {
  margin-inline-end: 14px;
  color: var(--gold);
  content: "•";
}

.post-body > p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 22px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card-footer {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 18px;
}

.post-card-footer .text-link {
  margin-top: 0;
}

.content-page {
  background: var(--soft);
}

.content-page > .content-narrow {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(40, 31, 20, 0.045);
}

.content-page .content-hero-image {
  overflow: hidden;
  border-radius: 12px;
}

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

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

.post-body h2,
.post-body h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 3.54em;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.post-body .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.guide-archive-hero > .container > p:not(.eyebrow) {
  max-width: 780px;
  font-size: 1.08rem;
}

.archive-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.archive-facts li {
  display: grid;
  min-width: 150px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.045);
}

.archive-facts strong {
  color: #fff;
  font-size: 1rem;
}

.archive-facts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.guide-topics {
  padding-bottom: 0;
}

.featured-guide-section {
  padding-block: clamp(42px, 6vw, 78px);
}

.featured-guide {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(40, 31, 20, 0.1);
}

.featured-guide-media {
  display: block;
  min-height: 420px;
  overflow: hidden;
  background: var(--sand);
}

.featured-guide-media img,
.featured-guide-media .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-guide-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.featured-guide-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.05;
}

.featured-guide-copy > p:not(.eyebrow) {
  margin-bottom: 22px;
  font-size: 1.03rem;
}

.featured-guide-meta {
  margin-bottom: 28px;
}

.guide-index-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
  margin-bottom: 22px;
}

.guide-index-heading h2 {
  margin-bottom: 10px;
}

.guide-index-heading p:last-child {
  max-width: 620px;
  margin-bottom: 0;
}

.guide-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.55fr);
  gap: 12px;
}

.guide-tools label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.guide-tools input,
.guide-tools select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.guide-tools input:focus,
.guide-tools select:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(184, 120, 34, 0.18);
}

.guide-result-count {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.guide-result-count strong {
  color: var(--ink);
}

.benefit-strip {
  border-block: 1px solid var(--line);
  padding: 34px 0;
  background: var(--sand);
}

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

.benefit {
  display: flex;
  gap: 14px;
  align-items: center;
}

.benefit-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(129, 83, 25, 0.24);
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(255, 254, 250, 0.52);
}

.benefit-icon .icon {
  width: 20px;
  height: 20px;
}

.benefit-copy {
  display: grid;
  min-width: 0;
  overflow-wrap: anywhere;
}

.benefit-copy strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.benefit-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer {
  padding-top: 76px;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 120, 34, 0.11), transparent 28%),
    #12110f;
}

.footer-trust {
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 58px;
  padding-bottom: 58px;
}

.footer-trust-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
}

.footer-trust-heading p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-trust-heading div > p {
  margin-bottom: 8px;
  color: #e7c897;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-trust-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.footer-trustpilot {
  display: grid;
  width: min(100%, 360px);
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(0, 182, 122, 0.42);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  background: rgba(0, 182, 122, 0.08);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-trustpilot:hover {
  border-color: rgba(0, 182, 122, 0.85);
  background: rgba(0, 182, 122, 0.14);
  transform: translateY(-2px);
}

.footer-trustpilot-star {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: #00b67a;
  font-size: 1.65rem;
  line-height: 1;
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.footer-trustpilot > span:last-child,
.footer-trustpilot small,
.footer-trustpilot strong,
.footer-trustpilot > span:last-child > span {
  display: block;
}

.footer-trustpilot small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-trustpilot strong {
  margin-top: 2px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.2;
}

.footer-trustpilot > span:last-child > span {
  margin-top: 3px;
  color: #7de8bd;
  font-size: 0.72rem;
  line-height: 1.3;
}

.footer-trustpilot b {
  font-weight: 400;
}

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-trust-grid a {
  display: grid;
  min-height: 120px;
  gap: 13px;
  align-content: start;
  border-top: 1px solid rgba(231, 200, 151, 0.38);
  padding: 20px 8px 10px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.footer-trust-grid a:hover {
  border-color: #e7c897;
  transform: translateY(-3px);
}

.footer-trust-metric {
  display: flex;
  gap: 9px;
  align-items: baseline;
  color: #f3d6a6;
}

.footer-trust-metric strong,
.footer-trust-metric small,
.footer-trust-copy {
  display: block;
}

.footer-trust-metric strong {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-trust-metric small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-trust-copy > strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.25;
}

.footer-trust-copy > small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: clamp(34px, 5vw, 72px);
}

.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: 360px;
  margin: 22px 0 24px;
}

.footer-link-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-link-group > summary::-webkit-details-marker {
  display: none;
}

.footer-link-group > summary::after {
  display: none;
  color: #e7c897;
  content: "−";
  font-size: 1rem;
  font-weight: 400;
}

.footer-link-group:not([open]) > summary::after {
  content: "+";
}

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

.footer-links li + li {
  margin-top: 10px;
}

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

.footer-whatsapp {
  gap: 9px;
}

.footer-whatsapp .icon {
  width: 19px;
  height: 19px;
}

.footer-contact-inline {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.8rem;
}

.footer-contact-inline address {
  font-style: normal;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line-light);
  margin-top: 64px;
  padding: 26px 0;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  justify-self: end;
  max-width: 480px;
  text-align: end;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero,
.article-hero {
  padding-block: clamp(58px, 6.5vw, 88px);
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 78% 30%, rgba(184, 120, 34, 0.28), transparent 23%),
    linear-gradient(135deg, #201d19, #0b0a09 72%);
}

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

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

.catalog-hero {
  padding-block: clamp(48px, 5vw, 72px);
}

.catalog-hero > .container {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.catalog-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4vw, 3.9rem);
}

.catalog-hero.page-hero > .container > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 5px;
}

.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-inline-start: 9px;
  color: var(--gold-dark);
  content: "/";
}

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

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

.collection-links-heading {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.collection-links-heading .eyebrow {
  margin-bottom: 7px;
}

.collection-links-heading h2 {
  margin-bottom: 0;
}

.collection-links-heading > span {
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.collection-links ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  margin: 0;
  padding: 0 0 12px;
  list-style: none;
  scroll-padding-inline: 1px;
  scroll-snap-type: inline proximity;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.collection-links ul.is-dragging {
  cursor: grabbing;
  user-select: none;
}

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

.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);
}

.archive-editorial-section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.archive-editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.archive-editorial-header {
  position: sticky;
  top: 112px;
}

.archive-editorial-header h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.guide-archive-hero {
  padding-block: clamp(42px, 5vw, 68px);
}

.guide-archive-hero h1 {
  max-width: 900px;
  font-size: clamp(2.05rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.archive-editorial-grid {
  display: grid;
  gap: 34px;
}

.archive-editorial-grid section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.archive-editorial-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.archive-editorial-grid p:last-child {
  margin-bottom: 0;
}

.archive-editorial-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  border-block: 1px solid var(--line);
  margin-bottom: 38px;
  padding: 16px 0;
  background: transparent;
}

.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: 999px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
}

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

.catalog-page .catalog-section {
  padding-top: clamp(38px, 4vw, 58px);
}

.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;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: var(--soft);
}

.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;
  margin: 0;
  padding: 16px 0 4px;
}

.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-inline-end: 6px;
}

.filter-option-search {
  display: block !important;
  min-height: 0 !important;
  padding: 14px 0 0;
}

.catalog-sidebar .filter-option-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.8rem;
}

.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;
}

.catalog-link-index {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.catalog-link-index summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.catalog-link-index summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.catalog-link-index ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 16px 0 0;
  padding-inline-start: 20px;
}

.catalog-link-index a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.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-mobile-order {
  display: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.82fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

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

.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);
  border-radius: 8px;
  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: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.2vw, 42px);
  background: #fcfaf5;
  box-shadow: 0 18px 54px rgba(40, 31, 20, 0.055);
}

.product-summary h1 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 2.5vw, 2.75rem);
}

.product-price {
  margin: 22px 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: end;
}

.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;
}

.product-order-panel {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 22px;
}

.product-order-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.product-order-row .quantity-field {
  width: auto;
  margin: 0;
}

.product-order-row .button {
  gap: 10px;
}

.product-order-row .button .icon {
  width: 21px;
  height: 21px;
}

.order-note {
  margin: 13px 0 0;
  color: #4f6b59;
  font-size: 0.76rem;
  text-align: start;
}

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

.product-information {
  background: #f3efe7;
}

.product-info-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: start;
}

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

.product-editorial > h2 {
  max-width: 680px;
  margin-bottom: 36px;
}

.product-info-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.product-spec-card,
.product-support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(40, 31, 20, 0.05);
}

.aside-label {
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-spec-card h3,
.product-support-card h3 {
  margin-bottom: 22px;
  font-size: 1.45rem;
}

.product-spec-card .product-specs {
  margin-bottom: 0;
}

.product-support-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.product-support-card li {
  position: relative;
  padding-inline-start: 24px;
}

.product-support-card li::before {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  color: var(--success);
  content: "✓";
  font-weight: 800;
}

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

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

.product-editorial .rich-text {
  max-width: 760px;
}

.product-editorial .rich-text h2 {
  margin-top: 1.8em;
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
}

.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-inline-start: 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-inline-start: 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: start;
  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: start;
}

.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: start;
}

.content-jump-links {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  padding-bottom: 24px;
}

.content-jump-links > span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-jump-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.content-jump-links a,
.faq-page-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--ink);
  background: var(--soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.content-jump-links a:hover,
.faq-page-nav a:hover {
  border-color: var(--gold);
  background: #fff8ed;
}

.page-brands .content-page > .content-narrow {
  width: min(100% - 56px, var(--container));
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.page-brands .content-page {
  padding-top: clamp(42px, 5vw, 70px);
}

.page-brands .rich-text > h2,
.page-brands .rich-text > h3,
.page-brands .rich-text > p {
  width: min(100%, 850px);
  margin-inline: auto;
}

.brand-directory {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  margin-bottom: clamp(58px, 8vw, 94px);
  padding: clamp(24px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.66);
  background:
    radial-gradient(circle at 88% 0, rgba(184, 120, 34, 0.2), transparent 26%),
    #171511;
  box-shadow: 0 30px 80px rgba(30, 23, 14, 0.16);
}

.brand-directory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.brand-directory-heading p {
  margin: 0 0 7px;
  color: #e7c897;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-directory-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.brand-directory-heading > span {
  border-inline-start: 1px solid rgba(231, 200, 151, 0.38);
  padding-inline-start: 18px;
  color: #e7c897;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.brand-directory-grid > a {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  background: #211f1b;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.brand-directory-grid > a:hover,
.brand-directory-grid > a:focus-visible {
  border-color: rgba(231, 200, 151, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.brand-directory-logo {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 18px;
  background: #526e77;
}

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

.brand-directory-meta {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 17px 17px;
}

.brand-directory-meta strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

.brand-directory-meta small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.brand-directory-meta b {
  color: #e7c897;
}

.page-faq .content-page > .content-narrow,
.page-replica-watch-glossary .content-page > .content-narrow,
.page-customer-reviews .content-page > .content-narrow {
  width: min(100% - 56px, 1120px);
}

.faq-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-block: 1px solid var(--line);
  margin: 34px 0 50px;
  padding: 20px 0;
}

.faq-page-groups {
  display: grid;
  gap: 52px;
}

.faq-page-section > h2 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.faq-page-section .faq-list {
  border-top: 1px solid var(--line);
}

.faq-page-section .faq-list summary {
  min-height: 70px;
}

.faq-page-section .faq-list details div {
  color: var(--muted);
}

.faq-page-section .faq-list details div > :last-child {
  margin-bottom: 0;
}

.faq-page-cta {
  border: 1px solid rgba(184, 120, 34, 0.3);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 38px);
  background: #fffaf1;
}

.glossary-tools {
  position: sticky;
  z-index: 4;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 34px 0;
  padding: 18px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 12px 34px rgba(40, 31, 20, 0.08);
  backdrop-filter: blur(10px);
}

.glossary-tools > label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glossary-tools > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.glossary-tools input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--soft);
}

.glossary-tools span {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.glossary-browser {
  display: grid;
  gap: 12px;
}

.page-replica-watch-glossary .rich-text .glossary-cluster {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 0;
  padding: 0;
  background: var(--paper);
}

.page-replica-watch-glossary .glossary-cluster > summary {
  display: grid;
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  gap: 16px;
  align-items: center;
  padding: 13px 18px;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}

.page-replica-watch-glossary .glossary-cluster > summary::-webkit-details-marker {
  display: none;
}

.page-replica-watch-glossary .glossary-cluster > summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  content: "+";
  font-size: 1.1rem;
}

.page-replica-watch-glossary .glossary-cluster[open] > summary::after {
  content: "−";
}

.page-replica-watch-glossary .rich-text .glossary-cluster-title {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.page-replica-watch-glossary .glossary-cluster > summary small {
  color: var(--muted);
  font-size: 0.7rem;
}

.glossary-cluster-body {
  border-top: 1px solid var(--line);
  padding: 0 18px 20px;
}

.page-replica-watch-glossary .rich-text .glossary-cluster-desc {
  margin-top: 18px;
}

.review-proof-gallery {
  margin: 44px 0 68px;
}

.review-proof-gallery > header {
  max-width: 720px;
  margin-bottom: 30px;
}

.review-proof-gallery > header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

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

.review-proof-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 0 !important;
  background: var(--soft);
}

.review-image-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}

.review-image-button img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.review-image-button > span {
  position: absolute;
  inset-inline-end: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(18, 17, 15, 0.88);
  font-size: 0.68rem;
  font-weight: 750;
}

.review-image-button:hover img {
  transform: scale(1.025);
}

.review-lightbox {
  width: min(92vw, 780px);
  max-height: 92vh;
  overflow: visible;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  background: #171511;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
}

.review-lightbox::backdrop {
  background: rgba(9, 8, 7, 0.82);
  backdrop-filter: blur(5px);
}

.review-lightbox img {
  width: 100%;
  max-height: calc(92vh - 24px);
  object-fit: contain;
}

.review-lightbox button {
  position: absolute;
  z-index: 2;
  top: -18px;
  inset-inline-end: -18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 1.5rem;
}

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

.article-hero {
  padding-block: clamp(52px, 6vw, 82px) clamp(58px, 7vw, 94px);
}

.article-hero-inner {
  max-width: 1120px;
}

.article-hero h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 4.25vw, 4rem);
  line-height: 1.04;
}

.article-category {
  display: inline-flex;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-category:hover,
.article-category:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.article-dek {
  max-width: 820px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

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

.article-meta > * + *::before {
  margin-inline-end: 22px;
  color: var(--gold);
  content: "•";
}

.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: 0 0 clamp(72px, 8vw, 112px);
  background: linear-gradient(180deg, var(--soft) 0, var(--soft) 190px, var(--paper) 190px);
}

.article-breadcrumbs {
  position: relative;
  z-index: 2;
}

.article-cover-wrap {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.article-cover {
  overflow: hidden;
  max-width: 1120px;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 0 auto;
  background: #eae5dc;
  box-shadow: 0 25px 75px rgba(29, 23, 16, 0.13);
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.75;
  object-fit: cover;
}

.article-cover-portrait img {
  max-height: 680px;
  object-fit: contain;
}

.article-cover figcaption {
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  color: var(--muted);
  background: var(--paper);
  font-size: 0.73rem;
  text-align: center;
}

.article-layout {
  display: grid;
  max-width: 1120px;
  grid-template-columns: 248px minmax(0, 760px);
  gap: clamp(42px, 6vw, 78px);
  justify-content: center;
  align-items: start;
}

.article-rail {
  position: sticky;
  top: 112px;
  display: grid;
  max-height: calc(100vh - 132px);
  gap: 22px;
  overflow-y: auto;
  padding-inline-end: 8px;
  scrollbar-width: thin;
}

.article-toc {
  border-inline-start: 2px solid var(--line);
  padding-inline-start: 20px;
}

.article-toc > p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  border-radius: 6px;
  padding: 6px 9px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.article-toc a:hover,
.article-toc a:focus-visible,
.article-toc a[aria-current="true"] {
  color: var(--ink);
  background: var(--soft);
}

.article-standard {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: var(--soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.article-standard p {
  margin-bottom: 12px;
}

.article-standard a {
  color: var(--gold-dark);
  font-weight: 800;
}

.article-main {
  min-width: 0;
}

.article-toc-mobile {
  display: none;
}

.article-summary {
  border: 1px solid rgba(184, 120, 34, 0.3);
  border-radius: 14px;
  margin-bottom: 42px;
  padding: clamp(22px, 4vw, 32px);
  background: linear-gradient(135deg, #fffaf1, var(--paper));
}

.article-summary > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1.06rem;
}

.article-summary dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.article-summary dl > div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.article-summary dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
}

.article-summary dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 750;
}

.article-summary a {
  color: var(--gold-dark);
}

.post-page .article-main > .rich-text {
  color: #35322e;
  font-size: 1.06rem;
  line-height: 1.82;
}

.post-page .article-main > .rich-text > p:first-of-type {
  color: var(--ink);
  font-size: 1.17rem;
  line-height: 1.72;
}

.post-page .rich-text h2,
.post-page .rich-text h3,
.post-page .rich-text h4 {
  scroll-margin-top: 130px;
}

.post-page .article-main > .rich-text h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.18;
}

.article-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 48px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--soft);
}

.article-next-step h2 {
  margin: 5px 0 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-next-step p:not(.eyebrow) {
  max-width: 54ch;
  margin: 0;
  font-size: 0.9rem;
}

.article-next-step .button {
  white-space: nowrap;
}

.post-page .rich-text > .toc,
.post-page .rich-text > .gs-toc {
  display: none;
}

.article-author {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--line);
  margin-top: 58px;
  padding-top: 32px;
}

.article-author-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.article-author .eyebrow {
  margin-bottom: 4px;
}

.article-author strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.08rem;
}

.article-author p:not(.eyebrow) {
  margin-bottom: 8px;
  font-size: 0.88rem;
}

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

.related-guide-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 130px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.related-guide-media {
  min-height: 100%;
  overflow: hidden;
  background: var(--sand);
}

.related-guide-media img,
.related-guide-media .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-guide-card > div {
  padding: 18px;
}

.related-guide-card h3 {
  margin: 7px 0 10px;
  font-size: 1.08rem;
}

.related-guide-card p:not(.eyebrow) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 0.8rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.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;
}

.activity-toast {
  position: fixed;
  z-index: 90;
  inset-inline-end: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  width: min(390px, calc(100vw - 32px));
  grid-template-columns: 46px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--gold-dark);
  border-radius: var(--radius);
  padding-block: 15px;
  padding-inline: 15px 8px;
  color: var(--muted);
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 22px 65px rgba(37, 29, 18, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 16px, 0);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  backdrop-filter: blur(12px);
}

.activity-toast[data-activity-kind="whatsapp"] {
  border-inline-start-color: var(--success);
}

.activity-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

body.menu-open .activity-toast,
body:has(dialog[open]) .activity-toast {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.activity-toast-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.activity-toast[data-activity-kind="whatsapp"] .activity-toast-avatar {
  background: var(--success);
}

.activity-toast-avatar svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.activity-toast[data-activity-kind="viewers"] [data-activity-initials],
.activity-toast[data-activity-kind="whatsapp"] [data-activity-eye] {
  display: none;
}

.activity-toast-copy {
  min-width: 0;
}

.activity-toast-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
  color: var(--gold-dark);
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.105em;
  line-height: 1.25;
  text-transform: uppercase;
}

.activity-toast[data-activity-kind="whatsapp"] .activity-toast-kicker {
  color: var(--success);
}

.activity-toast-kicker i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 14%, transparent);
}

.activity-toast p {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.35;
}

.activity-toast p > span,
.activity-toast p > a {
  display: block;
}

.activity-toast p > a {
  overflow: hidden;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-toast p > a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.activity-toast-copy > small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.3;
}

.activity-toast-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  align-self: start;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
}

.activity-toast-close:hover {
  color: var(--ink);
  background: var(--soft);
}

.activity-toast-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

@media (max-width: 680px) {
  .activity-toast {
    inset-inline-end: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: min(360px, calc(100vw - 24px));
    grid-template-columns: 42px minmax(0, 1fr) 44px;
    gap: 10px;
    padding-block: 13px;
    padding-inline: 13px 6px;
  }

  .activity-toast-avatar {
    width: 42px;
    height: 42px;
    font-size: 0.69rem;
  }

  .activity-toast p {
    font-size: 0.79rem;
  }
}

@media (max-height: 480px) {
  .activity-toast {
    display: none;
  }
}

@media (min-width: 1181px) {
  .header-main {
    grid-template-columns: 175px minmax(max-content, 1fr) minmax(0, auto);
    gap: 24px;
  }
  .primary-nav {
    min-width: max-content;
  }
  .header-actions {
    width: 550px;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-end;
    container-type: inline-size;
    container-name: header-tools;
  }
  .desktop-site-search {
    width: 190px;
    min-width: 64px;
    max-width: 190px;
    flex: 1 1 190px;
  }
  .header-contact {
    flex: 0 0 auto;
    max-width: 190px;
    padding-inline: 12px;
  }
  .header-contact > span:last-child,
  .language-current-name {
    display: none;
  }
  .language-current-code {
    display: inline;
  }
  @container header-tools (min-width: 360px) {
    .language-current-name {
      display: inline;
    }
    .language-current-code {
      display: none;
    }
  }
  @container header-tools (min-width: 480px) {
    .header-contact {
      padding-inline: 14px;
    }
    .header-contact > span:last-child {
      display: grid;
    }
  }
}

@media (max-width: 1180px) {
  .product-info-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
    gap: 40px;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    min-height: 78px;
  }

  .header-actions {
    justify-self: end;
  }

  .desktop-site-search {
    display: none;
  }

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

  .primary-nav {
    position: fixed;
    z-index: 103;
    inset-block: 0;
    inset-inline-start: auto;
    inset-inline-end: 0;
    width: min(88vw, 420px);
    height: 100dvh;
    overflow: hidden;
    overscroll-behavior: contain;
    padding: 86px 30px 34px;
    background:
      radial-gradient(circle at 100% 0, rgba(184, 120, 34, 0.1), transparent 28%),
      #fbfaf7;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    transform: translateX(110%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 0s linear 220ms;
    -webkit-overflow-scrolling: touch;
  }

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

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

  .nav-inner {
    height: 100%;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: normal;
    align-items: stretch;
    justify-content: stretch;
  }

  .primary-nav .nav-inner > ul {
    min-height: 0;
    align-items: stretch;
    justify-content: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .nav-inner::before {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    color: var(--ink);
    content: attr(data-menu-label);
    font-size: clamp(1.75rem, 4vw, 2.2rem);
    font-weight: 720;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .primary-nav .nav-inner > ul,
  .primary-nav .nav-item,
  .primary-nav .nav-link-row,
  .primary-nav .nav-link-row > a {
    width: 100%;
  }

  .primary-nav .nav-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-link-row > a {
    min-height: 58px;
    padding: 15px 0;
    font-size: 1.02rem;
  }

  .has-submenu > .nav-link-row > a::after {
    display: none;
  }

  .submenu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
  }

  .submenu-toggle > span:last-child {
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }

  .submenu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(2px) rotate(225deg);
  }

  .submenu,
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    position: static;
    display: none !important;
    width: auto;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding-block: 7px 13px !important;
    padding-inline: 14px 0 !important;
    background: transparent;
    box-shadow: none;
  }

  .has-submenu.is-open .submenu,
  .has-submenu.is-open:focus-within .submenu {
    display: grid !important;
  }

  .mega-menu {
    position: relative;
  }

  .submenu-mega {
    max-height: none;
    overflow: visible;
    padding: 9px 0 16px !important;
  }

  .has-submenu.is-open .submenu-mega,
  .has-submenu.is-open:focus-within .submenu-mega {
    display: block !important;
  }

  .submenu-mega .mega-menu-intro,
  .submenu-mega .mega-menu-feature {
    display: none;
  }

  .mega-menu-directory > span {
    display: block;
    margin: 2px 0 10px;
  }

  .mega-menu-directory > ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 14px;
  }

  .submenu .mega-menu-directory li a {
    min-height: 44px;
    padding: 8px 2px;
    font-size: 0.72rem;
  }

  .mega-menu-directory li a b {
    display: none;
  }

  .submenu::before {
    display: none;
  }

  .submenu li a {
    padding: 8px 10px;
    color: var(--muted);
    font-size: 0.84rem;
  }

  .mobile-navigation-tools {
    display: grid;
    gap: 14px;
    border-top: 1px solid var(--line);
    margin-top: 0;
    padding: 16px 0 max(4px, env(safe-area-inset-bottom));
    background: #fbfaf7;
  }

  .mobile-site-search {
    display: flex;
    width: 100%;
  }

  .mobile-whatsapp {
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 10px;
    padding: 13px;
    color: #fff;
    background: var(--success);
  }

  .primary-nav .mobile-whatsapp {
    color: #fff;
  }

  .mobile-whatsapp .icon-whatsapp {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #fff;
  }

  .mobile-whatsapp span {
    display: grid;
    line-height: 1.3;
  }

  .mobile-whatsapp small {
    color: rgba(255, 255, 255, 0.75);
  }

  .menu-backdrop {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(13, 11, 8, 0.48);
    backdrop-filter: blur(3px);
  }
}

@media (max-width: 1100px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalog-sidebar {
    position: static;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
    padding: 14px 18px;
  }

  .catalog-sidebar .filter-heading {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
    padding: 0 0 10px;
  }

  .catalog-sidebar .filter-panel > summary {
    border-bottom: 0;
    border-inline-start: 1px solid var(--line);
    padding-inline-start: 18px;
  }

  .catalog-sidebar .filter-options {
    max-height: 360px;
  }

  .catalog-sidebar fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 18px;
  }

  .catalog-sidebar .filter-option-search {
    grid-column: 1 / -1;
  }

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

  .product-carousel {
    grid-auto-columns: calc((100% - 48px) / 3);
  }

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

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

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

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .catalog-hero > .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-section .split-heading {
    grid-template-columns: 1fr;
  }

  .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));
  }

  .featured-guide,
  .guide-index-heading,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .featured-guide-media {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .article-rail {
    display: none;
  }

  .article-toc-mobile {
    display: block;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 0 18px;
    background: var(--soft);
  }

  .article-toc-mobile summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
  }

  .article-toc-mobile summary span {
    color: var(--muted);
    font-size: 0.74rem;
  }

  .article-toc-mobile .article-toc {
    border-top: 1px solid var(--line);
    border-inline-start: 0;
    padding: 16px 0 20px;
  }

  .article-toc-mobile .article-toc > p {
    display: none;
  }

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

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

  .product-showcase-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-carousel {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

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

  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
  }

  .product-main-image {
    aspect-ratio: 4 / 5;
  }

  .product-summary {
    top: 96px;
    padding: 24px;
  }

  .product-info-aside {
    position: static;
    order: -1;
  }

  .archive-editorial-header {
    position: static;
  }

  .archive-editorial-links {
    grid-column: auto;
  }

  .thumbnail {
    flex-basis: 72px;
  }

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

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

  .footer-trust-heading {
    display: grid;
    align-items: start;
  }

  .footer-trustpilot {
    justify-self: start;
  }

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

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

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

@media (max-width: 720px) {
  .product-detail {
    padding-top: 18px;
  }

  .product-mobile-order {
    display: grid;
    width: min(100% - 28px, 540px);
    grid-template-columns: minmax(0, 1fr) minmax(138px, 0.95fr);
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(19, 122, 74, 0.22);
    border-radius: 12px;
    margin: 0 auto 18px;
    padding: 12px;
    background: #f5faf6;
  }

  .product-mobile-order > div {
    min-width: 0;
  }

  .product-mobile-order small,
  .product-mobile-order strong {
    display: block;
  }

  .product-mobile-order small {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-mobile-order strong {
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .product-mobile-order .button {
    min-height: 52px;
    gap: 7px;
    padding: 9px 11px;
    font-size: 0.75rem;
  }

  .product-mobile-order .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

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

  .product-gallery {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .product-summary {
    position: static;
  }

  .product-main-image {
    aspect-ratio: 1;
  }
}

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

  body {
    font-size: 16px;
  }

  .catalog-link-index ul {
    grid-template-columns: 1fr;
  }

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

  .content-page > .content-narrow,
  .page-faq .content-page > .content-narrow,
  .page-replica-watch-glossary .content-page > .content-narrow,
  .page-customer-reviews .content-page > .content-narrow {
    width: 100%;
    border-inline: 0;
    border-radius: 0;
    padding: 40px 18px;
    box-shadow: none;
  }

  .page-brands .content-page > .content-narrow {
    width: min(100% - 28px, var(--container));
    padding: 0;
  }

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

  .catalog-hero {
    padding-block: 38px 44px;
  }

  .catalog-hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .collection-links-heading {
    align-items: start;
  }

  .collection-links-heading > span {
    display: block;
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 750;
  }

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

  .announcement {
    padding: 7px 0;
    font-size: 0.67rem;
  }

  .announcement .container {
    justify-content: center;
  }

  .announcement a {
    display: none;
  }

  .announcement-full {
    display: none;
  }

  .announcement-compact {
    display: inline;
    white-space: nowrap;
  }

  .header-main {
    min-height: 70px;
    gap: 8px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle {
    gap: 6px;
    padding-inline: 8px;
  }

  .language-current-name {
    display: none;
  }

  .language-current-code {
    display: inline;
  }

  .header-contact {
    display: none;
  }

  .primary-nav {
    width: min(92vw, 390px);
    padding: 78px 22px 12px;
  }

  .brand-copy small {
    display: none;
  }

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

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

  .brand-logo {
    height: 54px;
  }

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

  .hero-inner {
    padding-block: 54px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 10.5vw, 2.65rem);
    line-height: 1.02;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-bottom: 25px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .home-hero-media img {
    object-position: 48% 42%;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(9, 8, 7, 0.86), rgba(9, 8, 7, 0.42));
  }

  .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;
  }

  .page-hero {
    padding-block: 40px 48px;
  }

  .page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(1.95rem, 8.7vw, 2.45rem);
    line-height: 1.06;
  }

  .intro-section {
    background: var(--paper);
  }

  .intro-copy {
    padding: 24px;
  }

  .intro-proof {
    min-height: 320px;
  }

  .intro-proof-media {
    inset: 0;
  }

  .intro-proof-media img {
    transform: none;
  }

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

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

  .home-page .section {
    padding-block: 54px;
  }

  .home-page .section-heading {
    margin-bottom: 32px;
  }

  .home-page .collection-grid,
  .home-page .product-grid-arrivals,
  .home-page .home-journal-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    margin-inline-end: -14px;
    padding-block: 2px 18px;
    padding-inline: 2px 14px;
    cursor: grab;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
  }

  .home-page .collection-grid,
  .home-page .home-journal-grid {
    grid-auto-columns: min(84vw, 330px);
  }

  .home-page .product-grid-arrivals {
    grid-auto-columns: min(80vw, 300px);
  }

  .home-page .collection-grid > *,
  .home-page .product-grid-arrivals > *,
  .home-page .home-journal-grid > * {
    scroll-snap-align: start;
  }

  .home-page .collection-card:last-child {
    grid-column: auto;
  }

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

  .archive-facts li:last-child {
    grid-column: 1 / -1;
  }

  .featured-guide {
    border-radius: 14px;
  }

  .featured-guide-media {
    min-height: 0;
    aspect-ratio: 1.45;
  }

  .featured-guide-copy {
    padding: 26px 22px 30px;
  }

  .featured-guide-copy h2 {
    font-size: 1.85rem;
  }

  .guide-tools,
  .article-summary dl,
  .related-guide-grid,
  .article-next-step {
    grid-template-columns: 1fr;
  }

  .article-next-step .button {
    width: 100%;
    white-space: normal;
  }

  .post-body {
    padding: 22px;
  }

  .article-hero {
    padding-block: 38px 48px;
  }

  .article-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 7.7vw, 2.35rem);
    line-height: 1.08;
  }

  .article-meta {
    display: grid;
    gap: 5px;
  }

  .article-meta > * + *::before {
    display: none;
  }

  .article-cover-wrap {
    width: 100%;
    margin-bottom: 38px;
  }

  .article-cover {
    border-inline: 0;
    border-radius: 0;
  }

  .article-cover figcaption {
    padding-inline: 14px;
  }

  .article-summary {
    margin-bottom: 32px;
  }

  .post-page .article-main > .rich-text {
    font-size: 1rem;
    line-height: 1.78;
  }

  .post-page .article-main > .rich-text > p:first-of-type {
    font-size: 1.08rem;
  }

  .article-author {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .article-author-mark {
    width: 48px;
    height: 48px;
    font-size: 0.65rem;
  }

  .related-guide-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

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

  .collection-copy p:not(.eyebrow) {
    -webkit-line-clamp: 2;
  }

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

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

  .product-carousel {
    grid-auto-columns: min(84vw, 330px);
    gap: 14px;
    margin-inline-end: -14px;
  }

  .product-showcase-heading {
    margin-bottom: 36px;
  }

  .product-showcase-actions {
    align-items: stretch;
  }

  .product-showcase-actions .button {
    flex: 1 1 auto;
  }

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

  .product-card-showcase .product-card-body .eyebrow,
  .product-card-showcase .product-card-assurance {
    display: flex;
  }

  .product-card-showcase .product-card-body h3 {
    min-height: 2.55em;
    font-size: 1.05rem;
    -webkit-line-clamp: 2;
  }

  .product-card-showcase .product-card-footer {
    display: block;
  }

  .product-summary,
  .product-spec-card,
  .product-support-card {
    padding: 22px;
  }

  .product-order-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
  }

  .product-order-row .button {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .product-order-row .button .icon {
    display: none;
  }

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

  .product-card-body h3 {
    display: -webkit-box;
    min-height: 3.75em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.94rem;
  }

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

  .product-card-showcase .product-card-footer {
    display: block;
  }

  .catalog-toolbar {
    gap: 14px;
  }

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

  .catalog-sidebar {
    position: static;
    top: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 18px;
  }

  .catalog-sidebar .filter-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
  }

  .catalog-sidebar .filter-panel > summary {
    border-bottom: 1px solid var(--line);
    border-inline-start: 0;
    padding-inline-start: 0;
  }

  .catalog-sidebar fieldset {
    grid-template-columns: 1fr;
  }

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

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

  .benefit-strip {
    padding-block: 20px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .benefit {
    align-items: flex-start;
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .benefit-copy strong {
    font-size: 0.84rem;
  }

  .benefit-copy small {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-trust {
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

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

  .footer-trust-heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .footer-trust-grid a {
    min-height: 0;
    gap: 9px;
    padding: 15px 4px 10px;
  }

  .footer-trust-metric {
    display: grid;
    gap: 3px;
  }

  .footer-trust-copy > small {
    display: none;
  }

  .footer-grid {
    gap: 0;
  }

  .footer-brand {
    margin-bottom: 28px;
  }

  .footer-link-group {
    border-top: 1px solid var(--line-light);
  }

  .footer-link-group > summary {
    min-height: 54px;
    margin: 0;
  }

  .footer-link-group > summary::after {
    display: block;
  }

  .footer-link-group[open] {
    padding-bottom: 12px;
  }

  .footer-links a,
  .footer-contact-inline a,
  .footer-legal-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-links li + li {
    margin-top: 0;
  }

  .footer-bottom {
    margin-top: 34px;
    padding-block: 20px;
  }

  .footer-bottom > * {
    justify-self: start;
  }

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: start;
  }

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

  .brand-directory {
    border-radius: 12px;
    margin-bottom: 54px;
    padding: 20px 12px 14px;
  }

  .brand-directory-heading {
    display: grid;
    gap: 12px;
    margin: 0 6px 22px;
  }

  .brand-directory-heading > span {
    border-inline-start: 0;
    padding-inline-start: 0;
  }

  .brand-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .brand-directory-logo {
    min-height: 102px;
    padding: 12px;
  }

  .brand-directory-logo img {
    height: 66px;
  }

  .brand-directory-meta {
    padding: 12px;
  }

  .brand-directory-meta strong {
    min-height: 2.5em;
    font-size: 0.78rem;
  }

  .brand-directory-meta small {
    font-size: 0.64rem;
  }

  .content-jump-links {
    margin: -8px 0 32px;
  }

  .content-jump-links > div,
  .faq-page-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: inline proximity;
  }

  .content-jump-links a,
  .faq-page-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    scroll-snap-align: start;
  }

  .faq-page-nav {
    margin: 28px 0 38px;
  }

  .faq-page-groups {
    gap: 38px;
  }

  .faq-page-section .faq-list summary {
    min-height: 64px;
    grid-template-columns: 30px minmax(0, 1fr) 36px;
    gap: 9px;
    font-size: 0.9rem;
  }

  .faq-page-section .faq-list details div {
    padding-block: 0 22px;
    padding-inline: 39px 4px;
  }

  .glossary-tools {
    top: 78px;
    margin: 28px 0;
    padding: 14px;
  }

  .glossary-tools > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .glossary-tools span {
    white-space: normal;
  }

  .page-replica-watch-glossary .glossary-cluster > summary {
    grid-template-columns: minmax(0, 1fr) auto 32px;
    gap: 10px;
    padding-inline: 14px;
  }

  .glossary-cluster-body {
    padding-inline: 14px;
  }

  .review-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .review-image-button > span {
    inset-inline-end: 7px;
    bottom: 7px;
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .review-lightbox {
    width: calc(100vw - 24px);
    padding: 8px;
  }

  .review-lightbox button {
    top: 6px;
    inset-inline-end: 6px;
  }

  .rich-text .wp-block-table::before {
    position: sticky;
    inset-inline-start: 0;
    display: block;
    width: max-content;
    margin-bottom: 8px;
    padding: 5px 9px;
    color: var(--gold-dark);
    background: #fff8ed;
    content: attr(data-swipe-label) " →";
    font-size: 0.68rem;
    font-weight: 750;
  }

  .guide-index .post-grid {
    gap: 12px;
  }

  .guide-index .post-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 178px;
    contain-intrinsic-size: auto 178px;
    border-radius: 10px;
  }

  .guide-index .post-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .guide-index .post-body {
    padding: 15px 14px;
  }

  .guide-index .post-body h2 {
    min-height: 0;
    margin-bottom: 10px;
    font-size: 1rem;
    -webkit-line-clamp: 4;
  }

  .guide-index .post-body > p,
  .guide-index .post-card-meta > span,
  .guide-index .post-card-footer time {
    display: none;
  }

  .guide-index .post-card-footer {
    border-top: 0;
    padding-top: 0;
  }

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

  .trustpilot-heading {
    margin-bottom: 42px;
  }

  .trustpilot-review-grid {
    gap: 14px;
    margin-inline-end: -14px;
  }

  .trustpilot-review-card article,
  .trustpilot-review-card article > a,
  .trustpilot-review-copy {
    min-height: 500px;
  }

  .trustpilot-section-footer,
  .trustpilot-review-actions {
    display: grid;
    width: 100%;
    justify-items: stretch;
  }

  .trustpilot-section-footer {
    gap: 24px;
  }

  .trustpilot-review-actions .button,
  .trustpilot-review-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .trustpilot-rating {
    border-top: 1px solid var(--line);
    border-inline-start: 0;
    padding-top: 24px;
    padding-inline-start: 0;
  }

  .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: 374px) {
  .collection-links-heading {
    display: grid;
    gap: 6px;
  }

  .collection-links-heading > span {
    display: none;
  }

  .product-grid,
  .catalog-results .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Bidirectional layout support. Keep directional decoration and controls in
   sync with the document direction while preserving the existing LTR layout. */
html[dir="rtl"] body {
  text-align: start;
}

html[dir="rtl"] :is(input, select, textarea) {
  text-align: start;
}

html[dir="rtl"] :is(.header-contact strong, .mobile-whatsapp strong, .footer-contact-inline a[href^="tel:"], .footer-contact-inline a[href^="mailto:"]) {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] :is(.breadcrumbs a, .breadcrumbs span, .language-menu a) {
  unicode-bidi: isolate;
}

/* Keep the language control at the physical top right on every locale. */
html[dir="rtl"] .header-main {
  direction: ltr;
}

html[dir="rtl"] :is(.primary-nav, .header-contact, .language-panel-label) {
  direction: rtl;
}

html[dir="rtl"] .home-hero::before {
  background: linear-gradient(270deg, rgba(9, 8, 7, 0.88) 0%, rgba(9, 8, 7, 0.62) 48%, rgba(9, 8, 7, 0.12) 82%);
}

html[dir="rtl"] .intro-section {
  background: linear-gradient(250deg, var(--paper) 0 54%, #faf7f0 54% 100%);
}

html[dir="rtl"] .editorial-band {
  background: linear-gradient(225deg, #1b1814, #0b0a09 72%);
}

html[dir="rtl"] .site-footer {
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 120, 34, 0.11), transparent 28%),
    #12110f;
}

html[dir="rtl"] :is(.page-hero, .article-hero) {
  background:
    radial-gradient(circle at 22% 30%, rgba(184, 120, 34, 0.28), transparent 23%),
    linear-gradient(225deg, #201d19, #0b0a09 72%);
}

html[dir="rtl"] .brand-directory {
  background:
    radial-gradient(circle at 12% 0, rgba(184, 120, 34, 0.2), transparent 26%),
    #171511;
}

html[dir="rtl"] .mega-menu-feature > a {
  background:
    radial-gradient(circle at 18% 18%, rgba(231, 200, 151, 0.34), transparent 24%),
    linear-gradient(215deg, #2d2821, #11100e) !important;
}

html[dir="rtl"] :is(.announcement a > span[aria-hidden="true"], .text-link > span[aria-hidden="true"], .button > span[aria-hidden="true"], .product-card-footer a > span[aria-hidden="true"], .product-media-action b, .trustpilot-review-arrow, b[aria-hidden="true"]) {
  display: inline-block;
  transform: scaleX(-1);
}

html[dir="rtl"] .text-link:hover > span[aria-hidden="true"] {
  transform: translateX(-4px) scaleX(-1);
}

html[dir="rtl"] .mega-menu-directory li a b {
  transform: translate(4px, 4px) scaleX(-1);
}

html[dir="rtl"] .mega-menu-directory li a:hover b,
html[dir="rtl"] .mega-menu-directory li a:focus-visible b {
  transform: scaleX(-1);
}

/* app.js uses the LTR scrollLeft model for this controlled carousel. Keeping
   the track LTR makes its buttons, autoplay and progress reliable in Chromium;
   each card restores RTL text flow. */
html[dir="rtl"] .product-carousel {
  direction: ltr;
}

html[dir="rtl"] .product-carousel > * {
  direction: rtl;
}

html[dir="rtl"] .carousel-controls {
  direction: rtl;
}

html[dir="rtl"] .carousel-controls button > span {
  display: inline-block;
  transform: scaleX(-1);
}

html[dir="rtl"] .carousel-track span {
  transform-origin: right center;
}

html[dir="rtl"] .button-whatsapp {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

html[dir="rtl"] .button-whatsapp .icon {
  flex: 0 0 auto;
}

html[dir="rtl"] .activity-toast {
  inset-inline-end: max(20px, env(safe-area-inset-left));
}

html:lang(ar) :is(h1, h2, h3, h4, .eyebrow, .section-pill, .product-badge, .aside-label, .footer-link-group > summary, .content-jump-links > span, .mega-menu-intro > span, .mega-menu-directory > span, .mega-menu-feature small, .intro-proof-label, .footer-trust-heading div > p, .footer-trustpilot small, .footer-trust-metric small, .brand-directory-heading p, .glossary-tools > label, .article-category, .article-toc > p, .activity-toast-kicker) {
  letter-spacing: normal;
}

@media (max-width: 1180px) {
  html[dir="rtl"] .primary-nav {
    background:
      radial-gradient(circle at 0 0, rgba(184, 120, 34, 0.1), transparent 28%),
      #fbfaf7;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.18);
    transform: translateX(-110%);
  }

  html[dir="rtl"] .primary-nav.is-open {
    transform: none;
  }

}

@media (max-width: 680px) {
  html[dir="rtl"] .rich-text .wp-block-table::before {
    content: attr(data-swipe-label) " ←";
  }

  html[dir="rtl"] .activity-toast {
    inset-inline-end: max(12px, env(safe-area-inset-left));
  }

  html[dir="rtl"] .home-hero::before {
    background: linear-gradient(270deg, rgba(9, 8, 7, 0.86), rgba(9, 8, 7, 0.42));
  }

  html[dir="rtl"] .intro-section {
    background: var(--paper);
  }
}

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

  [data-reveal],
  [data-reveal].reveal-pending,
  [data-reveal].reveal-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .home-hero-media img,
  .intro-proof-media,
  .editorial-media img,
  .editorial-media .image-placeholder {
    transform: none !important;
  }
}
