@font-face {
  font-family: "Noto Sans Georgian";
  src: url("assets/fonts/NotoSansGeorgian-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


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

:root {
  --burnt: #873c1e;
  --brand-accent: var(--burnt);
  --brand-accent-rgb: 135, 60, 30;
  --charcoal: #212123;
  --gold: #deb34a;
  --coral: #ef7663;
  --sage: #7a999b;
  --page-bg: #ffffff;
  --paper: var(--page-bg);
  --white: #ffffff;
  --deep-green: var(--burnt);
  --brand-secondary: var(--page-bg);
  --line: rgba(33, 33, 35, 0.1);
  --line-soft: rgba(33, 33, 35, 0.085);
  --line-subtle: rgba(33, 33, 35, 0.06);
  --line-warm: rgba(var(--brand-accent-rgb), 0.1);
  --header-separator: rgba(33, 33, 35, 0.07);
  --section-divider: linear-gradient(
    90deg,
    rgba(var(--brand-accent-rgb), 0),
    rgba(var(--brand-accent-rgb), 0.2) 16%,
    rgba(var(--brand-accent-rgb), 0.38) 50%,
    rgba(var(--brand-accent-rgb), 0.2) 84%,
    rgba(var(--brand-accent-rgb), 0)
  );
  --shadow: 0 16px 34px rgba(33, 33, 35, 0.06);
  --brand-primary: var(--brand-accent);
  --page-gutter: clamp(18px, 5vw, 72px);
  --content-max: 1180px;
  --wide-content-max: 1280px;
  --shell: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  --wide-shell: min(var(--wide-content-max), calc(100% - (var(--page-gutter) * 2)));
  --page-pad: max(var(--page-gutter), calc((100vw - var(--wide-content-max)) / 2));
  --announcement-h: 0px;
  --header-main-h: 70px;
  --header-h: calc(var(--announcement-h) + var(--header-main-h));
  --hero-min-h: 89svh;
  --below-hero-pad-top: 30px;
  --below-hero-pad-bottom: clamp(14px, 1.5vw, 22px);
  --section-adjacent-pad-top: clamp(34px, 3.8vw, 54px);
  --section-adjacent-pad-bottom: clamp(28px, 3.2vw, 44px);
  --heading-hero-size: clamp(52px, 4vw, 64px);
  --heading-page-size: clamp(44px, 3.6vw, 56px);
  --heading-section-large-size: clamp(34px, 2.8vw, 42px);
  --heading-section-size: clamp(30px, 2.45vw, 38px);
  --heading-section-compact-size: clamp(26px, 2vw, 32px);
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 560;
  --control-bg: rgba(255, 255, 255, 0.74);
  --control-bg-hover: rgba(255, 255, 255, 0.94);
  --control-border: rgba(33, 33, 35, 0.17);
  --control-border-strong: rgba(135, 60, 30, 0.42);
  --control-ring: rgba(135, 60, 30, 0.14);
  --control-shadow: 0 8px 20px rgba(33, 33, 35, 0.035), inset 0 0 0 1px rgba(135, 60, 30, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  --scrollbar-track: rgba(135, 60, 30, 0.08);
  --scrollbar-thumb: rgba(135, 60, 30, 0.66);
  --scrollbar-thumb-hover: var(--burnt);
  --scrollbar-thumb-border: rgba(255, 255, 255, 0.82);
  --select-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23873c1e' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  --media-radius: 8px;
}

/* Layout rule: section content uses --page-gutter, --page-pad, or --wide-shell for side spacing; only intentional full-bleed media breaks out. */

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
  scroll-behavior: smooth;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--charcoal);
  font-family: "Noto Sans Georgian", Arial, sans-serif;
  font-weight: var(--weight-regular);
  font-variation-settings: "wdth" 100;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  min-height: 44px;
  border: 2px solid var(--scrollbar-thumb-border);
  border-radius: 999px;
  background: var(--scrollbar-thumb);
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
  background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

body.search-lock {
  overflow: hidden;
}

main {
  background: var(--page-bg);
}

:where(
  .home-page-main,
  .category-page-main,
  .product-page-main,
  .cart-page-main,
  .checkout-page-main,
  .about-page-main,
  .category-strip,
  .category-showcase,
  .category-room-section,
  .category-recommendations,
  .category-learn-section,
  .category-faq-section
) {
  background: var(--white);
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
select:not(.merlons-select-native),
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--control-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--control-bg);
  color: var(--charcoal);
  caret-color: var(--burnt);
  box-shadow: var(--control-shadow);
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):hover,
select:not(.merlons-select-native):hover,
textarea:hover {
  border-color: rgba(135, 60, 30, 0.3);
  background-color: var(--control-bg-hover);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):focus-visible,
select:not(.merlons-select-native):focus-visible,
textarea:focus-visible {
  border-color: var(--control-border-strong);
  box-shadow:
    0 0 0 4px var(--control-ring),
    var(--control-shadow);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]).is-invalid,
select:not(.merlons-select-native).is-invalid,
textarea.is-invalid,
[aria-invalid="true"]:not(.merlons-select-native) {
  border-color: rgba(239, 118, 99, 0.72);
  background:
    linear-gradient(135deg, rgba(239, 118, 99, 0.08), rgba(255, 255, 255, 0) 54%),
    var(--control-bg-hover);
  box-shadow:
    0 0 0 4px rgba(239, 118, 99, 0.12),
    var(--control-shadow);
}

input::placeholder,
textarea::placeholder {
  color: rgba(33, 33, 35, 0.42);
}

select:not(.merlons-select-native) {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  text-overflow: ellipsis;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--select-chevron);
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 14px center;
  background-size: auto, 18px 18px;
}

select:not(.merlons-select-native)::-ms-expand {
  display: none;
}

textarea {
  min-height: 116px;
  padding: 12px 14px;
  resize: vertical;
}

.merlons-form-status {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 11px 12px;
  color: #2d5b54;
  border: 1px solid rgba(45, 91, 84, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(222, 179, 74, 0.11), rgba(255, 255, 255, 0) 56%),
    rgba(45, 91, 84, 0.09);
  box-shadow: 0 12px 26px rgba(33, 33, 35, 0.05);
  font-size: 13px;
  line-height: 1.45;
  font-weight: var(--weight-semibold);
}

.merlons-form-status[hidden] {
  display: none !important;
}

.merlons-form-status::before {
  content: "✓";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: #2d5b54;
  font-size: 11px;
  line-height: 1;
  font-weight: var(--weight-semibold);
}

.merlons-form-status.is-error {
  color: var(--burnt);
  border-color: rgba(239, 118, 99, 0.42);
  background:
    linear-gradient(135deg, rgba(239, 118, 99, 0.12), rgba(255, 255, 255, 0) 58%),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 12px 26px rgba(135, 60, 30, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.merlons-form-status.is-error::before {
  content: "!";
  background: var(--burnt);
}

.merlons-form-status.is-success {
  color: #2d5b54;
  border-color: rgba(45, 91, 84, 0.16);
  background:
    linear-gradient(135deg, rgba(222, 179, 74, 0.11), rgba(255, 255, 255, 0) 56%),
    rgba(45, 91, 84, 0.09);
}

input[type="date"] {
  color-scheme: light;
  font-weight: var(--weight-semibold);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.72;
  filter: sepia(0.8) saturate(1.65) hue-rotate(340deg);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background: rgba(135, 60, 30, 0.09);
  opacity: 1;
}

input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 0 14px;
  border: 1px solid var(--line-warm);
  border-radius: 8px;
  background: rgba(135, 60, 30, 0.08);
  color: var(--burnt);
  font: inherit;
  font-weight: var(--weight-semibold);
  cursor: pointer;
}

:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--gold);
  color: var(--charcoal);
}

.home-page {
  --hero-min-h: 55.625svh;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--white);
  isolation: isolate;
}

.site-header.is-scroll-hidden {
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: calc(var(--header-h) + 132px);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(33, 33, 35, 0.7) 0%,
    rgba(33, 33, 35, 0.58) 34%,
    rgba(33, 33, 35, 0.38) 62%,
    rgba(33, 33, 35, 0.14) 84%,
    rgba(33, 33, 35, 0) 100%
  );
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.site-header[data-menu-open="true"]::before {
  height: calc(var(--header-h) + 2px);
  background: rgba(255, 255, 255, 0.98);
}

.announcement-bar,
.header-main,
.mega-menu {
  position: relative;
  z-index: 1;
}

.announcement-bar {
  min-height: var(--announcement-h);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 var(--page-pad);
  background: rgba(135, 60, 30, 0.94);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 430ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.announcement-viewport {
  position: relative;
  width: min(560px, 100%);
  min-height: 22px;
  overflow: hidden;
  text-align: center;
}

.announcement-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.announcement-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.header-main {
  width: 100%;
  min-height: var(--header-main-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  margin: 0;
  padding: 10px var(--page-pad);
  background: transparent;
  border-bottom: 0;
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1) 70ms, transform 560ms cubic-bezier(0.22, 1, 0.36, 1) 70ms, filter 560ms cubic-bezier(0.22, 1, 0.36, 1) 70ms;
  will-change: opacity, transform, filter;
}

.site-header.is-scroll-hidden::before {
  opacity: 0;
  transform: translateY(-34px);
}

.site-header.is-scroll-hidden .announcement-bar {
  opacity: 0;
  transform: translateY(-100%);
}

.site-header.is-scroll-hidden .header-main {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(-22px) scale(0.985);
}

.site-header.is-scroll-hidden .mega-menu {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px) scaleY(0.96);
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before,
  .announcement-bar,
  .header-main,
  .mega-menu,
  .hero-slide,
  .hero-image,
  .hero-content,
  .hero-button,
  .chat-launcher,
  .chat-quick-actions,
  .chat-quick-action {
    transition-duration: 1ms;
  }

  .mega-tab,
  .mega-product,
  .search-drawer,
  .search-suggestion,
  .clients-track,
  .chat-panel-card,
  .chat-view,
  .chat-quick-action,
  .chat-quick-action::before,
  .chat-launcher.has-new-chat-message,
  .chat-launcher.has-new-chat-message::after,
  .chat-launcher-badge,
  .hero-content .hero-sale-title,
  .hero-slide-sale .hero-actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.brand {
  width: min(15vw, 154px);
  min-width: 118px;
  justify-self: start;
  margin: 0;
  padding: 8px 0;
  background: transparent;
  font-size: inherit;
  line-height: 0;
  font-weight: inherit;
}

.brand a {
  display: block;
}

.brand img {
  width: 100%;
  content: url("assets/logos/merlons-wordmark-white.png");
  filter: drop-shadow(0 2px 14px rgba(33, 33, 35, 0.62));
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 2px;
}

.utility-navigation {
  display: none;
  align-items: center;
  min-width: 0;
}

.menu-trigger {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 9px;
  color: var(--white);
  background: transparent;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  white-space: nowrap;
  text-shadow:
    0 2px 16px rgba(33, 33, 35, 0.82),
    0 0 1px rgba(33, 33, 35, 0.88);
}

.menu-trigger::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 1px;
  left: 9px;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu-trigger:hover,
.menu-trigger:focus-visible,
.menu-trigger.is-active {
  color: var(--white);
  outline: none;
}

.menu-trigger:hover::after,
.menu-trigger:focus-visible::after,
.site-header[data-menu-open="true"] .menu-trigger.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

@media (min-width: 1101px) {
  .header-main {
    height: var(--header-main-h);
    align-content: center;
  }

  .brand,
  .primary-navigation,
  .header-actions {
    align-self: center;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand img {
    width: 100%;
    max-height: 34px;
    object-fit: contain;
    object-position: center;
  }

  .primary-navigation {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    min-height: 34px;
    justify-self: start;
    justify-content: flex-start;
    gap: 4px;
  }

  .primary-navigation .menu-trigger[data-menu="about"] {
    display: none;
  }

  .utility-navigation {
    display: flex;
    gap: 4px;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    min-height: 34px;
    justify-self: end;
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .header-main {
    gap: 18px;
  }

  .brand {
    width: 136px;
    min-width: 128px;
  }

  .primary-navigation {
    gap: 0;
  }

  .utility-navigation {
    gap: 0;
  }

  .menu-trigger {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 12px;
  }

  .menu-trigger::after {
    right: 6px;
    left: 6px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-call-button {
    padding-right: 10px;
    padding-left: 9px;
  }
}

@media (min-width: 1101px) and (max-width: 1180px) {
  .header-main {
    gap: 14px;
  }

  .brand {
    width: 128px;
    min-width: 118px;
  }

  .menu-trigger {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 11px;
  }

  .menu-trigger::after {
    right: 4px;
    left: 4px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-call-button {
    width: 34px;
    padding: 0;
  }

  .header-call-button span {
    display: none;
  }

  .header-call-icon {
    width: 22px;
    height: 22px;
  }
}

.language-selector {
  position: relative;
  z-index: 2;
}

.language-selector::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: max(100%, 154px);
  height: 14px;
}

.language-current {
  position: relative;
  z-index: 2;
  height: 34px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0 4px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(33, 33, 35, 0.72));
  font-size: 10.5px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-option img {
  width: 20px;
  height: 14px;
  display: block;
  border-radius: 3px;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(33, 33, 35, 0.12);
}

.language-line-icon {
  width: 21px;
  height: 21px;
}

.language-chevron {
  width: 8px;
  height: 8px;
  margin-left: -1px;
}

.language-current svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.language-current:hover,
.language-current:focus-visible,
.language-selector:focus-within .language-current {
  color: #fff6d7;
  border-color: transparent;
  background: #f7f5ef;
  outline: none;
  transform: none;
}

.language-menu {
  position: absolute;
  z-index: 3;
  top: calc(100% + 8px);
  right: 0;
  min-width: 136px;
  display: grid;
  gap: 2px;
  padding: 7px;
  color: var(--charcoal);
  border: 1px solid var(--control-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 36px rgba(33, 33, 35, 0.18),
    inset 0 0 0 1px rgba(135, 60, 30, 0.035);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-selector:hover .language-menu,
.language-selector:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  color: var(--charcoal);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: var(--weight-medium);
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  color: var(--burnt);
  background: rgba(135, 60, 30, 0.07);
  outline: none;
}

.language-option:hover,
.language-option:focus-visible {
  transform: translateX(1px);
}

.merlons-select {
  position: relative;
  display: inline-block;
  min-width: 84px;
  font: inherit;
  vertical-align: middle;
}

.merlons-select-native {
  position: absolute !important;
  inset: 0;
  z-index: -1;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.merlons-select-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 13px 0 16px;
  color: #050505;
  border: 1px solid var(--control-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--page-bg);
  box-shadow: var(--control-shadow);
  cursor: pointer;
  user-select: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.merlons-select-value {
  min-width: 0;
  color: currentColor;
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.merlons-select-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.merlons-select:hover .merlons-select-button,
.merlons-select-button:focus-visible,
.merlons-select.is-open .merlons-select-button {
  color: var(--burnt);
  border-color: rgba(135, 60, 30, 0.42);
  box-shadow:
    0 14px 28px rgba(135, 60, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  outline: none;
}

.merlons-select.is-invalid .merlons-select-button {
  border-color: rgba(239, 118, 99, 0.72);
  background:
    linear-gradient(135deg, rgba(239, 118, 99, 0.1), rgba(255, 255, 255, 0) 54%),
    var(--control-bg-hover);
  box-shadow:
    0 0 0 4px rgba(239, 118, 99, 0.12),
    var(--control-shadow);
}

.merlons-select.is-open .merlons-select-icon {
  transform: rotate(180deg);
}

.merlons-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 420;
  min-width: 100%;
  width: max-content;
  max-width: min(320px, calc(100vw - 32px));
  max-height: min(320px, calc(100vh - 120px));
  display: grid;
  gap: 4px;
  overflow: auto;
  padding: 7px;
  color: #050505;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  border: 1px solid var(--control-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    var(--page-bg);
  box-shadow:
    0 26px 54px rgba(33, 33, 35, 0.16),
    0 8px 18px rgba(135, 60, 30, 0.08),
    inset 0 0 0 1px rgba(135, 60, 30, 0.035);
  transform-origin: 50% -8px;
}

.merlons-select-menu::-webkit-scrollbar {
  width: 10px;
}

.merlons-select-menu::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
}

.merlons-select-menu::-webkit-scrollbar-thumb {
  border: 2px solid var(--scrollbar-thumb-border);
  border-radius: 999px;
  background: var(--scrollbar-thumb);
  background-clip: padding-box;
}

.merlons-select-menu[hidden] {
  display: none;
}

.merlons-select.is-open .merlons-select-menu {
  animation: merlonsSelectReveal 170ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.merlons-select-option {
  position: relative;
  width: 100%;
  min-height: 37px;
  display: flex;
  align-items: center;
  padding: 0 36px 0 12px;
  color: rgba(33, 33, 35, 0.82);
  font: inherit;
  border-radius: 8px;
  border: 0;
  background: transparent;
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.merlons-select-option::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 12px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  opacity: 0;
  transform: translateY(-62%) rotate(42deg);
}

.merlons-select-option:hover,
.merlons-select-option:focus-visible,
.merlons-select-option[aria-selected="true"] {
  color: var(--burnt);
  background: rgba(135, 60, 30, 0.08);
  outline: none;
}

.merlons-select-option:hover,
.merlons-select-option:focus-visible {
  transform: translateX(2px);
}

.merlons-select-option[aria-selected="true"]::after {
  opacity: 1;
}

.merlons-select-option[aria-disabled="true"] {
  color: rgba(33, 33, 35, 0.34);
  pointer-events: none;
}

@keyframes merlonsSelectReveal {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  border-radius: 999px;
  filter: drop-shadow(0 2px 10px rgba(33, 33, 35, 0.72));
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.header-actions .icon-button[aria-label="პროფილი"] {
  display: none;
}

.header-call-button {
  min-width: 0;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px 0 10px;
  color: var(--white);
  border: 1px solid rgba(var(--brand-accent-rgb), 0.94);
  border-radius: 999px;
  background: rgba(var(--brand-accent-rgb), 0.94);
  filter: drop-shadow(0 1px 3px rgba(33, 33, 35, 0.28));
  font-size: 12.5px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.header-call-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-line-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover,
.icon-button:focus-visible,
.header-call-button:hover,
.header-call-button:focus-visible {
  color: #fff6d7;
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  transform: none;
  opacity: 0.9;
  outline: none;
}

.site-header[data-menu-open="true"] .brand img {
  content: url("assets/logos/merlons-wordmark-transparent.png");
  filter: drop-shadow(0 8px 18px rgba(33, 33, 35, 0.12));
}

.site-header[data-menu-open="true"] .menu-trigger,
.site-header[data-menu-open="true"] .menu-trigger:hover,
.site-header[data-menu-open="true"] .menu-trigger:focus-visible,
.site-header[data-menu-open="true"] .menu-trigger.is-active,
.site-header[data-menu-open="true"] .language-current,
.site-header[data-menu-open="true"] .icon-button,
.site-header[data-menu-open="true"] .header-call-button {
  color: var(--charcoal);
  text-shadow: none;
}

.site-header[data-menu-open="true"] .header-call-button {
  color: var(--white);
}

.site-header[data-menu-open="true"] .menu-trigger::after {
  background: var(--charcoal);
}

.site-header[data-menu-open="true"] .icon-button {
  filter: none;
}

.site-header[data-menu-open="true"] .header-call-button {
  border-color: rgba(135, 60, 30, 0.94);
  background: rgba(135, 60, 30, 0.94);
  filter: none;
}

.site-header[data-menu-open="true"] .language-current {
  border-color: transparent;
  background: transparent;
  filter: none;
}

.site-header[data-menu-open="true"] .icon-button:hover,
.site-header[data-menu-open="true"] .icon-button:focus-visible,
.site-header[data-menu-open="true"] .header-call-button:hover,
.site-header[data-menu-open="true"] .header-call-button:focus-visible {
  color: #fff6d7;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(251, 250, 247, 0.96), rgba(135, 60, 30, 0.94)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-warm);
  box-shadow:
    0 12px 30px rgba(33, 33, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.mobile-menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  box-shadow: 0 1px 4px rgba(33, 33, 35, 0.36);
}

.mega-menu {
  width: 100%;
  margin: 0;
  max-height: calc(100svh - var(--header-h));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 30px var(--page-pad) 34px;
  color: var(--white);
  background: var(--brand-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(33, 33, 35, 0.18);
  box-shadow:
    0 34px 74px rgba(33, 33, 35, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(33, 33, 35, 0.14);
  transform: translateY(-16px) scaleY(0.96);
  transform-origin: top center;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  transition:
    clip-path 460ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, opacity, transform;
}

.site-header[data-menu-open="true"] .mega-menu {
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
  pointer-events: auto;
}

.section-heading h2,
.trade-band h2,
.service-copy h2 {
  margin: 0;
  font-size: var(--heading-section-compact-size);
  line-height: 1.16;
  font-weight: var(--weight-medium);
}

.trade-band p,
.service-copy p {
  color: rgba(33, 33, 35, 0.74);
}

.eyebrow {
  display: none;
  margin: 0 0 12px;
  color: var(--burnt);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.about-us-eyebrow,
.cutting-service-eyebrow,
.project-showcase-kicker,
.reviews-eyebrow,
.about-section-kicker,
.subcategory-card-kicker {
  display: none !important;
}

.text-link:hover {
  color: var(--burnt);
}

.accent-word,
:where(h1, h2, h3) .accent-word {
  color: var(--brand-primary);
}

:where(main h1, main h2, main h3) {
  text-wrap: balance;
  letter-spacing: 0;
}

main > section {
  position: relative;
}

main > section + section::before {
  content: none;
  display: none;
}

.home-page-main > .hero + .category-strip {
  padding-top: 18px;
  padding-bottom: 26px;
}

.home-page-main > .hero + .category-strip::before {
  content: none;
}

/* Keep generated content sections from stacking oversized top and bottom padding. */
main
  > :is(
    .category-strip,
    .outdoor-explore,
    .curation-band,
    .clients-band,
    .brand-showcase-band,
    .about-us-band,
    .home-inspiration-band,
    .cutting-service-band,
    .sanitary-about-band,
    .sanitary-designer-band,
    .sanitary-home-strip,
    .sanitary-support-band,
    .community-band,
    .customer-reviews-band,
    .home-guide-band,
    .home-faq-band,
    .category-catalog-intro,
    .category-showcase,
    .category-room-section,
    .category-recommendations,
    .category-learn-section,
    .category-faq-section,
    .dryer-radiator-intro,
    .service-overview-section,
    .service-processing-section,
    .service-detail-section,
    .about-editorial-hero,
    .about-brand-band,
    .about-mission-band,
    .about-history-section,
    .about-story-band,
    .about-duo-section,
    .cabana-edit
  ):has(
    + :is(
      .category-strip,
      .outdoor-explore,
      .curation-band,
      .clients-band,
      .brand-showcase-band,
      .about-us-band,
      .home-inspiration-band,
      .cutting-service-band,
      .sanitary-about-band,
      .sanitary-designer-band,
      .sanitary-home-strip,
      .sanitary-support-band,
      .community-band,
      .customer-reviews-band,
      .home-guide-band,
      .home-faq-band,
      .category-catalog-intro,
      .category-showcase,
      .category-room-section,
      .category-recommendations,
      .category-learn-section,
      .category-faq-section,
      .dryer-radiator-intro,
      .service-overview-section,
      .service-processing-section,
      .service-detail-section,
      .about-editorial-hero,
      .about-brand-band,
      .about-mission-band,
      .about-history-section,
      .about-story-band,
      .about-duo-section,
      .cabana-edit
    )
  ) {
  padding-bottom: var(--section-adjacent-pad-bottom);
}

main
  > :is(
    .category-strip,
    .outdoor-explore,
    .curation-band,
    .clients-band,
    .brand-showcase-band,
    .about-us-band,
    .home-inspiration-band,
    .cutting-service-band,
    .sanitary-about-band,
    .sanitary-designer-band,
    .sanitary-home-strip,
    .sanitary-support-band,
    .community-band,
    .customer-reviews-band,
    .home-guide-band,
    .home-faq-band,
    .category-catalog-intro,
    .category-showcase,
    .category-room-section,
    .category-recommendations,
    .category-learn-section,
    .category-faq-section,
    .dryer-radiator-intro,
    .service-overview-section,
    .service-processing-section,
    .service-detail-section,
    .about-editorial-hero,
    .about-brand-band,
    .about-mission-band,
    .about-history-section,
    .about-story-band,
    .about-duo-section,
    .cabana-edit
  )
  + :is(
    .category-strip,
    .outdoor-explore,
    .curation-band,
    .clients-band,
    .brand-showcase-band,
    .about-us-band,
    .home-inspiration-band,
    .cutting-service-band,
    .sanitary-about-band,
    .sanitary-designer-band,
    .sanitary-home-strip,
    .sanitary-support-band,
    .community-band,
    .customer-reviews-band,
    .home-guide-band,
    .home-faq-band,
    .category-catalog-intro,
    .category-showcase,
    .category-room-section,
    .category-recommendations,
    .category-learn-section,
    .category-faq-section,
    .dryer-radiator-intro,
    .service-overview-section,
    .service-processing-section,
    .service-detail-section,
    .about-editorial-hero,
    .about-brand-band,
    .about-mission-band,
    .about-history-section,
    .about-story-band,
    .about-duo-section,
    .cabana-edit
  ) {
  padding-top: var(--section-adjacent-pad-top);
}

.mega-shell {
  width: min(var(--wide-content-max), 100%);
  margin: 0 auto;
}

.mega-menu[data-menu-align="right"] .mega-shell {
  display: grid;
  justify-items: end;
}

.mega-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: clamp(12px, 1.45vw, 24px);
  width: 100%;
  margin-bottom: 24px;
  padding: 0 2px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mega-menu[data-menu-align="right"] .mega-tabs,
.mega-menu[data-menu-align="right"] .mega-showcase {
  justify-content: flex-end;
}

.mega-menu[data-menu-align="right"][data-menu-name="about"] {
  padding-top: 26px;
  padding-bottom: 30px;
}

.mega-menu[data-menu-align="right"][data-menu-name="about"] .mega-showcase {
  width: min(100%, 720px);
  grid-auto-columns: minmax(178px, 210px);
  gap: clamp(16px, 1.6vw, 24px);
  justify-content: end;
}

.mega-menu[data-menu-align="right"][data-menu-name="about"] .mega-product {
  gap: 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
}

.mega-menu[data-menu-align="right"][data-menu-name="about"] .mega-product-image {
  aspect-ratio: 1.36 / 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 34px rgba(33, 33, 35, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mega-menu[data-menu-align="right"][data-menu-name="about"] .mega-product-image img {
  object-fit: cover;
}

.mega-menu[data-menu-align="right"][data-menu-name="about"] .mega-product:nth-child(1) img {
  object-position: center 62%;
}

.mega-menu[data-menu-align="right"][data-menu-name="about"] .mega-product:nth-child(3) img {
  object-position: center 34%;
}

.mega-tabs::-webkit-scrollbar {
  display: none;
}

.mega-tabs.is-hidden {
  display: none;
}

.mega-tab {
  flex: 0 0 auto;
  position: relative;
  padding: 0 0 7px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.1;
  font-weight: var(--weight-regular);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
}

.mega-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.mega-tab.is-active {
  color: var(--white);
}

.mega-tab.is-active::after,
.mega-tab:hover::after,
.mega-tab:focus-visible::after {
  transform: scaleX(1);
}

.mega-tab:hover,
.mega-tab:focus-visible {
  color: var(--white);
  outline: none;
}

.mega-showcase {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(124px, 158px);
  grid-template-columns: none;
  justify-content: flex-start;
  gap: clamp(14px, 1.5vw, 22px);
  align-items: start;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mega-showcase::-webkit-scrollbar {
  display: none;
}

.mega-showcase.is-text-only {
  grid-auto-columns: minmax(176px, 220px);
  grid-template-columns: none;
  gap: 0 clamp(18px, 2vw, 30px);
}

.mega-showcase.is-text-columns {
  grid-auto-columns: minmax(188px, 232px);
  grid-template-columns: none;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: start;
}

.mega-showcase.is-flat-links {
  grid-auto-columns: max-content;
  grid-template-columns: none;
  justify-content: flex-start;
  gap: clamp(22px, 2.4vw, 42px);
}

.mega-text-column {
  display: grid;
  gap: 13px;
  min-width: 0;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(12px);
  animation: megaProductRise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mega-text-column h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-text-links {
  display: grid;
  gap: 9px;
}

.mega-text-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.32;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 160ms ease, transform 160ms ease;
}

.mega-text-links a:hover,
.mega-text-links a:focus-visible {
  color: var(--white);
  transform: translateX(2px);
  outline: none;
}

.site-header[data-menu-open="true"] .mega-text-column:nth-child(2) {
  animation-delay: 45ms;
}

.site-header[data-menu-open="true"] .mega-text-column:nth-child(3) {
  animation-delay: 90ms;
}

.site-header[data-menu-open="true"] .mega-text-column:nth-child(4) {
  animation-delay: 135ms;
}

.site-header[data-menu-open="true"] .mega-text-column:nth-child(5) {
  animation-delay: 180ms;
}

.site-header[data-menu-open="true"] .mega-text-column:nth-child(6) {
  animation-delay: 225ms;
}

.mega-product {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
  font-weight: var(--weight-semibold);
  line-height: 1.18;
  text-align: center;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(12px);
}

.mega-product-image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(33, 33, 35, 0.14);
}

.mega-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.mega-logo-image {
  aspect-ratio: 1.72 / 1;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.mega-logo-image img {
  object-fit: contain;
}

.mega-brand-product {
  color: var(--white);
}

.mega-product > span:last-child {
  width: 100%;
  min-height: 2.45em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mega-product--text {
  justify-items: start;
  min-height: 44px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
}

.mega-product--text > span:last-child {
  width: auto;
  min-height: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-showcase.is-flat-links .mega-product--text {
  width: max-content;
  min-width: max-content;
  min-height: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.mega-showcase.is-flat-links .mega-product--text > span:last-child {
  overflow: visible;
  text-overflow: clip;
}

.mega-showcase.is-flat-links .mega-product--text:hover,
.mega-showcase.is-flat-links .mega-product--text:focus-visible {
  color: var(--white);
}

.mega-product:hover,
.mega-product:focus-visible {
  color: var(--white);
  outline: none;
}

.mega-product:hover img,
.mega-product:focus-visible img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.035);
}

.site-header[data-menu-open="true"] .mega-tab {
  animation: megaFadeUp 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header[data-menu-open="true"] .mega-product {
  animation: megaProductRise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header[data-menu-open="true"] .mega-product:nth-child(2) {
  animation-delay: 35ms;
}

.site-header[data-menu-open="true"] .mega-product:nth-child(3) {
  animation-delay: 70ms;
}

.site-header[data-menu-open="true"] .mega-product:nth-child(4) {
  animation-delay: 105ms;
}

.site-header[data-menu-open="true"] .mega-product:nth-child(5) {
  animation-delay: 140ms;
}

.site-header[data-menu-open="true"] .mega-product:nth-child(6) {
  animation-delay: 175ms;
}

@keyframes megaFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes megaProductRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--brand-primary);
  font-weight: var(--weight-semibold);
}

.text-link::after {
  content: "\2192";
  color: currentColor;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(33, 33, 35, 0.08);
}

.search-panel[hidden] {
  display: none;
}

.search-drawer {
  width: 100%;
  color: #050505;
  background: var(--page-bg);
  box-shadow: 0 28px 58px rgba(33, 33, 35, 0.18);
  transform-origin: top center;
  animation: searchDrawerIn 540ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.search-panel.is-closing .search-drawer {
  animation: searchDrawerOut 260ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.search-promo {
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--page-pad);
  color: var(--white);
  background: rgba(135, 60, 30, 0.94);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.search-promo strong {
  color: currentColor;
  font-weight: var(--weight-semibold);
  text-align: center;
}

.search-panel-inner {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 900px) 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  padding: 12px var(--page-pad);
  border-bottom: 1px solid var(--line-soft);
  background: var(--page-bg);
}

.search-input-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 18px;
  border: 1px solid var(--control-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 26px rgba(33, 33, 35, 0.04),
    inset 0 0 0 1px rgba(135, 60, 30, 0.035);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.search-input-row:focus-within {
  border-color: rgba(135, 60, 30, 0.36);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 4px rgba(135, 60, 30, 0.1),
    0 14px 34px rgba(33, 33, 35, 0.1);
}

.search-row-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  color: rgba(33, 33, 35, 0.64);
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-input-row #site-search {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--charcoal);
  background: transparent;
  box-shadow: none;
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: var(--weight-regular);
  line-height: 1.2;
  outline: none;
  transition: none;
}

.search-input-row #site-search::placeholder {
  color: rgba(33, 33, 35, 0.5);
}

.search-input-row #site-search::-webkit-search-decoration,
.search-input-row #site-search::-webkit-search-cancel-button,
.search-input-row #site-search::-webkit-search-results-button,
.search-input-row #site-search::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.search-close:hover,
.search-close:focus-visible {
  color: var(--burnt);
  border-color: rgba(135, 60, 30, 0.16);
  background: rgba(135, 60, 30, 0.07);
  outline: none;
}

.search-results {
  width: var(--wide-shell);
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px var(--page-pad) 30px;
}

.search-results[hidden] {
  display: none;
}

.search-results-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: rgba(33, 33, 35, 0.68);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  max-height: min(52svh, 430px);
  overflow-y: auto;
  padding: 2px 2px 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(135, 60, 30, 0.35) transparent;
}

.search-result-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px;
  color: var(--charcoal);
  border: 1px solid rgba(33, 33, 35, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(33, 33, 35, 0.055);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.search-result-card:hover,
.search-result-card:focus-visible {
  color: var(--charcoal);
  border-color: rgba(135, 60, 30, 0.24);
  box-shadow: 0 16px 34px rgba(33, 33, 35, 0.09);
  transform: translateY(-1px);
  outline: none;
}

.search-result-media {
  width: 76px;
  height: 68px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(245, 242, 238, 0.9);
  color: var(--burnt);
  font-size: 22px;
  font-weight: var(--weight-semibold);
}

.search-result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-media--empty {
  border: 1px solid rgba(135, 60, 30, 0.12);
}

.search-result-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  line-height: 1.28;
}

.search-result-type {
  color: var(--burnt);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
}

.search-result-copy strong {
  display: block;
  overflow: visible;
  color: currentColor;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.32;
  text-wrap: pretty;
}

.search-result-copy small {
  display: block;
  overflow: hidden;
  color: rgba(33, 33, 35, 0.62);
  font-size: 11px;
  font-weight: var(--weight-medium);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  color: rgba(33, 33, 35, 0.64);
  text-align: center;
  border: 1px dashed rgba(135, 60, 30, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: var(--weight-medium);
}

.search-suggestions {
  width: var(--wide-shell);
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 158px);
  grid-template-columns: none;
  align-items: start;
  justify-content: safe center;
  justify-items: stretch;
  gap: clamp(18px, 1.8vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 2px 46px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.search-suggestions::-webkit-scrollbar {
  display: none;
}

.search-suggestion {
  min-width: 0;
  width: 100%;
  display: grid;
  grid-template-rows: clamp(84px, 7.8vw, 116px) minmax(2.45em, auto);
  align-items: start;
  align-content: start;
  justify-items: center;
  gap: 12px;
  color: #050505;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  text-align: center;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(14px);
  animation: searchItemRise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.search-suggestion:nth-child(2) {
  animation-delay: 35ms;
}

.search-suggestion:nth-child(3) {
  animation-delay: 70ms;
}

.search-suggestion:nth-child(4) {
  animation-delay: 105ms;
}

.search-suggestion:nth-child(5) {
  animation-delay: 140ms;
}

.search-suggestion:nth-child(6) {
  animation-delay: 175ms;
}

.search-suggestion:nth-child(7) {
  animation-delay: 210ms;
}

.search-suggestion:nth-child(8) {
  animation-delay: 245ms;
}

.search-suggestion > span {
  width: min(158px, 100%);
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 24px rgba(33, 33, 35, 0.08);
}

.search-suggestion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.search-suggestion:hover,
.search-suggestion:focus-visible {
  color: var(--burnt);
  outline: none;
}

.search-suggestion:hover img,
.search-suggestion:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.045);
}

.search-suggestions.is-search-results {
  max-width: 1120px;
  display: block;
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  grid-template-columns: initial;
  justify-content: initial;
  justify-items: stretch;
  overflow: visible;
  padding: 24px var(--page-pad) 30px;
  scroll-snap-type: none;
  scrollbar-width: thin;
}

.search-suggestions.is-search-results::-webkit-scrollbar {
  display: initial;
}

@keyframes searchDrawerIn {
  from {
    opacity: 0;
    transform: translateY(-28px) scaleY(0.96);
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes searchDrawerOut {
  from {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    clip-path: inset(0 0 0 0);
  }

  to {
    opacity: 0;
    transform: translateY(-18px) scaleY(0.98);
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes searchItemRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: var(--hero-min-h);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--page-bg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 880ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: var(--hero-position, center);
  transform: scale(1.035);
  transition: transform 5200ms ease;
}

.hero-image-low {
  filter: saturate(0.96) contrast(0.98);
}

.hero-image-high {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 5200ms ease;
}

.hero-image-high.is-loaded {
  opacity: 1;
}

.hero-slide.is-active .hero-image {
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(33, 33, 35, 0.18) 0%, rgba(33, 33, 35, 0.22) 44%, rgba(33, 33, 35, 0.46) 100%),
    rgba(33, 33, 35, 0.08);
}

.home-page .hero-image-low {
  filter: none;
}

.home-page-main .hero {
  background: #f7f5ef;
}

.hero-slide-catalog {
  place-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 58%, #f1ede6 100%);
}

.hero-slide-catalog::before {
  content: none;
  display: none;
}

.hero-slide-catalog::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(247, 245, 239, 0) 0%, rgba(33, 33, 35, 0.06) 100%);
  pointer-events: none;
}

.hero-product-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  background: #f7f5ef;
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.hero-product-link:focus-visible {
  outline: 2px solid var(--burnt);
  outline-offset: -10px;
}

.hero-seo-copy {
  position: absolute;
  z-index: 4;
  left: var(--page-gutter);
  bottom: clamp(26px, 5.2vh, 58px);
  width: min(500px, calc(100% - (var(--page-gutter) * 2)));
  color: var(--charcoal);
  pointer-events: none;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 48px rgba(255, 255, 255, 0.62);
}

.hero-seo-eyebrow {
  margin: 0 0 11px;
  color: var(--burnt);
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.hero-seo-title {
  max-width: 28ch;
  margin: 0;
  color: #171719;
  font-size: clamp(28px, 2.28vw, 40px);
  line-height: 1.14;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-seo-copy p:not(.hero-seo-eyebrow) {
  max-width: 470px;
  margin: 12px 0 0;
  color: rgba(33, 33, 35, 0.78);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.54;
  font-weight: var(--weight-medium);
}

.hero-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  pointer-events: auto;
}

.hero-seo-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(var(--brand-accent-rgb), 0.86);
  border-radius: 999px;
  color: #fff;
  background: var(--brand-primary);
  font-size: 14px;
  line-height: 1.15;
  font-weight: var(--weight-semibold);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(33, 33, 35, 0.12);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-seo-actions a:nth-child(2) {
  color: var(--burnt);
  background: rgba(255, 255, 255, 0.86);
}

.hero-seo-actions a:hover,
.hero-seo-actions a:focus-visible {
  color: #fff6d7;
  background: #6f2f18;
  outline: none;
  transform: translateY(-1px);
}

.hero-slide-catalog .hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  filter: none;
  transform: none;
  transition: none;
  background: transparent;
}

.hero-slide-catalog .hero-image-high.is-loaded {
  opacity: 1;
}

.hero-feature-card {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: var(--feature-width);
  max-width: calc(100vw - 42px);
  aspect-ratio: var(--feature-ratio);
  inset: var(--feature-top, auto) var(--feature-right, auto) var(--feature-bottom, auto) var(--feature-left, auto);
  padding: var(--feature-padding, clamp(10px, 1.15vw, 18px));
  overflow: hidden;
  border: 1px solid rgba(var(--brand-accent-rgb), 0.14);
  border-radius: clamp(18px, 2vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 245, 239, 0.84));
  box-shadow:
    0 26px 70px rgba(33, 33, 35, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transform: var(--feature-transform, translate3d(0, 0, 0));
}

.hero-feature-card:focus-visible,
.hero-hotspot:focus-visible {
  outline: 2px solid var(--burnt);
  outline-offset: 4px;
}

.hero-feature-product {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: clamp(12px, 1.4vw, 22px);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-feature-card:hover .hero-feature-product,
.hero-feature-card:focus-visible .hero-feature-product {
  transform: scale(1.018);
}

.hero-feature-card--furniture {
  --feature-width: clamp(410px, 48vw, 850px);
  --feature-ratio: 1028 / 407;
  --feature-bottom: clamp(26px, 6vh, 70px);
  --feature-left: 50%;
  --feature-padding: clamp(8px, 1vw, 14px);
  --feature-transform: translateX(-50%);
}

.hero-feature-card--lighting {
  --feature-width: clamp(150px, 14vw, 245px);
  --feature-ratio: 510 / 1293;
  --feature-top: 7%;
  --feature-right: 27%;
}

.hero-feature-card--tile {
  --feature-width: clamp(210px, 24vw, 420px);
  --feature-ratio: 1 / 1;
  --feature-top: 16%;
  --feature-right: 16%;
}

.hero-hotspot {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(48px, 3.6vw, 62px);
  height: clamp(48px, 3.6vw, 62px);
  inset: var(--hotspot-top, auto) var(--hotspot-right, auto) var(--hotspot-bottom, auto) var(--hotspot-left, auto);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: var(--burnt);
  color: var(--white);
  box-shadow:
    0 16px 34px rgba(33, 33, 35, 0.2),
    0 0 0 10px rgba(135, 60, 30, 0.12);
  text-decoration: none;
  transform: var(--hotspot-transform, translate3d(0, 0, 0));
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.hero-hotspot::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-2px) rotate(45deg);
}

.hero-hotspot::after {
  content: "";
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(var(--brand-accent-rgb), 0.36);
  border-radius: inherit;
  animation: heroHotspotPulse 1800ms ease-out infinite;
}

.hero-hotspot:hover,
.hero-hotspot:focus-visible {
  background: #6f2f17;
  box-shadow:
    0 20px 42px rgba(33, 33, 35, 0.24),
    0 0 0 13px rgba(135, 60, 30, 0.14);
  transform: var(--hotspot-transform, translate3d(0, 0, 0)) translateY(-2px);
}

.hero-hotspot--sanitary {
  --hotspot-top: 48%;
  --hotspot-right: 39%;
}

.hero-hotspot--furniture {
  --hotspot-left: 73%;
  --hotspot-bottom: 30%;
}

.hero-hotspot--lighting {
  --hotspot-top: 38%;
  --hotspot-right: 24%;
}

.hero-hotspot--tile {
  --hotspot-top: 51%;
  --hotspot-right: 19%;
}

@keyframes heroHotspotPulse {
  0% {
    opacity: 0.68;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-hotspot::after {
    animation: none;
  }
}

.hero-slide-catalog-sanitary {
  --catalog-width: 52vw;
  --catalog-max-width: 720px;
  --catalog-height: 64vh;
}

.hero-slide-catalog-furniture {
  --catalog-width: 72vw;
  --catalog-max-width: 980px;
  --catalog-height: 58vh;
}

.hero-slide-catalog-lighting {
  --catalog-width: 46vw;
  --catalog-max-width: 610px;
  --catalog-height: 66vh;
}

.hero-slide-catalog.is-active .hero-image {
  transform: none;
}

.hero-slide-catalog-tile .hero-image {
  inset: 0;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transform: none;
}

.hero-slide-catalog-tile.is-active .hero-image {
  transform: none;
}

.hero-slide-catalog-tile::before {
  content: none;
  display: none;
}

.hero-slide-catalog-tile::after {
  height: 100%;
  background: linear-gradient(90deg, rgba(247, 245, 239, 0.14) 0%, rgba(247, 245, 239, 0) 42%, rgba(33, 33, 35, 0.06) 100%);
}

@media (max-width: 760px) {
  .hero-slide-catalog .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-feature-card {
    max-width: calc(100vw - 30px);
    padding: 10px;
    border-radius: 20px;
  }

  .hero-feature-card--furniture {
    --feature-width: min(86vw, 430px);
    --feature-bottom: 18svh;
    --feature-left: 50%;
  }

  .hero-feature-card--lighting {
    --feature-width: clamp(88px, 24vw, 108px);
    --feature-top: calc(var(--header-h) + 70px);
    --feature-right: 8%;
  }

  .hero-feature-card--tile {
    --feature-width: clamp(156px, 46vw, 220px);
    --feature-top: auto;
    --feature-right: 7%;
    --feature-bottom: 18svh;
  }

  .hero-hotspot {
    width: 48px;
    height: 48px;
    box-shadow:
      0 12px 28px rgba(33, 33, 35, 0.2),
      0 0 0 8px rgba(135, 60, 30, 0.12);
  }

  .hero-hotspot--sanitary {
    --hotspot-top: 43%;
    --hotspot-right: 27%;
  }

  .hero-hotspot--furniture {
    --hotspot-left: auto;
    --hotspot-right: 9%;
    --hotspot-bottom: 34svh;
  }

  .hero-hotspot--lighting {
    --hotspot-top: calc(var(--header-h) + 246px);
    --hotspot-right: 8%;
  }

  .hero-hotspot--tile {
    --hotspot-top: auto;
    --hotspot-right: 9%;
    --hotspot-bottom: 28svh;
  }

  .hero-slide-catalog-sanitary {
    --catalog-width: 82vw;
    --catalog-height: 57vh;
  }

  .hero-slide-catalog-furniture {
    --catalog-width: 92vw;
    --catalog-height: 44vh;
  }

  .hero-slide-catalog-lighting {
    --catalog-width: 76vw;
    --catalog-height: 58vh;
  }
}

.home-page .hero-overlay,
.home-page .hero-content::before,
.home-page .hero-slide-sale .hero-content::before {
  content: none;
  display: none;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(840px, var(--shell));
  margin: 0 auto;
  padding: calc(var(--header-h) + 84px) 0 62px;
  color: var(--white);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) 170ms,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) 170ms;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(1040px, calc(100vw - 12px));
  height: clamp(310px, 34vw, 480px);
  top: 54%;
  left: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(5, 5, 5, 0.34) 0%,
      rgba(5, 5, 5, 0.26) 34%,
      rgba(5, 5, 5, 0.12) 64%,
      rgba(5, 5, 5, 0.04) 82%,
      rgba(5, 5, 5, 0) 100%
    );
  filter: blur(34px);
  transform: translate(-50%, -50%);
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-sale .hero-content {
  isolation: isolate;
  display: grid;
  justify-items: center;
  align-self: center;
  padding: calc(var(--header-h) + 22px) 0 0;
  transform: translateY(-4.5vh);
}

.hero-slide-sale .hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(960px, 100vw);
  height: clamp(250px, 26vw, 360px);
  top: 50%;
  left: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(33, 33, 35, 0.34) 0%, rgba(33, 33, 35, 0.24) 36%, rgba(33, 33, 35, 0.1) 66%, rgba(33, 33, 35, 0.03) 84%, rgba(33, 33, 35, 0) 100%);
  filter: blur(30px);
  transform: translate(-50%, -48%);
}

.hero-slide.is-active.hero-slide-sale .hero-content {
  transform: translateY(-4.5vh);
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  font-family: "Noto Sans Georgian", Arial, sans-serif;
  font-size: var(--heading-hero-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  text-wrap: balance;
  text-shadow: 0 6px 34px rgba(33, 33, 35, 0.48);
}

.hero-content .hero-sale-title {
  max-width: 100%;
  font-size: clamp(31px, 2.9vw, 43px);
  line-height: 1.16;
  font-weight: 260;
  white-space: normal;
  animation: heroSaleTitleIn 920ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.hero-benefits {
  width: min(860px, 100%);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.hero-benefits-strip {
  position: relative;
  z-index: 2;
  padding: 0 0 30px;
  background: var(--page-bg);
}

.hero-benefits-strip .hero-benefits {
  width: min(920px, 100%);
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  overflow: visible;
}

.hero-benefits-strip .hero-benefits li {
  box-shadow: none;
  text-shadow: none;
}

.hero-benefits::-webkit-scrollbar {
  display: none;
}

.hero-benefits li {
  min-height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(135, 60, 30, 0.86);
  border-radius: 999px;
  background: var(--brand-primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(5, 5, 5, 0.18);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  text-shadow: 0 6px 18px rgba(5, 5, 5, 0.36);
  white-space: nowrap;
}

.hero-benefit-mark {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.98;
  shape-rendering: geometricPrecision;
}

.hero-benefit-mark * {
  vector-effect: non-scaling-stroke;
}

@media (max-width: 640px) {
  .hero-benefits {
    justify-content: flex-start;
  }
}

.hero-content p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 20px auto 0;
  font-size: clamp(17px, 2vw, 22px);
  text-shadow: 0 8px 26px rgba(5, 5, 5, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-slide-sale .hero-actions {
  margin-top: 30px;
  animation: heroSaleButtonIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 540ms both;
}

.hero-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: var(--white);
  background: rgba(33, 33, 35, 0.2);
  font-weight: var(--weight-semibold);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-button::after {
  content: "\2192";
  font-size: 15px;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.hero-button:hover,
.hero-button:focus-visible {
  border-color: var(--brand-primary);
  color: var(--white);
  background: var(--brand-primary);
  outline: none;
  transform: translateY(-1px);
}

@keyframes heroSaleTitleIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(22px);
  }

  70% {
    filter: blur(0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroSaleButtonIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.outline-button,
.solid-button {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: var(--weight-semibold);
}

.outline-button {
  border: 1px solid currentColor;
  color: var(--white);
  background: rgba(33, 33, 35, 0.16);
}

.solid-button {
  color: var(--white);
  background: var(--brand-primary);
}

.outline-button.dark {
  color: var(--brand-primary);
  background: transparent;
}

.clients-band {
  padding: clamp(58px, 7.5vw, 96px) var(--page-pad);
  background: var(--white);
  border-bottom: 0;
}

.clients-band .clients-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  row-gap: clamp(10px, 1.3vw, 16px);
  margin: 0 auto;
  padding: clamp(28px, 3.6vw, 46px) 0;
  background: var(--white);
  box-shadow: none;
  text-align: center;
}

.clients-band .clients-shell h2 {
  grid-column: 1;
  margin: 0 auto;
  color: #050505;
  font-size: clamp(29px, 2.55vw, 42px);
  line-height: 1.06;
  font-weight: var(--weight-regular);
  text-align: center;
  letter-spacing: 0;
}

.clients-band .clients-shell > h2::before {
  display: none;
}

.clients-band .clients-shell > h2::after {
  display: none;
}

.clients-intro {
  grid-column: 1;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(33, 33, 35, 0.52);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.45;
  font-weight: var(--weight-medium);
  text-align: center;
}

.clients-band h2 .accent-word {
  color: inherit;
}

.clients-marquee {
  grid-column: 1;
  grid-row: auto;
  position: relative;
  width: min(100%, 980px);
  max-width: 100%;
  margin-top: clamp(14px, 2.1vw, 26px);
  overflow: visible;
  contain: none;
  padding: 0;
  mask-image: none;
}

.clients-track {
  width: 100%;
  display: block;
  animation: none;
  will-change: auto;
}

.clients-track > .clients-group[aria-hidden="true"],
.clients-group .client-logo[aria-hidden="true"] {
  display: none;
}

.clients-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px) clamp(32px, 4.6vw, 68px);
  padding: 0;
}

.client-logo {
  width: 100%;
  min-height: clamp(40px, 3.8vw, 56px);
  height: auto;
  display: grid;
  place-items: center;
  color: rgba(33, 33, 35, 0.54);
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: grayscale(1) contrast(0.94) opacity(0.72);
  mix-blend-mode: multiply;
}

.client-logo--small img {
  max-width: 100%;
  max-height: 46px;
}

.client-logo--bog {
  min-height: clamp(46px, 4.2vw, 62px);
}

.client-logo--bog img {
  max-height: 52px;
  transform: translateY(-1px);
}

.client-logo--anagi img {
  max-width: 100%;
  max-height: 46px;
}

.client-logo--gumbati img,
.client-logo--silk-road img,
.client-logo--tbc img {
  max-width: 100%;
  max-height: 50px;
}

.client-logo:hover,
.client-logo:focus-visible {
  filter: drop-shadow(0 10px 22px rgba(33, 33, 35, 0.14));
  transform: translateY(-1px);
  outline: none;
}

.client-logo:hover img,
.client-logo:focus-visible img {
  filter: grayscale(1) contrast(1.02) opacity(0.9);
}

@media (max-width: 860px) {
  .clients-band .clients-shell {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 16px;
  }

  .clients-band .clients-shell h2,
  .clients-intro,
  .clients-marquee {
    grid-column: 1;
  }

  .clients-marquee {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .clients-band {
    padding: 46px var(--page-pad);
  }

  .clients-band .clients-shell {
    min-height: 0;
    padding: 30px 0;
  }

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

  .client-logo {
    min-height: 48px;
  }
}

@keyframes clientsMarquee {
  to {
    transform: translateX(-50%);
  }
}

.about-us-band {
  padding: clamp(74px, 8vw, 118px) var(--page-pad);
  background: var(--page-bg);
}

.about-us-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.08fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  margin: 0 auto;
}

.about-us-photo {
  margin: 0;
  aspect-ratio: 1.43 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(33, 33, 35, 0.06);
  box-shadow: 0 24px 58px rgba(33, 33, 35, 0.12);
}

.about-us-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-us-copy {
  min-width: 0;
  max-width: 490px;
}

.about-us-eyebrow {
  margin: 0 0 20px;
  color: var(--burnt);
  font-size: 12px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-us-copy h2 {
  margin: 0 0 18px;
  color: #050505;
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1.14;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.about-us-copy p:not(.about-us-eyebrow) {
  margin: 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(15px, 1.02vw, 16.5px);
  line-height: 1.58;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
}

.about-us-copy .home-detail-button {
  min-width: 144px;
  min-height: 40px;
  padding: 0 18px;
  border-color: var(--burnt);
  border-radius: 999px;
  background: var(--burnt);
  color: var(--white);
  box-shadow: 0 9px 20px rgba(135, 60, 30, 0.14);
}

.about-us-copy .home-detail-button:hover,
.about-us-copy .home-detail-button:focus-visible {
  color: var(--white);
  border-color: #6f2f16;
  background: #6f2f16;
}

.home-detail-button {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(16px, 1.8vw, 24px);
  padding: 0 15px;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12)),
    rgba(135, 60, 30, 0.08);
  color: var(--burnt);
  box-shadow: 0 8px 18px rgba(33, 33, 35, 0.05);
  font-size: 13px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.home-detail-button svg {
  width: 14.5px;
  height: 14.5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.home-detail-button svg path {
  fill: none;
  stroke: currentColor;
}

.home-detail-button:hover,
.home-detail-button:focus-visible {
  color: var(--white);
  border-color: var(--burnt);
  background: var(--burnt);
  box-shadow: 0 10px 20px rgba(135, 60, 30, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.home-detail-button:hover svg,
.home-detail-button:focus-visible svg {
  transform: translateX(2px);
}

.home-page-main .home-detail-button {
  width: fit-content;
  max-width: 100%;
  min-width: 150px;
  min-height: 42px;
  gap: 8px;
  padding: 0 19px;
  border-color: var(--burnt);
  border-radius: 999px;
  background: var(--burnt);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(135, 60, 30, 0.15);
}

.home-page-main .home-detail-button:hover,
.home-page-main .home-detail-button:focus-visible {
  border-color: #6f2f16;
  background: #6f2f16;
  color: var(--white);
  box-shadow: 0 12px 24px rgba(135, 60, 30, 0.18);
}

.home-inspiration-band {
  padding: clamp(64px, 6vw, 96px) var(--page-pad);
  background: var(--page-bg);
}

.home-inspiration-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.home-inspiration-shell h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  margin: 0 0 clamp(30px, 3.4vw, 46px);
  color: #050505;
  font-size: 40px;
  line-height: 1.08;
  font-weight: var(--weight-regular);
  text-align: center;
  letter-spacing: 0;
}

.home-inspiration-title-copy {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex: 0 1 auto;
  flex-wrap: wrap;
  column-gap: clamp(8px, 0.9vw, 14px);
  row-gap: 0;
  min-width: 0;
}

.home-inspiration-shell h2::before,
.home-inspiration-shell h2::after {
  content: "";
  flex: 1 1 88px;
  max-width: 380px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0), rgba(var(--brand-accent-rgb), 0.34));
}

.home-inspiration-shell h2::after {
  background: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0.34), rgba(var(--brand-accent-rgb), 0));
}

.home-inspiration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(174px, 1fr));
  gap: clamp(16px, 1.7vw, 26px);
}

.home-inspiration-card {
  position: relative;
  min-width: 0;
  min-height: 190px;
  display: block;
  overflow: hidden;
  border-radius: var(--media-radius);
  color: var(--white);
  background: rgba(33, 33, 35, 0.08);
  text-decoration: none;
  isolation: isolate;
}

.home-inspiration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(33, 33, 35, 0.66) 0%, rgba(33, 33, 35, 0.28) 46%, rgba(33, 33, 35, 0.08) 100%),
    linear-gradient(180deg, rgba(33, 33, 35, 0.08) 0%, rgba(33, 33, 35, 0.5) 100%);
  transition: opacity 220ms ease;
}

.home-inspiration-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 520ms ease;
}

.home-inspiration-card:hover img,
.home-inspiration-card:focus-visible img {
  transform: scale(1.035);
}

.home-inspiration-card:hover::after,
.home-inspiration-card:focus-visible::after {
  opacity: 0.9;
}

.home-inspiration-card:focus-visible {
  outline: 3px solid rgba(var(--brand-accent-rgb), 0.24);
  outline-offset: 4px;
}

.home-inspiration-card-copy {
  position: absolute;
  inset: 50% clamp(20px, 2vw, 28px) auto;
  z-index: 2;
  display: grid;
  gap: 3px;
  max-width: min(26ch, calc(100% - 40px));
  color: inherit;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
}

.home-inspiration-card-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.28;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
}

.home-inspiration-card-copy strong {
  display: block;
  color: var(--white);
  font-size: 29px;
  line-height: 1.08;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
}

.home-inspiration-card--tile {
  grid-column: 1;
  grid-row: 1;
}

.home-inspiration-card--feature {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 414px;
}

.home-inspiration-card--feature::after {
  background:
    linear-gradient(180deg, rgba(33, 33, 35, 0.12) 0%, rgba(33, 33, 35, 0.26) 42%, rgba(33, 33, 35, 0.72) 100%),
    linear-gradient(90deg, rgba(33, 33, 35, 0.42), rgba(33, 33, 35, 0.08));
}

.home-inspiration-card--feature .home-inspiration-card-copy {
  inset: auto clamp(24px, 2.2vw, 34px) clamp(34px, 3vw, 46px);
  max-width: min(31ch, calc(100% - 48px));
  transform: none;
}

.home-inspiration-card--feature .home-inspiration-card-copy strong {
  font-size: 34px;
}

.home-inspiration-card--lighting {
  grid-column: 3;
  grid-row: 1;
}

.home-inspiration-card--furniture {
  grid-column: 1;
  grid-row: 2;
}

.home-inspiration-card--bath {
  grid-column: 3;
  grid-row: 2;
}

.home-inspiration-card--feature img {
  object-position: 50% 52%;
}

.home-inspiration-card--lighting img {
  object-position: 52% 46%;
}

.home-inspiration-card--furniture img {
  object-position: 50% 56%;
}

.home-inspiration-card--bath img {
  object-position: 50% 52%;
}

@media (max-width: 980px) {
  .home-inspiration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .home-inspiration-card,
  .home-inspiration-card--tile,
  .home-inspiration-card--feature,
  .home-inspiration-card--lighting,
  .home-inspiration-card--furniture,
  .home-inspiration-card--bath {
    grid-column: auto;
    grid-row: auto;
  }

  .home-inspiration-card--feature {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .home-inspiration-band {
    padding: 54px var(--page-pad) 58px;
  }

  .home-inspiration-shell h2 {
    gap: 12px;
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.16;
  }

  .home-inspiration-title-copy {
    column-gap: 8px;
  }

  .home-inspiration-shell h2::before,
  .home-inspiration-shell h2::after {
    flex-basis: 30px;
  }

  .home-inspiration-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-inspiration-card,
  .home-inspiration-card--feature {
    min-height: 0;
    aspect-ratio: 1.48 / 1;
  }

  .home-inspiration-card--feature .home-inspiration-card-copy,
  .home-inspiration-card-copy {
    inset: auto 18px 18px;
    max-width: calc(100% - 36px);
    transform: none;
  }

  .home-inspiration-card-copy span {
    font-size: 15px;
  }

  .home-inspiration-card-copy strong,
  .home-inspiration-card--feature .home-inspiration-card-copy strong {
    font-size: 24px;
    line-height: 1.12;
  }
}

.cutting-service-band {
  scroll-margin-top: calc(var(--header-h) + 24px);
  padding: clamp(64px, 7vw, 108px) var(--page-pad);
  background: var(--page-bg);
}

.cutting-service-shell {
  width: 100%;
  max-width: min(920px, var(--wide-content-max));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.cutting-service-copy {
  min-width: 0;
  max-width: 820px;
  display: grid;
  justify-items: center;
  margin: 0 auto;
}

.cutting-service-eyebrow {
  margin: 0 0 16px;
  color: var(--deep-green);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.cutting-service-copy h2 {
  margin: 0 0 22px;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.14;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.cutting-service-copy p:not(.cutting-service-eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(33, 33, 35, 0.7);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
}

.cutting-service-list {
  display: grid;
  width: min(100%, 860px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 0 14px;
  margin: clamp(24px, 2.6vw, 34px) 0 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.cutting-service-list li {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  text-align: center;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.cutting-service-item-title,
.cutting-service-item-copy {
  display: block;
  width: 100%;
}

.cutting-service-item-title {
  min-height: 2.7em;
  color: #171719;
  font-size: clamp(13.5px, 0.95vw, 15px);
  line-height: 1.28;
  font-weight: var(--weight-semibold);
  text-wrap: balance;
}

.cutting-service-item-copy {
  color: rgba(33, 33, 35, 0.66);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: var(--weight-medium);
}

.cutting-service-thumb {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(135, 60, 30, 0.1);
  border-radius: 8px;
  background: rgba(33, 33, 35, 0.04);
}

.cutting-service-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.cutting-service-list li:nth-child(3) .cutting-service-thumb img {
  object-position: 50% 58%;
}

.cutting-service-list li:nth-child(5) .cutting-service-thumb img {
  object-position: 50% 42%;
}

.cutting-service-photo {
  margin: 0;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.08);
}

.cutting-service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.technology-band {
  padding: clamp(16px, 2vw, 26px) var(--page-pad) clamp(46px, 4.4vw, 66px);
  background: var(--page-bg);
}

.technology-shell {
  width: min(100%, 1560px);
  margin: 0 auto;
}

.technology-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.technology-heading h2 {
  color: #050505;
}

.technology-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 20px);
}

.technology-card {
  position: relative;
  min-width: 0;
  height: clamp(196px, 15.5vw, 250px);
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  color: var(--charcoal);
  text-decoration: none;
  background: #f5f4f2;
  box-shadow: none;
  isolation: isolate;
}

.technology-card:focus-visible {
  outline: 3px solid rgba(var(--brand-accent-rgb), 0.22);
  outline-offset: 4px;
}

.technology-card-bg,
.technology-surface-media img,
.technology-card-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.technology-card:hover .technology-card-bg,
.technology-card:focus-visible .technology-card-bg,
.technology-card:hover .technology-surface-media img,
.technology-card:focus-visible .technology-surface-media img,
.technology-card:hover .technology-card-video,
.technology-card:focus-visible .technology-card-video {
  transform: scale(1.035);
}

.technology-card-bg,
.technology-card-shade {
  position: absolute;
  inset: 0;
}

.technology-card-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(33, 33, 35, 0.18) 0%, rgba(33, 33, 35, 0.26) 48%, rgba(33, 33, 35, 0.56) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.technology-card-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 23px;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0 clamp(18px, 2vw, 26px);
  color: var(--white);
  text-align: center;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.technology-card-copy--overlay {
  color: var(--white);
}

.technology-card-kicker {
  color: var(--burnt);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.25;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
}

.technology-card-copy--overlay .technology-card-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.technology-card strong {
  max-width: 24ch;
  color: inherit;
  font-size: clamp(16px, 1.28vw, 23px);
  line-height: 1.12;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-wrap: balance;
}

.technology-card-description {
  max-width: 36ch;
  color: rgba(33, 33, 35, 0.66);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.42;
  font-weight: var(--weight-medium);
}

.technology-card-copy--overlay .technology-card-description {
  color: rgba(255, 255, 255, 0.82);
}

.technology-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 2px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--burnt);
  font-size: 13px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  box-shadow: none;
}

.technology-card--surface {
  display: block;
  border: 1px solid rgba(33, 33, 35, 0.045);
  background: var(--charcoal);
}

.technology-surface-media {
  position: absolute;
  inset: 0;
  display: block;
}

.technology-card--infinity .technology-surface-media img,
.technology-card-video {
  position: absolute;
  inset: 0;
}

.technology-card-video {
  z-index: 1;
  background: var(--charcoal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 420ms ease;
}

.technology-card-video.is-loaded {
  opacity: 1;
}

.technology-surface-media img {
  border-radius: 0;
  object-position: center;
  box-shadow: none;
}

.technology-card--pedrali .technology-card-bg {
  animation: technology-pedrali-first 8s ease-in-out infinite;
}

.technology-card--pedrali .technology-card-bg--second {
  opacity: 0;
  animation-name: technology-pedrali-second;
}

@keyframes technology-pedrali-first {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes technology-pedrali-second {
  0%,
  42% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-card--pedrali .technology-card-bg {
    animation: none;
    opacity: 1;
  }

  .technology-card--pedrali .technology-card-bg--second {
    opacity: 0;
  }
}

.technology-card--schock .technology-card-copy,
.technology-card--infinity .technology-card-copy,
.technology-card--pedrali .technology-card-copy {
  gap: clamp(6px, 0.75vw, 10px);
}

.technology-card--schock .technology-card-description,
.technology-card--infinity .technology-card-description,
.technology-card--pedrali .technology-card-description {
  max-width: min(46ch, 94%);
  color: rgba(255, 255, 255, 0.86);
  text-wrap: balance;
}

.technology-card-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
}

.technology-card-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(33, 33, 35, 0.08);
}

.technology-card-dots span:first-child {
  background: var(--burnt);
}

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

  .technology-card {
    height: auto;
    aspect-ratio: 2.35 / 1;
  }

  .technology-card--surface .technology-card-copy {
    max-width: none;
    min-height: auto;
  }

  .technology-surface-media {
    inset: 0;
    height: auto;
    padding: 0;
  }
}

@media (max-width: 620px) {
  .technology-band {
    padding-top: 8px;
    padding-bottom: 42px;
  }

  .technology-card {
    height: auto;
    aspect-ratio: 1.65 / 1;
  }

  .technology-card-copy,
  .technology-card-copy--overlay {
    inset: auto 0 18px;
    padding: 0 18px;
  }

  .technology-card strong {
    max-width: 24ch;
    font-size: clamp(16px, 5.2vw, 21px);
    line-height: 1.14;
  }

  .technology-card-description {
    max-width: none;
    font-size: 13px;
  }

  .technology-card--surface {
    min-height: 0;
  }

  .technology-card--surface .technology-card-copy {
    min-height: auto;
    padding: 0 18px;
  }

  .technology-surface-media {
    inset: 0;
    height: auto;
    padding: 0;
  }
}

.category-strip,
.curation-band,
.service-band {
  padding: 72px 0;
}

.category-strip {
  padding: 42px var(--page-pad) 28px;
  background: var(--page-bg);
}

.home-category-heading {
  width: min(940px, 100%);
  display: grid;
  gap: 8px;
  margin: 0 auto 24px;
  text-align: center;
}

.home-category-heading p,
.home-category-heading :is(h1, h2),
.home-category-heading span {
  margin: 0;
}

.home-category-heading p {
  color: var(--burnt);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.home-category-heading :is(h1, h2) {
  color: #050505;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.14;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  text-wrap: balance;
}

.home-category-heading span {
  width: min(760px, 100%);
  margin-inline: auto;
  color: rgba(33, 33, 35, 0.68);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.58;
  font-weight: var(--weight-medium);
}

.home-category-groups {
  width: min(100%, var(--wide-content-max));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.home-category-family {
  display: contents;
}

.home-category-family:first-child {
  display: contents;
}

.home-category-family-head {
  display: none;
}

.home-category-family-head p {
  margin: 0;
  color: var(--burnt);
  font-size: 12px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.home-category-family-head h2 {
  margin: 0;
  color: #050505;
  font-size: 19px;
  line-height: 1.18;
  font-weight: var(--weight-semibold);
  text-align: right;
}

.home-category-card-grid {
  display: contents;
}

.home-category-card-grid--all {
  display: contents;
}

.home-category-card-grid--tiles {
  display: contents;
}

.home-category-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  padding: 8px 8px 12px;
  color: #050505;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(33, 33, 35, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-category-card-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
}

.home-category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-category-card-media img[data-lazy-src],
.home-category-card-media img[data-lazy-srcset] {
  opacity: 0;
}

.home-category-card-media img.is-lazy-loaded {
  opacity: 1;
  transition: opacity 180ms ease, transform 220ms ease, filter 220ms ease;
}

.home-category-card-media--cover img {
  object-fit: cover;
  padding: 0;
}

.home-category-card > span:last-child {
  min-height: 34px;
  display: flex;
  align-items: center;
  margin: 0;
  color: #050505;
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.home-category-card--primary {
  border-color: rgba(135, 60, 30, 0.18);
  background:
    linear-gradient(180deg, rgba(135, 60, 30, 0.045), rgba(255, 255, 255, 0) 54%),
    var(--white);
}

.home-category-card:hover,
.home-category-card:focus-visible {
  border-color: rgba(135, 60, 30, 0.3);
  box-shadow: 0 14px 28px rgba(33, 33, 35, 0.075);
  outline: none;
  transform: translateY(-1px);
}

.home-category-card:hover img,
.home-category-card:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

@media (max-width: 900px) {
  .home-category-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .home-category-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-category-card {
    padding: 7px 7px 10px;
  }

  .home-category-card-media img {
    padding: 0;
  }

  .home-category-card > span:last-child {
    min-height: 32px;
    font-size: 13px;
  }
}

.section-heading {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto 28px;
}

.category-grid {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin: 0 auto;
}

.home-page-main > .hero + .category-strip .category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page-main > .hero + .category-strip .category-card[href="/product-category/?department=sanitary"] {
  order: 1;
}

.home-page-main > .hero + .category-strip .category-card[href="/product-category/?department=furniture"] {
  order: 2;
}

.home-page-main > .hero + .category-strip .category-card[href="/product-category/?department=lighting"] {
  order: 3;
}

.home-page-main > .hero + .category-strip .category-card[href="/product-category/?department=tiles"] {
  order: 4;
}

.home-page-main > .hero + .category-strip .category-card[href="#"] {
  display: none;
}

.sanitary-home-strip .sanitary-category-grid-system {
  --sanitary-grid-gap: clamp(18px, 1.5vw, 24px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: flex-start;
  gap: var(--sanitary-grid-gap);
  width: min(100%, var(--wide-content-max));
  max-width: var(--wide-content-max);
}

.sanitary-home-strip .sanitary-category-grid-system .category-card {
  min-width: 0;
}

.sanitary-home-strip .sanitary-category-grid-system .category-image {
  height: clamp(176px, 11.5vw, 220px);
  aspect-ratio: auto;
  border-radius: 8px;
}

.category-card {
  display: block;
  color: var(--charcoal);
}

.category-image {
  display: block;
  aspect-ratio: 4 / 5.15;
  overflow: hidden;
  background: var(--page-bg);
}

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

.brand-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.category-card > span:not(.category-image) {
  display: block;
  margin-top: 14px;
  color: #050505;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
}

.home-page-main > .hero + .category-strip .hero-benefits-strip {
  padding-bottom: 22px;
}

.home-page-main > .hero + .category-strip .category-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.home-page-main > .hero + .category-strip .category-card > span:not(.category-image) {
  margin-top: 12px;
  font-size: clamp(15.5px, 0.95vw, 17px);
  line-height: 1.25;
}

.brand-grid article:hover img {
  transform: scale(1.04);
}

.category-card:hover img,
.category-card:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.category-card:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 6px;
}

.sanitary-home-strip {
  padding-inline: var(--page-pad);
  padding-top: 42px;
  padding-bottom: 44px;
}

.sanitary-home-strip .sanitary-category-shell {
  display: block;
  width: min(var(--wide-content-max), 100%);
}

.sanitary-home-strip .category-section-heading {
  grid-column: 1 / -1;
  max-width: var(--content-max);
  margin-bottom: clamp(4px, 0.8vw, 12px);
}

.sanitary-home-strip .sanitary-category-grid-system {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sanitary-grid-gap);
  width: min(100%, var(--wide-content-max));
  max-width: var(--wide-content-max);
}

.sanitary-home-strip .sanitary-category-grid-system .category-card {
  display: block;
  width: auto;
  min-width: 0;
  grid-column: auto;
  justify-self: stretch;
  color: #050505;
  font-size: 14px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

.sanitary-home-strip .sanitary-category-grid-system .category-card::after {
  content: none;
}

.sanitary-category-grid-system {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  align-items: start;
}

.category-strip .sanitary-category-grid-system {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sanitary-home-strip .sanitary-category-grid-system .category-card:last-child:nth-child(4n + 1) {
  width: calc((100% - var(--sanitary-grid-gap)) / 2);
  grid-column: 2 / span 2;
  justify-self: center;
}

.sanitary-category-grid-system .category-card {
  min-width: 0;
}

.sanitary-category-grid-system .category-image {
  height: clamp(176px, 11.5vw, 220px);
  aspect-ratio: auto;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: var(--white);
  box-shadow: none;
}

.sanitary-home-strip .sanitary-category-grid-system .category-image {
  width: 100%;
  height: clamp(176px, 11.5vw, 220px);
  aspect-ratio: auto;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
}

.sanitary-category-grid-system .category-card img {
  object-fit: contain;
  padding: clamp(12px, 1.5vw, 20px);
}

.sanitary-home-strip .sanitary-category-grid-system .category-card img {
  object-fit: contain;
  object-position: center;
  padding: clamp(12px, 1.5vw, 20px);
}

.sanitary-category-grid-system .category-card:nth-child(6) img,
.sanitary-category-grid-system .category-card:nth-child(8) img,
.sanitary-category-grid-system .category-card:nth-child(9) img {
  object-fit: cover;
  padding: 0;
}

.sanitary-category-grid-system .category-card > span:not(.category-image) {
  margin-top: 10px;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.18;
}

.sanitary-home-strip .sanitary-category-grid-system .category-card > span:not(.category-image) {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.25;
}

@media (min-width: 1101px) {
  .sanitary-home-strip .sanitary-category-grid-system {
    --sanitary-grid-gap: clamp(12px, 1vw, 18px);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--sanitary-grid-gap);
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-card,
  .sanitary-home-strip .sanitary-category-grid-system .category-card:last-child:nth-child(4n + 1) {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-image,
  .sanitary-category-grid-system .category-image {
    height: clamp(128px, 8.2vw, 164px);
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-card img {
    padding: clamp(9px, 0.9vw, 14px);
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-card > span:not(.category-image) {
    margin-top: 8px;
    font-size: clamp(11.5px, 0.72vw, 13px);
    line-height: 1.24;
  }
}

.subcategory-page .subcategory-home-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(12px, 1.1vw, 18px);
  align-items: start;
}

.subcategory-page .subcategory-home-grid .category-card,
.subcategory-page .subcategory-home-grid .category-card:nth-last-child(3):nth-child(4n + 1),
.subcategory-page .subcategory-home-grid .category-card:nth-last-child(2):nth-child(4n + 1),
.subcategory-page .subcategory-home-grid .category-card:nth-last-child(1):nth-child(4n + 1) {
  flex: 1 1 132px;
  max-width: 190px;
  min-width: 0;
  width: auto;
  grid-column: auto;
  justify-self: stretch;
}

.subcategory-page .subcategory-home-grid .category-image {
  height: clamp(108px, 7.4vw, 146px);
}

.subcategory-page .subcategory-home-grid .category-card:nth-child(n) img {
  object-fit: contain;
  padding: clamp(8px, 1vw, 14px);
}

.subcategory-page .subcategory-home-grid .category-card > span:not(.category-image) {
  margin-top: 8px;
  font-size: clamp(12px, 0.86vw, 13px);
  line-height: 1.22;
}

.subcategory-home-strip .section-heading h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-large-size);
  line-height: 1.15;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.subcategory-brand-band,
.subcategory-about-band,
.subcategory-support-band,
.subcategory-reviews-band {
  background: var(--page-bg);
}

.outdoor-explore {
  padding: 34px var(--page-pad) 86px;
  background: var(--page-bg);
}

.outdoor-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.outdoor-shell h2 {
  margin: 0 0 30px;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
}

.outdoor-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.92fr) minmax(280px, 0.98fr) minmax(260px, 0.94fr);
  column-gap: clamp(18px, 2vw, 34px);
  align-items: start;
}

.outdoor-card {
  display: grid;
  color: #050505;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.2;
  font-weight: var(--weight-regular);
}

.outdoor-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.outdoor-card span {
  display: grid;
  gap: 12px;
}

.outdoor-card span::after {
  content: "\2192";
  color: rgba(33, 33, 35, 0.64);
  font-size: 15px;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.outdoor-card:hover img,
.outdoor-card:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.018);
}

.outdoor-card:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 8px;
}

.outdoor-card-left {
  gap: 18px;
}

.outdoor-card-left img {
  aspect-ratio: 0.76 / 1;
}

.outdoor-card-center {
  gap: 18px;
  margin-top: 6px;
}

.outdoor-card-center img {
  aspect-ratio: 0.92 / 1;
}

.outdoor-card-right {
  gap: 18px;
}

.outdoor-card-right img {
  aspect-ratio: 0.76 / 1;
}

.review-video-card {
  display: block;
}

.review-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-secondary);
  cursor: pointer;
}

.review-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(33, 33, 35, 0.04), rgba(33, 33, 35, 0.28) 72%),
    linear-gradient(180deg, rgba(33, 33, 35, 0.05), rgba(33, 33, 35, 0.22));
  opacity: 1;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.review-video-card.is-playing .review-video-frame::after {
  opacity: 0;
}

.outdoor-card-left .review-video-frame,
.outdoor-card-right .review-video-frame {
  aspect-ratio: 0.76 / 1;
}

.outdoor-card-center .review-video-frame {
  aspect-ratio: 0.92 / 1;
}

.review-video-frame img,
.review-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-video-frame video {
  background: var(--brand-secondary);
}

.review-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: clamp(64px, 5.8vw, 92px);
  height: clamp(64px, 5.8vw, 92px);
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(135, 60, 30, 0.92);
  box-shadow:
    0 22px 54px rgba(33, 33, 35, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(8px);
}

.review-video-play::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(222, 179, 74, 0.46);
  border-radius: inherit;
  opacity: 0.82;
}

.review-video-play::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.review-video-play svg {
  position: relative;
  z-index: 1;
  width: clamp(26px, 2.25vw, 36px);
  height: clamp(26px, 2.25vw, 36px);
  margin-left: 4px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(33, 33, 35, 0.2));
}

.review-video-frame video::-webkit-media-controls {
  display: none !important;
}

.review-video-card:hover .review-video-play,
.review-video-play:focus-visible {
  background: var(--brand-primary);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.04);
  outline: none;
}

.review-video-card.is-playing .review-video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.cabana-edit {
  padding: 64px var(--page-pad) 76px;
  background: var(--page-bg);
}

.cabana-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.cabana-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.cabana-header h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-compact-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
}

.cabana-header a:not(.cabana-detail-button) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #050505;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.cabana-header a:not(.cabana-detail-button)::after {
  content: "\2192";
  color: rgba(33, 33, 35, 0.68);
  font-size: 15px;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.cabana-header a:not(.cabana-detail-button):hover,
.cabana-header a:not(.cabana-detail-button):focus-visible {
  color: var(--burnt);
  outline: none;
}

.cabana-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(135, 60, 30, 0.16);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cabana-detail-button:hover,
.cabana-detail-button:focus-visible {
  color: #fff;
  background: #6f3219;
  border-color: #6f3219;
  box-shadow: 0 14px 30px rgba(135, 60, 30, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.cabana-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.cabana-product {
  display: grid;
  gap: 14px;
  color: #050505;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.25;
}

.cabana-image {
  display: block;
  aspect-ratio: 0.78 / 1;
  overflow: hidden;
  background: var(--page-bg);
}

.cabana-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.cabana-product:hover .cabana-image img,
.cabana-product:focus-visible .cabana-image img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.cabana-product:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 6px;
}

.brand-showcase-band {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.brand-showcase-grid {
  align-items: stretch;
}

.brand-showcase-card {
  gap: 12px;
}

.brand-showcase-media {
  aspect-ratio: 0.78 / 1;
  border-radius: 8px;
}

.brand-showcase-media img {
  object-fit: cover;
}

.brand-showcase-card > span:last-child {
  color: var(--burnt);
}

.brand-logo-showcase .brand-showcase-grid {
  min-height: 0;
}

.brand-logo-showcase .brand-showcase-card[hidden] {
  display: none;
}

.brand-logo-showcase .brand-showcase-card {
  animation: realizedProjectCardIn 360ms ease both;
}

.brand-logo-showcase .brand-showcase-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1.5 / 1;
  padding: clamp(18px, 1.8vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 250, 247, 0.96));
  border: 1px solid rgba(135, 60, 30, 0.1);
  box-shadow:
    0 18px 42px rgba(33, 33, 35, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand-logo-showcase .brand-showcase-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-logo-showcase .brand-showcase-card > span:not(.brand-showcase-media) {
  display: none;
}

.about-page .brand-showcase-header,
.about-page .realized-projects-header {
  justify-content: center;
  text-align: center;
}

.about-page .brand-showcase-header h2,
.about-page .realized-projects-header h2 {
  margin-inline: auto;
}

.realized-projects-grid {
  min-height: clamp(286px, 26vw, 482px);
}

.realized-project-card {
  animation: realizedProjectCardIn 360ms ease both;
}

.realized-project-card[hidden] {
  display: none;
}

.realized-project-card > span:last-child {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 3.8em;
}

.realized-projects-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(18px, 2.4vw, 30px);
}

.realized-projects-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--brand-primary);
  background: #fff;
  border: 1px solid rgba(135, 60, 30, 0.24);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(33, 33, 35, 0.08);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.realized-projects-control svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.realized-projects-control:hover,
.realized-projects-control:focus-visible {
  color: #fff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  outline: none;
  transform: translateY(-1px);
}

.realized-projects-control:disabled {
  opacity: 0.38;
  pointer-events: none;
  transform: none;
}

.realized-projects-status {
  min-width: 54px;
  color: rgba(33, 33, 35, 0.62);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.brand-logo-showcase {
  padding-bottom: clamp(42px, 4.5vw, 64px);
}

.brand-logo-showcase .brand-showcase-controls {
  width: fit-content;
  margin: clamp(14px, 1.35vw, 20px) auto 0;
  padding: 5px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--brand-accent-rgb), 0.13);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(33, 33, 35, 0.07);
  backdrop-filter: blur(10px);
}

.brand-logo-showcase .brand-showcase-control {
  width: 38px;
  height: 38px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand-logo-showcase .brand-showcase-control:hover,
.brand-logo-showcase .brand-showcase-control:focus-visible {
  color: #fff;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.brand-logo-showcase .brand-showcase-status {
  min-width: 48px;
  color: rgba(33, 33, 35, 0.66);
}

@keyframes realizedProjectCardIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spotlight-section {
  padding: 14px var(--page-pad) 56px;
  background: var(--page-bg);
}

.spotlight-inner {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.spotlight-inner h2 {
  margin: 0 0 22px;
  color: #050505;
  font-size: var(--heading-section-compact-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
}

.project-highlight-grid {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1.12fr) minmax(32px, 0.22fr) minmax(0, 1.12fr) minmax(100px, 0.44fr);
  column-gap: clamp(20px, 3.8vw, 68px);
  align-items: start;
}

.project-highlight {
  display: grid;
  align-items: end;
  gap: clamp(18px, 2.2vw, 30px);
  color: #050505;
}

.project-highlight-left {
  grid-column: 1 / 3;
  grid-template-columns: minmax(100px, 0.34fr) minmax(0, 1fr);
}

.project-highlight-right {
  grid-column: 4 / 6;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 0.34fr);
  margin-top: clamp(86px, 12vw, 150px);
}

.project-highlight-copy {
  display: grid;
  gap: 14px;
  color: #050505;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.14;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.project-highlight-copy span:last-child {
  color: rgba(33, 33, 35, 0.72);
  font-size: 15px;
}

.project-highlight-media {
  display: block;
  aspect-ratio: 0.75 / 1;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.06);
}

.project-highlight-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease, filter 360ms ease;
}

.project-highlight:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 8px;
}

.project-highlight:hover .project-highlight-media img,
.project-highlight:focus-visible .project-highlight-media img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.project-highlight:hover .project-highlight-copy,
.project-highlight:focus-visible .project-highlight-copy {
  color: var(--burnt);
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  max-width: 100%;
  min-width: 0;
}

.project-showcase-stage {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: clamp(340px, 30vw, 440px);
}

.project-showcase-card {
  grid-area: 1 / 1;
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 3.6vw, 56px);
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-showcase-card.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}

.project-showcase-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: clamp(300px, 28vw, 410px);
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: rgba(33, 33, 35, 0.08);
}

.project-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 33, 35, 0.12), transparent 45%, rgba(33, 33, 35, 0.18));
  pointer-events: none;
}

.project-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.project-showcase-card.is-active .project-showcase-media img {
  transform: scale(1);
}

.project-showcase-card:hover .project-showcase-media img,
.project-showcase-card:focus-within .project-showcase-media img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.project-showcase-copy {
  align-self: end;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(14px, 1.8vw, 24px) 0;
  color: var(--charcoal);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.project-showcase-kicker {
  margin: 0;
  color: var(--burnt);
  font-size: 13px;
  line-height: 1;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-showcase-copy h3 {
  margin: 0;
  color: #050505;
  max-width: 100%;
  font-size: var(--heading-section-compact-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.project-showcase-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.project-showcase-facts div {
  display: grid;
  grid-template-columns: minmax(120px, 0.52fr) minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.project-showcase-facts dt,
.project-showcase-facts dd {
  margin: 0;
}

.project-showcase-facts dt {
  color: rgba(33, 33, 35, 0.58);
  font-size: 13px;
  line-height: 1.35;
  font-weight: var(--weight-bold);
}

.project-showcase-facts dd {
  color: #050505;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.4;
  font-weight: var(--weight-regular);
}

.project-showcase-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  margin-top: 0;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  border-bottom: 1px solid currentColor;
  transition: color 180ms ease, gap 180ms ease;
}

.project-showcase-link:hover,
.project-showcase-link:focus-visible {
  gap: 18px;
  color: var(--burnt);
}

.project-showcase-link:focus-visible,
.project-showcase-arrow:focus-visible,
.project-showcase-dot:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 5px;
}

.project-showcase-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.project-showcase-arrow {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: var(--charcoal);
  background: transparent;
  border: 1px solid rgba(33, 33, 35, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(135, 60, 30, 0.035);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-showcase-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-showcase-arrow:hover {
  color: #fff;
  background: var(--burnt);
  border-color: var(--burnt);
}

.project-showcase-dots {
  display: flex;
  align-items: center;
  flex: 0 1 min(58vw, 560px);
  gap: 6px;
  max-width: min(58vw, 560px);
  min-width: 0;
  padding: 10px 2px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.project-showcase-dots::-webkit-scrollbar {
  display: none;
}

.project-showcase-dot {
  position: relative;
  width: 20px;
  flex: 0 0 20px;
  height: 10px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.project-showcase-dot::before,
.project-showcase-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(33, 33, 35, 0.22);
}

.project-showcase-dot::after {
  width: 0;
  background: var(--burnt);
  transition: width 240ms ease;
}

.project-showcase-dot.is-active::after {
  width: 100%;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.52fr 1.08fr 0.36fr 1.08fr 0.52fr;
  grid-template-rows: auto auto;
  column-gap: clamp(22px, 4vw, 78px);
  row-gap: clamp(50px, 7vw, 78px);
  align-items: center;
}

.spotlight-feature {
  display: grid;
  align-items: center;
  gap: 18px;
  color: #050505;
}

.spotlight-feature-left {
  grid-column: 1 / span 2;
  grid-template-columns: minmax(90px, 0.52fr) minmax(240px, 1.48fr);
}

.spotlight-feature-right {
  grid-column: 4 / span 2;
  grid-template-columns: minmax(240px, 1.48fr) minmax(110px, 0.52fr);
}

.spotlight-feature img {
  width: 100%;
  aspect-ratio: 0.76 / 1;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.spotlight-feature:hover img,
.spotlight-feature:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.018);
}

.spotlight-feature:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 8px;
}

.spotlight-caption {
  align-self: end;
  display: inline-grid;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--weight-medium);
  line-height: 1.2;
}

.spotlight-caption::after {
  content: "\2192";
  color: rgba(33, 33, 35, 0.72);
  font-size: 15px;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.spotlight-story {
  grid-column: 2 / 5;
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.spotlight-story img {
  width: 100%;
  aspect-ratio: 0.76 / 1;
  object-fit: cover;
}

.spotlight-story p {
  margin: 0 0 16px;
  color: rgba(33, 33, 35, 0.74);
  font-size: 12px;
  font-weight: var(--weight-medium);
}

.spotlight-story h3 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-large-size);
  line-height: 1.14;
  font-weight: var(--weight-regular);
}

.spotlight-note {
  grid-column: 2 / 5;
  margin: -20px auto 0;
  max-width: 760px;
  color: rgba(33, 33, 35, 0.66);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.18;
  text-align: center;
}

.community-band {
  padding: clamp(68px, 7.4vw, 112px) var(--page-pad);
  background: var(--page-bg);
}

.sanitary-support-band {
  padding-bottom: clamp(30px, 3.2vw, 44px);
}

.sanitary-support-band + .community-band {
  padding-top: clamp(38px, 4.2vw, 58px);
}

.community-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.community-header {
  width: min(900px, 100%);
  margin: 0 auto clamp(34px, 4vw, 56px);
  text-align: center;
}

.community-header h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.community-header > p {
  width: min(610px, 100%);
  margin: 16px auto 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.62;
  font-weight: var(--weight-medium);
}

.community-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.community-social {
  width: clamp(154px, 11.25vw, 168px);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 5px 10px;
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: var(--weight-semibold);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.community-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 16px;
}

.community-social-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  min-width: 0;
}

.community-social-name,
.community-social-count {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.community-social-name {
  font-size: 12px;
  line-height: 1.35;
}

.community-social-count {
  font-size: 9.5px;
  line-height: 1.32;
  font-weight: var(--weight-medium);
  opacity: 1;
}

.community-social-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 34%, #e1306c 58%, #fd1d1d 78%, #fcb045 100%);
}

.community-social-facebook {
  background: #145dbf;
}

.community-social-youtube {
  background: #b00020;
}

.community-social-linkedin {
  background: #0a66c2;
}

.community-social-tiktok {
  background:
    linear-gradient(90deg, rgba(37, 244, 238, 0.88) 0 4px, transparent 4px calc(100% - 4px), rgba(254, 44, 85, 0.88) calc(100% - 4px) 100%),
    #010101;
}

.community-social:hover,
.community-social:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(33, 33, 35, 0.14);
  outline: none;
}

.community-carousel-wrap {
  position: relative;
}

.community-carousel {
  display: flex;
  gap: clamp(14px, 1.55vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 0 10px;
  scrollbar-width: none;
}

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

.community-card {
  flex: 0 0 clamp(188px, 16.5vw, 232px);
  margin: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.08);
  border-radius: 8px;
  scroll-snap-align: center;
  text-decoration: none;
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.community-card:hover img,
.community-card:focus-within img,
.community-card:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.community-card:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 5px;
}

.community-post-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(33, 33, 35, 0.18);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  letter-spacing: 0;
}

.community-post-card-instagram .community-post-badge {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 34%, #e1306c 62%, #fcb045 100%);
}

.community-post-card-facebook .community-post-badge {
  background: #145dbf;
}

.community-carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #050505;
  border: 1px solid rgba(33, 33, 35, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 24px rgba(33, 33, 35, 0.07),
    inset 0 0 0 1px rgba(135, 60, 30, 0.04);
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.community-carousel-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-carousel-button-prev {
  left: -21px;
}

.community-carousel-button-next {
  right: -21px;
}

.community-carousel-button:hover,
.community-carousel-button:focus-visible {
  color: var(--white);
  background: var(--burnt);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.customer-reviews-band {
  padding: clamp(56px, 6.4vw, 92px) var(--page-pad);
  background: var(--page-bg);
  border-top: 0;
}

.customer-reviews-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  margin: 0 auto;
}

.customer-reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  justify-content: space-between;
  align-items: end;
  gap: clamp(18px, 4vw, 72px);
}

.reviews-heading-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.reviews-eyebrow {
  margin: 0;
  color: var(--burnt);
  font-size: 12px;
  line-height: 1;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-score-panel {
  min-width: 168px;
  display: grid;
  justify-items: end;
  gap: 6px;
  padding: 18px 0 18px 24px;
  color: var(--charcoal);
  border-left: 1px solid var(--line-soft);
}

.reviews-score-panel strong {
  color: #050505;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 0.9;
  font-weight: var(--weight-regular);
}

.reviews-score-panel > span:last-child {
  color: rgba(33, 33, 35, 0.58);
  font-size: 12px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

.customer-reviews-heading h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.customer-reviews-heading p {
  width: min(600px, 100%);
  margin: 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.55;
  font-weight: var(--weight-medium);
}

.reviews-score-panel,
.customer-review-feature,
.customer-review-card,
.customer-review-wall {
  min-width: 0;
}

.customer-reviews-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 2fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.customer-review-feature,
.customer-review-card {
  border-radius: 8px;
}

.customer-review-feature {
  min-height: 0;
  display: grid;
  align-content: space-between;
  gap: clamp(20px, 2.6vw, 34px);
  padding: clamp(22px, 2.5vw, 36px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(135, 60, 30, 0.97), rgba(33, 33, 35, 0.98)),
    var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 48px rgba(33, 33, 35, 0.12);
}

.review-rating {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #fff;
  border: 1px solid rgba(222, 179, 74, 0.32);
  background: rgba(222, 179, 74, 0.12);
  font-size: 11px;
  line-height: 1;
  font-weight: var(--weight-semibold);
}

.review-stars {
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}

.customer-review-feature blockquote,
.customer-review-card blockquote {
  margin: 0;
  font-weight: var(--weight-medium);
}

.customer-review-feature blockquote {
  max-width: 560px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.34;
}

.customer-review-feature footer,
.customer-review-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.customer-review-feature footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
}

.customer-review-feature strong,
.customer-review-meta strong {
  color: inherit;
  font-size: 14px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.customer-review-feature footer span,
.customer-review-meta span {
  color: rgba(33, 33, 35, 0.56);
  font-size: 12px;
  line-height: 1.35;
  font-weight: var(--weight-medium);
}

.customer-review-feature footer span {
  color: rgba(255, 255, 255, 0.72);
}

.customer-review-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.customer-review-card {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: clamp(16px, 1.55vw, 22px);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(33, 33, 35, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.customer-review-card--wide {
  grid-column: span 2;
}

.customer-review-card--compact {
  align-content: space-between;
  min-height: 178px;
}

.customer-review-card:hover {
  border-color: rgba(135, 60, 30, 0.26);
  background: var(--page-bg);
  box-shadow: 0 18px 38px rgba(33, 33, 35, 0.06);
  transform: translateY(-2px);
}

.customer-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.customer-review-meta {
  display: grid;
  gap: 4px;
}

.customer-review-card blockquote {
  color: rgba(33, 33, 35, 0.76);
  font-size: clamp(13px, 0.98vw, 14.5px);
  line-height: 1.52;
}

.review-chip {
  width: max-content;
  max-width: 100%;
  align-self: end;
  padding: 6px 9px;
  color: var(--burnt);
  border: 1px solid var(--line-warm);
  background: rgba(135, 60, 30, 0.05);
  font-size: 11px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.reviews-map-link {
  color: var(--burnt);
  font-size: 12px;
  line-height: 1.2;
  font-weight: var(--weight-bold);
  text-decoration: none;
}

.reviews-map-link:hover,
.reviews-map-link:focus-visible {
  color: #050505;
  outline: none;
}

.customer-reviews-layout[hidden] {
  display: none !important;
}

.customer-review-marquee {
  width: 100%;
  overflow: hidden;
  padding: 4px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.customer-review-track {
  width: max-content;
  display: flex;
  gap: 16px;
  align-items: stretch;
  animation: customerReviewsMarquee 118s linear infinite;
  will-change: transform;
}

.customer-review-track:not([data-review-marquee-ready="true"]) {
  animation: none;
}

.customer-review-set {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  min-width: max-content;
}

.customer-review-pill {
  width: 326px;
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 21px 24px 20px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(33, 33, 35, 0.13);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(33, 33, 35, 0.045);
  text-decoration: none;
  white-space: normal;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.customer-review-pill:hover,
.customer-review-pill:focus-visible {
  color: var(--charcoal);
  background: #fff;
  border-color: rgba(135, 60, 30, 0.24);
  box-shadow: 0 18px 36px rgba(33, 33, 35, 0.075);
  outline: none;
  transform: translateY(-1px);
}

.customer-review-source {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(33, 33, 35, 0.78);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-bold);
}

.customer-review-google-mark {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-review-google-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.customer-review-pill .review-stars {
  order: 2;
  color: #fbbc04;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
}

.customer-review-author {
  order: 4;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  padding-top: 14px;
  color: #050505;
  border-top: 1px solid rgba(33, 33, 35, 0.12);
}

.customer-review-author-text {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 3px;
}

.customer-review-author-name {
  display: block;
  overflow: visible;
  color: #050505;
  font-size: 15px;
  line-height: 1.36;
  font-weight: var(--weight-bold);
  overflow-wrap: anywhere;
  text-overflow: clip;
  white-space: normal;
}

.customer-review-pill strong:not(.customer-review-author) {
  order: 4;
  padding-top: 14px;
  color: #050505;
  border-top: 1px solid rgba(33, 33, 35, 0.12);
  font-size: 15px;
  line-height: 1.2;
  font-weight: var(--weight-bold);
}

.customer-review-pill-copy {
  order: 3;
  min-height: 74px;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(33, 33, 35, 0.88);
  font-size: 15px;
  line-height: 1.48;
  font-weight: var(--weight-medium);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.customer-review-pill-copy::before {
  content: "\"";
}

.customer-review-pill-copy::after {
  content: "\"";
}

@keyframes customerReviewsMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 6px), 0, 0);
  }
}

@media (max-width: 700px) {
  .customer-review-marquee {
    margin-inline: calc(var(--page-pad) * -1);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  }

  .customer-review-pill {
    width: min(300px, calc(100vw - 44px));
    min-height: 206px;
    padding: 18px 20px;
    gap: 10px;
    border-radius: 10px;
  }

  .customer-review-pill-copy {
    font-size: 14px;
  }

  .customer-review-author-name {
    font-size: 14px;
    line-height: 1.38;
  }

}

@media (prefers-reduced-motion: reduce) {
  .customer-review-track {
    animation-duration: 160s;
  }
}

@media (max-width: 900px) {
  .hero-seo-copy {
    bottom: auto;
    top: clamp(18px, 6svh, 34px);
    width: min(360px, calc(100% - (var(--page-gutter) * 2)));
  }

  .hero-seo-title {
    max-width: 20ch;
    font-size: clamp(20px, 4.6vw, 30px);
  }

  .hero-seo-copy p:not(.hero-seo-eyebrow) {
    max-width: 360px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .hero-seo-copy {
    top: 18px;
    width: min(320px, calc(100% - (var(--page-gutter) * 2)));
  }

  .hero-seo-eyebrow {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .hero-seo-title {
    max-width: 21ch;
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1.12;
  }

  .hero-seo-copy p:not(.hero-seo-eyebrow),
  .hero-seo-actions {
    display: none;
  }

  .home-category-heading {
    margin-bottom: 18px;
    text-align: left;
  }

  .home-category-heading :is(h1, h2) {
    max-width: min(330px, 100%);
    font-size: clamp(21px, 5.6vw, 24px);
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .home-category-heading span {
    font-size: 14px;
  }

  .cutting-service-item-title {
    min-height: 0;
  }
}

.customer-reviews-layout {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.customer-review-wall {
  display: contents;
}

.customer-review-feature,
.customer-review-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: clamp(16px, 1.55vw, 22px);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 33, 35, 0.035);
}

.customer-review-feature {
  align-content: start;
}

.customer-review-feature blockquote,
.customer-review-card blockquote {
  max-width: none;
  color: rgba(33, 33, 35, 0.76);
  font-size: clamp(13px, 0.98vw, 14.5px);
  line-height: 1.52;
}

.customer-review-feature footer {
  display: grid;
  gap: 4px;
  align-items: start;
  justify-content: start;
  padding-top: 0;
  border-top: 0;
}

.customer-review-feature strong,
.customer-review-feature footer span {
  color: inherit;
}

.customer-review-feature footer span {
  color: rgba(33, 33, 35, 0.56);
}

.customer-review-card--wide,
.customer-review-card--compact {
  grid-column: auto;
  min-height: 190px;
}

.home-guide-band,
.home-faq-band {
  padding: clamp(58px, 6.4vw, 96px) var(--page-pad);
  background: var(--page-bg);
  border-top: 0;
}

.home-guide-band {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.home-guide-shell,
.home-faq-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.home-guide-shell {
  display: grid;
  gap: clamp(26px, 3vw, 42px);
}

.home-guide-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-guide-heading h2,
.home-faq-shell h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-large-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.home-guide-heading h2 {
  position: relative;
  width: fit-content;
  max-width: min(100%, 760px);
  padding: 0;
}

.home-guide-heading h2::before,
.home-guide-heading h2::after {
  content: none;
  display: none;
}

.home-guide-heading h2::before {
  right: calc(100% + clamp(18px, 2vw, 28px));
}

.home-guide-heading h2::after {
  left: calc(100% + clamp(18px, 2vw, 28px));
}

.home-guide-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
}

.home-guide-card {
  position: relative;
  isolation: isolate;
  height: clamp(292px, 28vw, 372px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--charcoal);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(33, 33, 35, 0.1);
}

.home-guide-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-guide-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(33, 33, 35, 0.12), rgba(33, 33, 35, 0.74)),
    linear-gradient(0deg, rgba(135, 60, 30, 0.18), rgba(135, 60, 30, 0));
}

.home-guide-card-content {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.2vw, 30px);
  text-align: center;
}

.home-guide-card-content .home-guide-card-copy,
.home-guide-card-content .home-guide-card-kicker {
  display: none;
}

.home-guide-card-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1;
  font-weight: var(--weight-semibold);
}

.home-guide-card strong {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.18;
  font-weight: var(--weight-semibold);
}

.home-guide-card-copy {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(12px, 0.96vw, 14px);
  line-height: 1.45;
  font-weight: var(--weight-medium);
}

.home-guide-card-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid rgba(var(--brand-accent-rgb), 0.94);
  border-radius: 999px;
  background: rgba(var(--brand-accent-rgb), 0.94);
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(33, 33, 35, 0.28));
  font-size: 12px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.home-guide-card:hover img,
.home-guide-card:focus-visible img {
  transform: scale(1.04);
}

.home-guide-card:hover .home-guide-card-action,
.home-guide-card:focus-visible .home-guide-card-action {
  color: #fff6d7;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.home-guide-card:focus-visible,
.home-faq-list summary:focus-visible {
  outline: 2px solid rgba(var(--brand-accent-rgb), 0.72);
  outline-offset: 3px;
}

.home-faq-list summary:hover,
.home-faq-list summary:focus-visible {
  color: var(--burnt);
}

.home-faq-band {
  padding-top: clamp(62px, 7vw, 104px);
  padding-bottom: clamp(62px, 7vw, 104px);
}

.home-faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(26px, 3.6vw, 46px);
  align-items: start;
  text-align: center;
}

.home-faq-list {
  width: min(100%, 980px);
  min-width: 0;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  text-align: left;
}

.home-faq-list details {
  border-bottom: 1px solid var(--line-soft);
}

.home-faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #050505;
  font-size: 15px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
  list-style: none;
  cursor: pointer;
}

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

.home-faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: rgba(33, 33, 35, 0.68);
  font-size: 20px;
  line-height: 1;
  font-weight: var(--weight-regular);
}

.home-faq-list details[open] summary::after {
  content: "-";
}

.home-faq-list p {
  width: min(760px, 100%);
  margin: -8px 0 26px;
  color: rgba(33, 33, 35, 0.72);
  font-size: 14px;
  line-height: 1.68;
  font-weight: var(--weight-medium);
}

.curation-band {
  margin-top: 72px;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
  background: var(--page-bg);
}

.brand-grid {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.brand-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--page-bg);
  border: 1px solid var(--line-soft);
}

.brand-grid img {
  height: 220px;
}

.brand-grid h3 {
  margin: 18px 18px 4px;
  color: var(--burnt);
  font-size: 24px;
  font-weight: var(--weight-medium);
}

.brand-grid p {
  margin: 0 18px 20px;
  color: rgba(33, 33, 35, 0.72);
}

.trade-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 64px var(--page-pad);
  background: var(--page-bg);
  color: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trade-band > div {
  width: min(760px, 100%);
}

.trade-band p {
  color: rgba(33, 33, 35, 0.74);
}

.trade-band .eyebrow {
  color: var(--burnt);
}

.trade-band .outline-button.dark {
  color: var(--brand-primary);
}

.service-band {
  width: var(--wide-shell);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  margin: 0 auto;
  background: var(--page-bg);
}

.service-copy {
  align-self: center;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 22px;
}

.service-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--burnt);
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  background: rgba(135, 60, 30, 0.055);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.15;
}

.service-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

.about-page .site-header,
.category-page .site-header {
  position: sticky;
  inset: auto;
  top: 0;
  color: var(--charcoal);
  background: var(--page-bg);
  border-bottom: 1px solid var(--header-separator);
  box-shadow: 0 8px 22px rgba(33, 33, 35, 0.018);
}

.about-page .site-header::before,
.category-page .site-header::before {
  content: none;
}

.about-page .announcement-bar,
.category-page .announcement-bar {
  color: var(--white);
}

.about-page .header-main,
.category-page .header-main {
  background: var(--page-bg);
}

.about-page .mega-menu,
.category-page .mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
}

.about-page .brand img,
.category-page .brand img {
  content: url("assets/logos/merlons-wordmark-transparent.png");
  filter: drop-shadow(0 6px 16px rgba(33, 33, 35, 0.035));
}

.about-page .menu-trigger,
.about-page .menu-trigger:hover,
.about-page .menu-trigger:focus-visible,
.about-page .menu-trigger.is-active,
.about-page .language-current,
.about-page .icon-button,
.category-page .menu-trigger,
.category-page .menu-trigger:hover,
.category-page .menu-trigger:focus-visible,
.category-page .menu-trigger.is-active,
.category-page .language-current,
.category-page .icon-button {
  color: #050505;
  text-shadow: none;
}

.about-page .menu-trigger::after,
.category-page .menu-trigger::after {
  background: var(--burnt);
}

.about-page .language-current,
.about-page .icon-button,
.category-page .language-current,
.category-page .icon-button {
  filter: none;
}

.about-page .language-current:hover,
.about-page .language-current:focus-visible,
.about-page .language-selector:focus-within .language-current,
.about-page .icon-button:hover,
.about-page .icon-button:focus-visible,
.category-page .language-current:hover,
.category-page .language-current:focus-visible,
.category-page .language-selector:focus-within .language-current,
.category-page .icon-button:hover,
.category-page .icon-button:focus-visible {
  color: var(--burnt);
}

.about-page .icon-button:hover,
.about-page .icon-button:focus-visible,
.category-page .icon-button:hover,
.category-page .icon-button:focus-visible {
  color: var(--white);
  background: var(--burnt);
  opacity: 1;
}

:is(.home-page, .blog-page) .site-header {
  position: sticky;
  inset: auto;
  top: 0;
  color: var(--charcoal);
  background: var(--page-bg);
  border-bottom: 1px solid var(--header-separator);
  box-shadow: 0 8px 22px rgba(33, 33, 35, 0.018);
}

:is(.home-page, .blog-page) .site-header::before {
  content: none;
}

:is(.home-page, .blog-page) .header-main {
  background: var(--page-bg);
}

.blog-page .site-header.is-scroll-hidden {
  pointer-events: auto;
}

.blog-page .site-header.is-scroll-hidden .header-main {
  opacity: 1;
  filter: none;
  transform: none;
}

:is(.home-page, .blog-page) .mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
}

:is(.home-page, .blog-page) .brand img {
  content: url("assets/logos/merlons-wordmark-transparent.png");
  filter: drop-shadow(0 6px 16px rgba(33, 33, 35, 0.035));
}

:is(.home-page, .blog-page) .menu-trigger,
:is(.home-page, .blog-page) .menu-trigger:hover,
:is(.home-page, .blog-page) .menu-trigger:focus-visible,
:is(.home-page, .blog-page) .menu-trigger.is-active,
:is(.home-page, .blog-page) .language-current,
:is(.home-page, .blog-page) .icon-button {
  color: #050505;
  text-shadow: none;
}

:is(.home-page, .blog-page) .menu-trigger::after {
  background: var(--burnt);
}

:is(.home-page, .blog-page) .language-current,
:is(.home-page, .blog-page) .icon-button {
  filter: none;
}

:is(.home-page, .blog-page) .language-current:hover,
:is(.home-page, .blog-page) .language-current:focus-visible,
:is(.home-page, .blog-page) .language-selector:focus-within .language-current,
:is(.home-page, .blog-page) .icon-button:hover,
:is(.home-page, .blog-page) .icon-button:focus-visible {
  color: var(--burnt);
}

:is(.home-page, .blog-page) .icon-button:hover,
:is(.home-page, .blog-page) .icon-button:focus-visible {
  color: var(--white);
  background: var(--burnt);
  opacity: 1;
}

.home-page .hero-slide-sale .hero-content,
.home-page .hero-slide.is-active.hero-slide-sale .hero-content {
  padding: 0;
  transform: none;
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .site-header {
  position: absolute;
  inset: 0 0 auto;
  top: auto;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .site-header::before {
  content: "";
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .header-main {
  background: transparent;
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .brand img {
  content: url("assets/logos/merlons-wordmark-white.png");
  filter: drop-shadow(0 2px 14px rgba(33, 33, 35, 0.62));
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .site-header[data-menu-open="true"] .brand img {
  content: url("assets/logos/merlons-wordmark-transparent.png");
  filter: drop-shadow(0 8px 18px rgba(33, 33, 35, 0.12));
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .menu-trigger,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .menu-trigger:hover,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .menu-trigger:focus-visible,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .menu-trigger.is-active,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .language-current,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .icon-button {
  color: var(--white);
  text-shadow:
    0 2px 16px rgba(33, 33, 35, 0.82),
    0 0 1px rgba(33, 33, 35, 0.88);
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .menu-trigger::after {
  background: rgba(255, 255, 255, 0.86);
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .language-current,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .icon-button {
  filter: drop-shadow(0 2px 14px rgba(33, 33, 35, 0.42));
}

:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .language-current:hover,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .language-current:focus-visible,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .language-selector:focus-within .language-current,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .icon-button:hover,
:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page) .icon-button:focus-visible {
  color: var(--gold);
}

.about-page-main {
  color: var(--charcoal);
  overflow-x: clip;
}

.about-page-main :where(h1, h2, h3, p, li, a) {
  max-width: 100%;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none;
}

.about-editorial-hero {
  padding: clamp(71px, 8vw, 115px) var(--page-pad) clamp(71px, 8vw, 115px);
  background: var(--page-bg);
}

.about-editorial-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.98fr);
  gap: clamp(34px, 5.2vw, 78px);
  align-items: center;
  margin: 0 auto;
}

.about-editorial-shell > *,
.about-mission-shell > *,
.about-story-shell > * {
  min-width: 0;
}

.about-editorial-copy {
  max-width: 480px;
  justify-self: center;
  min-width: 0;
}

.about-editorial-copy h1 {
  margin: 0 0 16px;
  color: #050505;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.15;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-wrap: normal;
}

.about-editorial-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.62;
  font-weight: var(--weight-medium);
  overflow-wrap: normal;
}

.about-editorial-media,
.about-brand-media {
  margin: 0;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.06);
}

.about-editorial-media {
  aspect-ratio: 2.23 / 1;
}

.about-editorial-media img,
.about-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-brand-band {
  padding: clamp(38px, 4.4vw, 62px) var(--page-pad);
  background: var(--page-bg);
}

.about-brand-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.98fr);
  gap: clamp(34px, 5.4vw, 76px);
  align-items: center;
  margin: 0 auto;
}

.about-brand-copy {
  max-width: 395px;
}

.about-brand-title {
  margin: 0 0 28px;
  padding-left: 18px;
  border-left: 2px solid var(--charcoal);
  color: #050505;
  font-family: "Comfortaa", "Noto Sans Georgian", Arial, sans-serif;
  font-size: var(--heading-section-size);
  line-height: 0.95;
  font-weight: 650;
  letter-spacing: 0;
}

.about-brand-title span {
  display: block;
}

.about-brand-copy p {
  margin: 0;
  color: #050505;
  font-size: clamp(14px, 1.02vw, 16px);
  line-height: 1.62;
  font-weight: var(--weight-medium);
}

.about-brand-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--burnt);
  font-size: 15px;
  line-height: 1.3;
  font-weight: var(--weight-semibold);
}

.about-brand-link:hover,
.about-brand-link:focus-visible {
  color: #6f2f18;
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.about-brand-media {
  aspect-ratio: 1.43 / 1;
}

.about-section-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.about-section-kicker {
  margin: 0 0 14px;
  color: var(--burnt);
  font-size: 12px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-mission-band {
  padding: clamp(66px, 7.2vw, 108px) var(--page-pad);
  background: var(--page-bg);
  color: var(--charcoal);
}

.about-mission-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(250px, 0.86fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
}

.about-mission-copy {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  order: 2;
}

.about-goals-panel {
  order: 1;
}

.about-mission-copy .about-section-kicker {
  color: var(--burnt);
}

.about-mission-copy h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-wrap: normal;
}

.about-mission-copy p:not(.about-section-kicker) {
  width: min(520px, 100%);
  margin: 24px 0 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(14px, 1.02vw, 16px);
  line-height: 1.68;
  font-weight: var(--weight-medium);
  overflow-wrap: normal;
}

.about-goals-panel h3 {
  margin: 0 0 8px;
  color: #050505;
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.18;
  font-weight: var(--weight-regular);
}

.about-goals-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-goals-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.about-goals-list li:first-child {
  border-top: 1px solid var(--line-soft);
}

.about-goals-list span {
  color: var(--burnt);
  font-family: "Comfortaa", "Noto Sans Georgian", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.about-goals-list p {
  margin: 0;
  color: rgba(33, 33, 35, 0.74);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.62;
  font-weight: var(--weight-medium);
  overflow-wrap: normal;
}

.about-history-section,
.about-story-band {
  padding: clamp(70px, 8vw, 118px) var(--page-pad);
}

.about-history-section {
  background: var(--page-bg);
}

.about-section-heading {
  width: min(840px, 100%);
  margin-bottom: clamp(32px, 4vw, 58px);
}

.about-section-heading h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-wrap: normal;
}

.about-section-heading p:not(.about-section-kicker) {
  width: min(720px, 100%);
  margin: 18px 0 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.68;
  font-weight: var(--weight-medium);
  overflow-wrap: normal;
}

.about-history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-soft);
  background: var(--line-subtle);
  gap: 1px;
}

.about-history-timeline {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 1.65vw, 24px);
  align-items: stretch;
}

.about-history-card {
  min-width: 0;
  min-height: clamp(205px, 18vw, 252px);
  display: grid;
  align-content: start;
  gap: clamp(13px, 1.35vw, 20px);
  padding: clamp(20px, 2vw, 30px);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 42px rgba(33, 33, 35, 0.045);
}

.about-history-card:first-child {
  grid-row: 1 / span 2;
  padding: clamp(24px, 2.35vw, 36px);
}

.about-history-marker {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  color: var(--burnt);
  border: 1px solid var(--line-warm);
  border-radius: 50%;
  font-family: "Comfortaa", "Noto Sans Georgian", Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
}

.about-history-card h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.16;
  font-weight: var(--weight-regular);
}

.about-history-card p {
  margin: 0;
  color: rgba(33, 33, 35, 0.74);
  font-size: clamp(13px, 0.94vw, 14.5px);
  line-height: 1.62;
  font-weight: var(--weight-medium);
}

.about-history-card-featured {
  grid-column: auto;
  min-height: clamp(185px, 14vw, 230px);
  grid-template-columns: 1fr;
  align-items: start;
  column-gap: 0;
  padding-block: clamp(20px, 2vw, 30px);
  background:
    linear-gradient(135deg, rgba(135, 60, 30, 0.08), rgba(255, 255, 255, 0.58) 58%),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 46px rgba(135, 60, 30, 0.08);
}

.about-history-card-featured p {
  padding-top: 0;
}

.about-history-item {
  min-width: 0;
  display: grid;
  align-content: start;
  padding: clamp(22px, 2.4vw, 34px);
  background: var(--page-bg);
}

.about-history-item-wide {
  grid-column: span 3;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
  column-gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.about-history-item span {
  color: var(--burnt);
  font-family: "Comfortaa", "Noto Sans Georgian", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 650;
}

.about-history-item h3 {
  margin: 22px 0 14px;
  color: #050505;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  overflow-wrap: normal;
}

.about-history-item p {
  margin: 0;
  color: rgba(33, 33, 35, 0.74);
  font-size: clamp(13.5px, 1vw, 15.5px);
  line-height: 1.68;
  font-weight: var(--weight-medium);
  overflow-wrap: normal;
}

.about-story-band {
  background: var(--page-bg);
}

.about-story-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: start;
}

.about-story-media {
  margin: 0;
  padding: clamp(12px, 1.3vw, 18px);
  background: var(--page-bg);
  border: 1px solid var(--line-soft);
}

.about-story-media img {
  width: 100%;
  display: block;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  filter: contrast(1.06);
}

.about-story-copy h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-wrap: normal;
}

.about-story-copy p:not(.about-section-kicker) {
  margin: 18px 0 0;
  color: rgba(33, 33, 35, 0.74);
  font-size: clamp(14px, 1.06vw, 16px);
  line-height: 1.7;
  font-weight: var(--weight-medium);
  overflow-wrap: normal;
}

.about-duo-section {
  width: var(--wide-shell);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(64px, 11vw, 156px);
  row-gap: 48px;
  align-items: start;
  margin: 0 auto;
  padding: clamp(74px, 9vw, 122px) 0 clamp(58px, 6.6vw, 90px);
}

.about-duo-block {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.about-duo-block h2 {
  width: 100%;
  max-width: 100%;
  margin: 0 0 34px;
  color: #050505;
  font-size: var(--heading-section-large-size);
  line-height: 1.18;
  font-weight: var(--weight-regular);
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.about-duo-block p {
  width: min(100%, 640px);
  max-width: 640px;
  margin: 0;
  color: #050505;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  font-weight: var(--weight-medium);
  text-align: center;
  overflow-wrap: normal;
}

.about-page-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 0 18px;
  border-radius: 999px;
  color: #050505;
  border: 1px solid #050505;
  background: transparent;
  font-size: 13px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.about-page-button:hover,
.about-page-button:focus-visible {
  color: var(--white);
  border-color: var(--burnt);
  background: var(--burnt);
  outline: none;
  transform: translateY(-1px);
}

.back-to-top-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #050505;
  background: var(--page-bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.back-to-top-bar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top-bar:hover,
.back-to-top-bar:focus-visible {
  color: var(--burnt);
  outline: none;
}

.category-page-main {
  color: var(--charcoal);
  background: var(--page-bg);
}

.category-hero {
  position: relative;
  min-height: var(--hero-min-h);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--page-bg);
}

.category-hero-image,
.category-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-hero-image {
  object-fit: cover;
  object-position: var(--hero-position, center);
  transform: scale(1);
}

.category-hero-image-low {
  filter: saturate(0.96) contrast(0.98);
}

.category-hero-image-high {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 5200ms ease;
}

.category-hero-image-high.is-loaded {
  opacity: 1;
}

.category-hero-overlay {
  background:
    linear-gradient(180deg, rgba(33, 33, 35, 0.18) 0%, rgba(33, 33, 35, 0.22) 44%, rgba(33, 33, 35, 0.46) 100%),
    rgba(33, 33, 35, 0.08);
}

.category-hero-shell {
  position: relative;
  z-index: 1;
  width: var(--wide-shell);
  min-height: var(--hero-min-h);
  display: grid;
  align-content: end;
  gap: 48px;
  margin: 0 auto;
  padding: 32px 0 clamp(62px, 7vw, 92px);
}

.category-hero-copy {
  position: relative;
  isolation: isolate;
  width: min(700px, 100%);
  justify-self: center;
  padding: clamp(8px, 1.4vw, 18px);
  color: var(--white);
  text-align: center;
}

.category-hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(1040px, calc(100vw - 12px));
  height: clamp(320px, 35vw, 500px);
  top: 52%;
  left: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(5, 5, 5, 0.36) 0%,
      rgba(5, 5, 5, 0.27) 34%,
      rgba(5, 5, 5, 0.13) 64%,
      rgba(5, 5, 5, 0.04) 82%,
      rgba(5, 5, 5, 0) 100%
    );
  filter: blur(34px);
  transform: translate(-50%, -50%);
}

.category-hero-copy .eyebrow {
  color: rgba(222, 179, 74, 0.92);
}

.category-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: var(--heading-page-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(33, 33, 35, 0.46);
}

.category-hero-copy p:not(.eyebrow) {
  width: min(590px, 100%);
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
  font-weight: var(--weight-medium);
  text-shadow: 0 8px 26px rgba(5, 5, 5, 0.42);
}

.category-hero-copy .hero-benefits {
  width: min(700px, 100%);
  margin-top: clamp(14px, 1.5vw, 18px);
}

.category-hero-copy .hero-benefits + p:not(.eyebrow) {
  margin-top: clamp(14px, 1.45vw, 18px);
}

.category-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.category-showcase,
.category-room-section,
.category-recommendations,
.category-learn-section,
.category-faq-section {
  padding: clamp(64px, 7vw, 104px) var(--page-pad);
  background: var(--page-bg);
}

.category-room-section,
.category-learn-section {
  background: var(--page-bg);
}

.category-section-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  margin: 0 auto;
}

.category-showcase > .category-section-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: start;
}

.tiles-page #tile-categories > .category-section-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile-format-catalog-page .catalog-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-section-heading {
  width: min(820px, 100%);
  margin-bottom: clamp(28px, 3vw, 42px);
}

.category-showcase .category-section-heading {
  grid-column: 1 / -1;
  margin-bottom: clamp(4px, 0.8vw, 12px);
}

.category-section-heading h2,
.category-inline-heading h2,
.category-learn-aside h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  text-wrap: balance;
}

.category-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  align-items: start;
}

.category-showcase .category-mosaic-grid,
.category-showcase .category-mini-grid {
  display: contents;
}

.category-showcase .subcategory-editorial-grid {
  grid-column: 1 / -1;
  width: min(1180px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.category-mosaic-card,
.category-room-card,
.category-mini-card,
.category-pick-card {
  color: #050505;
}

.category-mosaic-card {
  display: grid;
  gap: 14px;
  align-content: start;
  font-size: 14px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

.category-mosaic-card--stacked {
  padding-top: 0;
}

.category-mosaic-image {
  display: block;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.06);
  order: 0;
}

.category-mosaic-card .category-card-title {
  order: 1;
}

.category-mosaic-card .category-card-arrow {
  order: 2;
}

.category-mosaic-card--tall .category-mosaic-image,
.category-mosaic-card--stacked .category-mosaic-image {
  aspect-ratio: 0.82 / 1;
}

.category-mosaic-image img,
.category-mini-card img,
.category-room-card img,
.category-pick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.category-pick-image--product {
  background: var(--page-bg);
}

.category-pick-image--product img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.category-card-title {
  display: block;
}

.category-card-arrow {
  color: rgba(33, 33, 35, 0.62);
  font-size: 17px;
  line-height: 1;
}

.category-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(42px, 5vw, 70px);
}

.category-mini-card {
  display: grid;
  gap: 14px;
  align-content: start;
  color: #050505;
  font-size: 14px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

.category-mini-card img {
  aspect-ratio: 0.82 / 1;
  background: rgba(33, 33, 35, 0.06);
}

@media (min-width: 1101px) {
  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) > .category-section-shell {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 1vw, 18px);
    width: min(100%, var(--wide-content-max));
    max-width: var(--wide-content-max);
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) .category-section-heading {
    grid-column: 1 / -1;
    width: min(820px, 100%);
    margin-bottom: 0;
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) :is(.category-mosaic-grid, .category-mini-grid) {
    display: contents;
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) :is(.category-mosaic-card, .category-mini-card) {
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    gap: 8px;
    color: #050505;
    font-size: clamp(11.5px, 0.72vw, 13px);
    line-height: 1.24;
    font-weight: var(--weight-semibold);
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) :is(.category-mosaic-image, .category-mini-card img) {
    order: 0;
    display: block;
    width: 100%;
    height: clamp(128px, 8.2vw, 164px);
    aspect-ratio: auto;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: var(--white);
    box-shadow: none;
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) :is(.category-mosaic-image img, .category-mini-card img) {
    object-fit: cover;
    object-position: center;
    padding: 0;
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) :is(.category-card-title, .category-mini-card > span) {
    order: 1;
    display: block;
    margin-top: 0;
    color: #050505;
  }

  :is(
    .furniture-page #furniture-categories,
    .lighting-page #lighting-categories,
    .tiles-page #tile-categories
  ) .category-card-arrow {
    display: none;
  }
}

.sanitary-page .category-showcase > .category-section-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.sanitary-page .category-showcase .category-section-heading {
  max-width: var(--content-max);
  margin-bottom: 0;
}

.sanitary-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
  align-items: start;
}

.sanitary-category-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-content: start;
  color: #050505;
  font-size: 13px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

.sanitary-category-card .sanitary-category-image {
  grid-column: 1 / -1;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.22 / 1;
  border-radius: var(--media-radius);
  background: rgba(33, 33, 35, 0.055);
}

.sanitary-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.sanitary-category-card .category-card-title {
  min-width: 0;
}

.sanitary-category-card .category-card-arrow {
  color: var(--brand-brown);
  transform: translateY(1px);
}

.sanitary-category-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
}

.category-room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: clamp(16px, 1.7vw, 24px);
  align-items: start;
}

.category-room-card {
  display: grid;
  gap: 10px;
  color: #050505;
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.24;
  font-weight: var(--weight-semibold);
}

.category-room-card img {
  aspect-ratio: 1.14 / 1;
  background: rgba(33, 33, 35, 0.06);
}

.category-room-card--wide img {
  aspect-ratio: 1.14 / 1;
}

.category-inline-heading {
  margin-bottom: 28px;
}

.category-inline-heading h2 {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #050505;
  font-size: var(--heading-section-compact-size);
}

.category-picks-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.category-pick-card {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.category-pick-image {
  display: block;
  aspect-ratio: 0.86 / 1;
  overflow: hidden;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.category-pick-card strong {
  color: #050505;
  font-size: 14px;
  line-height: 1.28;
  font-weight: var(--weight-semibold);
}

.category-pick-card > span:last-child {
  color: rgba(33, 33, 35, 0.68);
  font-size: 13px;
  line-height: 1.35;
  font-weight: var(--weight-medium);
}

.subcategory-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: clamp(22px, 2.4vw, 34px) clamp(14px, 1.6vw, 22px);
  align-items: start;
}

.subcategory-editorial-card {
  display: grid;
  gap: 9px;
  color: #050505;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.28;
  font-weight: var(--weight-semibold);
}

.subcategory-editorial-card:hover,
.subcategory-editorial-card:focus-visible {
  color: var(--burnt);
  outline: none;
}

.subcategory-editorial-card:hover img,
.subcategory-editorial-card:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.subcategory-editorial-card .category-mosaic-image {
  aspect-ratio: 1.18 / 1;
  border-radius: 8px;
}

.subcategory-card-kicker {
  display: block;
  color: rgba(33, 33, 35, 0.58);
  font-size: 12px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.subcategory-recommendation-note {
  display: block;
  color: var(--burnt);
  font-size: 13px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.subcategory-page .category-guide-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-learn-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 98px);
  margin: 0 auto;
}

.category-learn-aside {
  align-self: start;
}

.category-learn-content,
.category-faq-list {
  min-width: 0;
}

.category-guide-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 42px);
  margin-bottom: clamp(48px, 6vw, 74px);
}

.category-guide-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line-soft);
  color: #050505;
  font-size: 14px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.category-guide-links a:hover,
.category-guide-links a:focus-visible,
.category-mosaic-card:hover,
.category-mosaic-card:focus-visible,
.category-mini-card:hover,
.category-mini-card:focus-visible,
.category-room-card:hover,
.category-room-card:focus-visible,
.category-pick-card:hover,
.category-pick-card:focus-visible {
  color: var(--burnt);
  outline: none;
}

.category-mosaic-card:hover img,
.category-mosaic-card:focus-visible img,
.category-mini-card:hover img,
.category-mini-card:focus-visible img,
.category-room-card:hover img,
.category-room-card:focus-visible img,
.category-pick-card:hover img,
.category-pick-card:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.category-copy-block {
  display: grid;
  gap: 22px;
  padding-top: 4px;
  border-top: 1px solid var(--line-soft);
}

.category-copy-block h3 {
  margin: 0;
  color: #050505;
  font-size: 16px;
  line-height: 1.3;
  font-weight: var(--weight-semibold);
}

.category-copy-block p {
  margin: 0;
  color: rgba(33, 33, 35, 0.74);
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.72;
  font-weight: var(--weight-medium);
}

.category-faq-section {
  padding-top: clamp(58px, 6vw, 86px);
}

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

.category-faq-list details {
  border-bottom: 1px solid var(--line-soft);
}

.category-faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #050505;
  font-size: 15px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
  list-style: none;
  cursor: pointer;
}

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

.category-faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: rgba(33, 33, 35, 0.68);
  font-size: 20px;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.category-faq-list details[open] summary::after {
  content: "-";
}

.category-faq-list summary:hover,
.category-faq-list summary:focus-visible {
  color: var(--burnt);
  outline: none;
}

.category-faq-list p {
  width: min(760px, 100%);
  margin: -8px 0 26px;
  color: rgba(33, 33, 35, 0.72);
  font-size: 14px;
  line-height: 1.68;
  font-weight: var(--weight-medium);
}

.category-hero--services {
  --hero-position: center;
}

.category-hero--services .category-hero-copy {
  width: min(920px, 100%);
}

.category-hero--services .category-hero-copy h1 {
  font-size: var(--heading-section-large-size);
  line-height: 1.18;
  font-weight: 340;
  text-wrap: balance;
}

.category-hero--services .hero-benefits {
  flex-wrap: wrap;
  overflow: visible;
}

.category-hero--services .hero-benefits li {
  white-space: normal;
  text-align: center;
}

.service-overview-section > .category-section-shell {
  display: block;
}

.service-overview-section,
.service-processing-section {
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.service-intro-copy {
  width: min(760px, 100%);
  margin: 18px 0 0;
  color: rgba(33, 33, 35, 0.7);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.7;
  font-weight: var(--weight-medium);
}

.services-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(18px, 1.9vw, 28px);
}

.services-index-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  color: #050505;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.services-index-card:hover,
.services-index-card:focus-visible {
  color: var(--burnt);
  outline: none;
  transform: translateY(-2px);
}

.services-index-media {
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.06);
}

.services-index-media img,
.service-anchor-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.services-index-card:hover .services-index-media img,
.services-index-card:focus-visible .services-index-media img,
.service-anchor-section:hover .service-anchor-media img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.02);
}

.services-index-card strong {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.34;
  font-weight: var(--weight-semibold);
}

.services-index-card p {
  margin: 0;
  color: rgba(33, 33, 35, 0.7);
  font-size: 14px;
  line-height: 1.62;
  font-weight: var(--weight-medium);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 34px);
}

.service-feature-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  color: #050505;
}

.service-feature-media {
  display: block;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.06);
}

.service-feature-media img,
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-feature-card:hover .service-feature-media img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.02);
}

.service-feature-card h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.18;
  font-weight: var(--weight-regular);
}

.service-feature-card p {
  margin: 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: 14px;
  line-height: 1.66;
  font-weight: var(--weight-medium);
}

.service-processing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.service-processing-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 190px;
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.24);
  color: #050505;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-processing-card:hover {
  border-color: rgba(135, 60, 30, 0.42);
  color: var(--burnt);
  transform: translateY(-2px);
}

.service-processing-card strong {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

.service-processing-card span {
  color: rgba(33, 33, 35, 0.68);
  font-size: 14px;
  line-height: 1.58;
  font-weight: var(--weight-medium);
}

.service-detail-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  margin: 0 auto;
}

.service-detail-image {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.06);
}

.service-detail-image img {
  display: block;
  aspect-ratio: 1.28 / 1;
}

.service-detail-copy {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.service-detail-copy h2 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.service-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.72;
  font-weight: var(--weight-medium);
}

.hero-button-dark {
  border-color: rgba(33, 33, 35, 0.34);
  color: #050505;
  background: transparent;
}

.service-detail-copy .hero-button-dark {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.services-detail-section {
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.services-detail-section > .category-section-shell,
.service-support-shell {
  display: block;
  width: min(100%, var(--wide-content-max));
  margin-inline: auto;
}

.services-detail-heading {
  margin-bottom: clamp(28px, 4vw, 54px);
}

.service-anchor-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}

.service-anchor-section {
  scroll-margin-top: calc(var(--header-h) + 28px);
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1fr);
  gap: clamp(26px, 4.4vw, 72px);
  align-items: center;
  padding: clamp(28px, 4.8vw, 72px) 0;
  border-bottom: 1px solid var(--line-soft);
}

.service-anchor-section:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.78fr);
}

.service-anchor-section:nth-child(even) .service-anchor-media {
  order: 2;
}

.service-anchor-media {
  width: 100%;
  margin: 0;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  background: rgba(33, 33, 35, 0.06);
}

.service-anchor-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 14px;
}

.service-anchor-kicker {
  color: var(--burnt);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-bold);
}

.service-anchor-copy h3 {
  margin: 0;
  color: #050505;
  font-size: var(--heading-section-compact-size);
  line-height: 1.28;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  text-wrap: balance;
}

.service-anchor-copy p {
  width: min(680px, 100%);
  margin: 0;
  color: rgba(33, 33, 35, 0.72);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.72;
  font-weight: var(--weight-medium);
}

.service-anchor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-anchor-points li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: rgba(33, 33, 35, 0.78);
  border: 1px solid rgba(135, 60, 30, 0.18);
  background: rgba(135, 60, 30, 0.045);
  font-size: 13px;
  line-height: 1.28;
  font-weight: var(--weight-semibold);
}

.service-support-section {
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.service-support-shell {
  display: grid;
  justify-items: center;
  text-align: center;
}

.service-support-shell .service-detail-copy {
  width: min(700px, 100%);
  justify-items: center;
  text-align: center;
}

.header-call-button.service-call-button {
  width: auto;
  min-width: max-content;
  padding: 0 12px 0 10px;
}

.header-call-button.service-call-button span {
  display: inline;
}

.header-call-button.service-call-button .header-call-icon {
  width: 18px;
  height: 18px;
}

.hero-button-dark:hover,
.hero-button-dark:focus-visible {
  border-color: var(--burnt);
  color: var(--white);
  background: var(--burnt);
}

@media (max-width: 1100px) {
  .category-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-showcase .subcategory-editorial-grid,
  .subcategory-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, 100%);
  }

  .subcategory-editorial-card:nth-child(n) {
    grid-column: auto;
    padding-top: 0;
  }

  .category-mosaic-grid,
  .category-mini-grid,
  .category-picks-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-card {
    min-width: 0;
  }

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

  .category-showcase > .category-section-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subcategory-page .category-guide-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-learn-shell {
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 56px);
  }

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

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

  .service-detail-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-anchor-section,
  .service-anchor-section:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-anchor-section:nth-child(even) .service-anchor-media {
    order: 0;
  }
}

@media (max-width: 760px) {
  .category-hero-shell {
    gap: 34px;
    padding: 24px 0 44px;
  }

  .category-hero-copy {
    width: min(300px, 100%);
    justify-self: start;
    text-align: left;
  }

  .category-hero-copy h1 {
    font-size: var(--heading-page-size);
    overflow-wrap: break-word;
  }

  .category-hero--services .category-hero-copy {
    width: min(340px, 100%);
  }

  .category-hero--services .category-hero-copy h1 {
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.2;
  }

  .category-hero-copy p:not(.eyebrow) {
    margin-left: 0;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .category-hero-actions {
    justify-content: flex-start;
  }

  .category-showcase,
  .category-room-section,
  .category-recommendations,
  .category-learn-section,
  .category-faq-section {
    padding: 54px var(--page-pad);
  }

  .category-section-heading h2,
  .category-learn-aside h2 {
    font-size: var(--heading-section-size);
  }

  .category-mosaic-grid,
  .category-room-grid,
  .category-mini-grid,
  .category-picks-row,
  .category-learn-shell,
  .category-guide-links,
  .subcategory-editorial-grid,
  .subcategory-page .category-guide-links {
    grid-template-columns: 1fr;
  }

  .category-showcase > .category-section-shell {
    grid-template-columns: 1fr;
  }

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

  .sanitary-home-strip .sanitary-category-grid-system {
    --sanitary-grid-gap: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px var(--sanitary-grid-gap);
  }

  .sanitary-home-strip .sanitary-category-shell {
    display: block;
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-card {
    min-width: 0;
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-image,
  .sanitary-category-grid-system .category-image {
    height: clamp(156px, 36vw, 210px);
  }

  .sanitary-home-strip .sanitary-category-grid-system .category-card:last-child:nth-child(odd) {
    width: calc((100% - var(--sanitary-grid-gap)) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .subcategory-page .subcategory-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subcategory-page .subcategory-home-grid .category-card,
  .subcategory-page .subcategory-home-grid .category-card:nth-last-child(3):nth-child(4n + 1),
  .subcategory-page .subcategory-home-grid .category-card:nth-last-child(2):nth-child(4n + 1),
  .subcategory-page .subcategory-home-grid .category-card:nth-last-child(1):nth-child(4n + 1) {
    max-width: none;
    grid-column: auto;
  }

  .subcategory-page .subcategory-home-grid .category-card:last-child:nth-child(odd) {
    max-width: none;
    width: calc((100% - var(--sanitary-grid-gap)) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .sanitary-category-card {
    font-size: 12px;
  }

  .tiles-page #tile-categories > .category-section-shell {
    grid-template-columns: 1fr;
  }

  .category-mini-grid,
  .category-picks-row {
    gap: 24px;
  }

  .category-mosaic-card--stacked {
    padding-top: 0;
  }

  .category-mosaic-card--tall .category-mosaic-image,
  .category-mosaic-card--stacked .category-mosaic-image,
  .category-mini-card img,
  .category-room-card img,
  .category-room-card--wide img,
  .category-pick-image,
  .subcategory-editorial-card .category-mosaic-image,
  .subcategory-editorial-card:nth-child(6) .category-mosaic-image {
    aspect-ratio: 1.12 / 1;
  }

  .category-guide-links {
    margin-bottom: 42px;
  }

  .category-guide-links a,
  .category-faq-list summary {
    min-height: 68px;
  }

  .service-feature-grid,
  .service-processing-grid {
    grid-template-columns: 1fr;
  }

  .services-index-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-media,
  .service-detail-image img {
    aspect-ratio: 1.12 / 1;
  }

  .services-index-media,
  .service-anchor-media {
    aspect-ratio: 1.18 / 1;
  }

  .service-processing-card {
    min-height: auto;
  }

  .service-anchor-section {
    gap: 20px;
    padding: 34px 0;
  }

  .service-anchor-copy {
    gap: 12px;
  }

  .service-anchor-copy h3 {
    line-height: 1.34;
  }

  .service-anchor-copy p {
    font-size: 14px;
    line-height: 1.72;
  }

  .service-anchor-points li {
    width: 100%;
  }
}

.chat-launcher {
  --chat-base-bottom: clamp(18px, 2.2vw, 34px);
  --chat-footer-lift: 0px;
  --chat-product-lift: 0px;
  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: calc(var(--chat-base-bottom) + var(--chat-footer-lift) + var(--chat-product-lift));
  z-index: 70;
  isolation: isolate;
  overflow: visible;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--burnt);
  border: 1px solid rgba(135, 60, 30, 0.82);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(135, 60, 30, 0.11),
    0 0 0 5px rgba(135, 60, 30, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: bottom 260ms cubic-bezier(0.22, 1, 0.36, 1), background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

body.is-footer-bottom-visible .chat-launcher {
  --chat-footer-lift: 88px;
}

.chat-launcher::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -5px;
  border: 1px solid var(--line-warm);
  border-radius: inherit;
  opacity: 1;
}

.chat-launcher::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10px;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(135, 60, 30, 0.08) 0 58%, rgba(135, 60, 30, 0.025) 76%, rgba(135, 60, 30, 0) 100%);
  pointer-events: none;
}

.chat-launcher-icon {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  display: block;
}

.chat-bubble {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  color: var(--white);
  background: #6f2f18;
  border-color: rgba(111, 47, 24, 0.95);
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(135, 60, 30, 0.16),
    0 0 0 7px rgba(135, 60, 30, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.chat-launcher[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.86);
}

.chat-launcher.has-new-chat-message:not([aria-expanded="true"]) {
  animation: chatLauncherNotify 1050ms cubic-bezier(0.22, 1, 0.36, 1) 3;
}

.chat-launcher.has-new-chat-message:not([aria-expanded="true"])::after {
  animation: chatNotifyHalo 1050ms ease-out 3;
}

.chat-launcher-badge {
  position: absolute;
  top: -5px;
  right: -4px;
  z-index: 2;
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  color: var(--white);
  background: #d9291c;
  border: 2px solid var(--page-bg);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: var(--weight-semibold);
  box-shadow: 0 8px 16px rgba(217, 41, 28, 0.32);
  animation: chatBadgePulse 2800ms ease-in-out 900ms infinite;
}

.chat-quick-actions {
  --chat-base-bottom: clamp(18px, 2.2vw, 34px);
  --chat-footer-lift: 0px;
  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: calc(var(--chat-base-bottom) + var(--chat-footer-lift) + 74px);
  z-index: 69;
  display: grid;
  justify-items: end;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: right bottom;
  transition:
    bottom 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    transform 220ms ease;
}

.chat-quick-actions.is-visible {
  opacity: 1;
  transform: none;
}

body.is-footer-bottom-visible .chat-quick-actions {
  --chat-footer-lift: 88px;
}

body.is-chat-panel-open .chat-quick-actions,
body.is-footer-bottom-visible .chat-quick-actions.is-visible,
.chat-quick-actions.is-pending,
.chat-quick-actions.is-hidden {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
}

.chat-quick-actions.is-hidden .chat-quick-action {
  animation: none !important;
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(8px) scale(0.98) !important;
}

.chat-quick-action {
  position: relative;
  min-height: 36px;
  max-width: min(312px, calc(100vw - 36px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 18px;
  color: #1f2445;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 242, 0.96)),
    var(--white);
  border: 1px solid rgba(31, 36, 69, 0.86);
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(33, 33, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-family: "Noto Sans Georgian", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.15;
  font-weight: var(--weight-medium);
  white-space: nowrap;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition:
    color 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.chat-quick-actions.is-visible .chat-quick-action {
  animation: chatQuickActionIn 392ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--chat-action-index, 0) * 50ms) both;
}

.chat-greeting-action {
  min-height: 40px;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  justify-content: flex-start;
  padding: 0;
  text-align: left;
  text-overflow: clip;
  white-space: nowrap;
  cursor: pointer;
}

.chat-greeting-action:focus-visible {
  outline: none;
}

.chat-greeting-card:has(.chat-greeting-action:focus-visible) {
  color: var(--white);
  background: var(--burnt);
  border-color: rgba(135, 60, 30, 0.94);
  box-shadow:
    0 14px 30px rgba(135, 60, 30, 0.11),
    0 0 0 4px rgba(135, 60, 30, 0.06);
}

.chat-greeting-card {
  position: relative;
  box-sizing: border-box;
  width: max-content;
  max-width: min(410px, calc(100vw - 32px));
  min-height: 42px;
  justify-content: flex-start;
  padding-inline: 18px 46px;
}

.chat-greeting-close {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--burnt);
  background: rgba(135, 60, 30, 0.08);
  border: 1px solid rgba(135, 60, 30, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.chat-greeting-close svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.chat-greeting-close:hover,
.chat-greeting-close:focus-visible {
  color: var(--white);
  background: var(--burnt);
  border-color: var(--burnt);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.chat-greeting-card:hover .chat-greeting-close,
.chat-greeting-card:has(.chat-greeting-action:focus-visible) .chat-greeting-close {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.chat-greeting-card:hover .chat-greeting-close:hover,
.chat-greeting-card:hover .chat-greeting-close:focus-visible {
  color: var(--burnt);
  background: var(--white);
  border-color: var(--white);
}

@media (max-width: 420px) {
  .chat-greeting-card {
    min-height: 44px;
    padding-block: 8px;
    border-radius: 22px;
  }

  .chat-greeting-action {
    min-height: 0;
    line-height: 1.25;
    white-space: normal;
  }
}

.chat-quick-action::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0 32%, rgba(255, 255, 255, 0.58) 45%, rgba(255, 255, 255, 0) 58% 100%);
  pointer-events: none;
  transform: translateX(-124%);
}

.chat-quick-actions.is-visible .chat-quick-action::before {
  animation: chatQuickActionSheen 5800ms ease-in-out calc(900ms + var(--chat-action-index, 0) * 180ms) infinite;
}

.chat-quick-action:hover,
.chat-quick-action:focus-visible {
  color: var(--white);
  background: var(--burnt);
  border-color: rgba(135, 60, 30, 0.94);
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(135, 60, 30, 0.11),
    0 0 0 4px rgba(135, 60, 30, 0.06);
}

.chat-panel {
  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 76;
  width: min(374px, calc(100vw - 32px));
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel-card {
  overflow: hidden;
  color: var(--charcoal);
  background: var(--page-bg);
  border: 1px solid rgba(33, 33, 35, 0.14);
  border-radius: 26px;
  box-shadow: none;
  transform-origin: right bottom;
  animation: chatPanelIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.chat-view[hidden] {
  display: none;
}

.chat-view {
  animation: chatViewIn 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.chat-panel.is-closing .chat-panel-card {
  animation: chatPanelOut 240ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.chat-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--charcoal);
  background: transparent;
  transition: color 180ms ease;
}

.chat-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
}

.chat-close:hover,
.chat-close:focus-visible {
  color: var(--burnt);
  outline: none;
}

.chat-view-session {
  min-height: 558px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--page-bg);
}

.chat-session-header {
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.98);
}

.chat-session-header::before {
  content: "";
}

.chat-session-header h2 {
  margin: 0;
  color: #050505;
  font-size: 15px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  text-align: center;
}

.chat-transcript {
  min-height: 330px;
  padding: 18px 18px 24px;
}

.chat-message {
  width: min(282px, 100%);
  padding: 15px 16px;
  color: var(--white);
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 18px 18px 18px 6px;
  font-size: 14px;
  line-height: 1.42;
  box-shadow: none;
}

.chat-time {
  display: block;
  margin-top: 8px;
  color: rgba(33, 33, 35, 0.62);
  font-size: 11px;
}

.chat-session-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.chat-session-option {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(135, 60, 30, 0.24);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-family: "Noto Sans Georgian", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
  text-align: center;
  white-space: normal;
  transition:
    color 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.chat-session-option:hover,
.chat-session-option:focus-visible {
  color: var(--white);
  background: var(--burnt);
  border-color: var(--burnt);
  box-shadow: 0 10px 20px rgba(135, 60, 30, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.chat-composer {
  min-height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.chat-composer input#chat-message-input {
  min-width: 0;
  min-height: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--charcoal);
  background: var(--white);
  box-shadow: none;
  outline: none;
  font-size: 14px;
  line-height: 1.2;
}

.chat-composer input#chat-message-input::placeholder {
  color: rgba(33, 33, 35, 0.48);
}

.chat-composer button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(135, 60, 30, 0.94);
  border: 1px solid rgba(135, 60, 30, 0.96);
  border-radius: 999px;
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.chat-composer button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.chat-composer button:hover,
.chat-composer button:focus-visible {
  background: #6f2f18;
  outline: none;
  transform: translateY(-1px);
}

@keyframes chatPanelIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatPanelOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
}

@keyframes chatViewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chatQuickActionIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    filter: blur(5px);
  }

  70% {
    filter: blur(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes chatQuickActionSheen {
  0%,
  42% {
    transform: translateX(-124%);
  }

  58%,
  100% {
    transform: translateX(124%);
  }
}

@keyframes chatLauncherNotify {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  38% {
    transform: translateY(-4px) scale(1.04);
  }

  68% {
    transform: translateY(1px) scale(0.98);
  }
}

@keyframes chatNotifyHalo {
  0% {
    opacity: 0.5;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes chatBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 16px rgba(217, 41, 28, 0.32);
  }

  48% {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(217, 41, 28, 0.42);
  }
}

.site-footer {
  padding: 42px 0 24px;
  background: var(--page-bg);
  color: #050505;
}

.footer-shell {
  width: var(--wide-shell);
  margin: 0 auto;
}

.footer-contact-strip {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-bottom: 42px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-contact-strip > *,
.footer-top > *,
.footer-showroom-card,
.footer-bottom > *,
.footer-legal {
  min-width: 0;
}

.footer-contact-strip .eyebrow {
  margin-bottom: 10px;
}

.footer-contact-strip h2 {
  font-size: var(--heading-section-compact-size);
  line-height: 1.16;
  font-weight: var(--weight-regular);
}

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

.footer-showroom-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--page-bg);
}

.footer-showroom-card h3 {
  margin: 0 0 16px;
  color: #050505;
  font-size: 17px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
}

.footer-showroom-card address,
.footer-showroom-card p {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #050505;
  font-style: normal;
  font-size: 14px;
  line-height: 1.32;
  font-weight: var(--weight-medium);
  overflow-wrap: break-word;
}

.footer-showroom-card p {
  margin-top: 18px;
}

.footer-showroom-card strong {
  color: rgba(33, 33, 35, 0.64);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.footer-showroom-card a {
  color: #050505;
}

.footer-showroom-card a:hover,
.footer-showroom-card a:focus-visible {
  color: var(--burnt);
  outline: none;
}

.footer-top {
  display: grid;
  grid-template-columns:
    minmax(180px, 0.72fr)
    minmax(520px, 1.78fr)
    minmax(190px, 0.78fr);
  gap: clamp(22px, 3vw, 56px);
  align-items: start;
}

.site-footer h2 {
  margin: 0;
  color: #050505;
  font-size: 15px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  overflow-wrap: break-word;
}

.footer-link-column,
.footer-resource-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.footer-resource-column {
  display: contents;
}

.footer-link-column a,
.footer-contact-block a,
.footer-legal a {
  color: #050505;
  font-size: 14px;
  line-height: 1.3;
  font-weight: var(--weight-medium);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: break-word;
}

.footer-legal a:hover,
.footer-link-column a:hover,
.footer-contact-block a:hover {
  text-decoration: underline;
}

.footer-contact-block {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-contact-heading {
  margin: 0;
  color: rgba(33, 33, 35, 0.68);
  font-size: 13px;
  line-height: 1.3;
  font-weight: var(--weight-semibold);
}

.footer-showroom-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.footer-showroom-list address {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #050505;
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: var(--weight-medium);
  overflow-wrap: break-word;
}

.footer-showroom-list strong {
  color: #050505;
  font-size: 14px;
  line-height: 1.25;
  font-weight: var(--weight-semibold);
}

.footer-map-link {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(135, 60, 30, 0.45);
}

.footer-map-link:hover,
.footer-map-link:focus-visible {
  color: var(--brand-primary);
  text-decoration-color: currentColor;
}

.footer-contact-shared {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #050505;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: var(--weight-medium);
  overflow-wrap: break-word;
}

.footer-contact-shared strong {
  color: rgba(33, 33, 35, 0.68);
  font-size: 12px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.footer-hours-label {
  margin-top: 2px;
  color: rgba(33, 33, 35, 0.58);
  font-size: 11px;
  line-height: 1.2;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.footer-contact-block a:focus-visible {
  color: var(--burnt);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.footer-legal span {
  color: #050505;
  font-weight: var(--weight-medium);
  overflow-wrap: break-word;
}

.footer-social {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  --social-color: var(--burnt);
  --social-glow: rgba(135, 60, 30, 0.28);
  --social-halo: rgba(135, 60, 30, 0.1);
  --social-tint: rgba(135, 60, 30, 0.06);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #050505;
  background: transparent;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-social .social-instagram {
  --social-color: #e4405f;
  --social-glow: rgba(228, 64, 95, 0.34);
  --social-halo: rgba(228, 64, 95, 0.13);
  --social-tint: rgba(228, 64, 95, 0.08);
}

.footer-social .social-facebook {
  --social-color: #1877f2;
  --social-glow: rgba(24, 119, 242, 0.34);
  --social-halo: rgba(24, 119, 242, 0.13);
  --social-tint: rgba(24, 119, 242, 0.08);
}

.footer-social .social-youtube {
  --social-color: #ff0000;
  --social-glow: rgba(255, 0, 0, 0.34);
  --social-halo: rgba(255, 0, 0, 0.13);
  --social-tint: rgba(255, 0, 0, 0.08);
}

.footer-social .social-tiktok {
  --social-color: #fe2c55;
  --social-glow: rgba(254, 44, 85, 0.3);
  --social-halo: rgba(37, 244, 238, 0.12);
  --social-tint: rgba(254, 44, 85, 0.07);
}

.footer-social .social-linkedin {
  --social-color: #0a66c2;
  --social-glow: rgba(10, 102, 194, 0.34);
  --social-halo: rgba(10, 102, 194, 0.13);
  --social-tint: rgba(10, 102, 194, 0.08);
}

.footer-social svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
  fill-rule: evenodd;
  clip-rule: evenodd;
  transition: filter 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--social-color);
  background: var(--social-tint);
  box-shadow:
    0 0 0 6px var(--social-halo),
    0 10px 24px var(--social-glow);
  transform: translateY(-1px);
  outline: none;
}

.footer-social a:hover svg,
.footer-social a:focus-visible svg {
  filter: drop-shadow(0 4px 12px var(--social-glow));
}

.footer-social .social-instagram:hover,
.footer-social .social-instagram:focus-visible {
  background:
    radial-gradient(circle at 32% 28%, rgba(245, 133, 41, 0.16), transparent 38%),
    radial-gradient(circle at 70% 72%, rgba(131, 58, 180, 0.14), transparent 48%),
    var(--social-tint);
}

.footer-social .social-tiktok:hover svg,
.footer-social .social-tiktok:focus-visible svg {
  filter:
    drop-shadow(-1px -1px 0 rgba(37, 244, 238, 0.72))
    drop-shadow(1px 1px 0 rgba(254, 44, 85, 0.72))
    drop-shadow(0 4px 12px var(--social-glow));
}

.site-footer {
  padding: clamp(48px, 5vw, 72px) 0 22px;
  border-top: 1px solid rgba(135, 60, 30, 0.12);
  background: #fff;
}

.footer-top {
  grid-template-columns:
    minmax(150px, 0.78fr)
    minmax(260px, 1.24fr)
    minmax(190px, 0.84fr)
    minmax(220px, 0.94fr);
  gap: clamp(28px, 5vw, 86px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(33, 33, 35, 0.08);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--burnt);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.18;
  font-weight: 760;
}

.footer-link-column,
.footer-showrooms-block,
.footer-contact-block,
.footer-discover {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.footer-link-column a,
.footer-showrooms-block a,
.footer-showrooms-block span,
.footer-contact-block a,
.footer-contact-block p,
.footer-legal a,
.footer-legal span {
  color: rgba(33, 33, 35, 0.76);
  font-size: 14px;
  line-height: 1.45;
  font-weight: var(--weight-medium);
  text-decoration: none;
}

.footer-link-column a:hover,
.footer-link-column a:focus-visible,
.footer-showrooms-block a:hover,
.footer-showrooms-block a:focus-visible,
.footer-contact-block a:hover,
.footer-contact-block a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--burnt);
  text-decoration: none;
  outline: none;
}

.footer-showroom-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer-showroom-list address {
  gap: 3px;
  font-size: 14px;
  line-height: 1.42;
}

.footer-showroom-list strong {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 720;
}

.footer-map-link {
  text-decoration: none;
}

.footer-contact-block p {
  margin: 0;
}

.footer-contact-block > a {
  width: fit-content;
}

.footer-contact-block .footer-social {
  margin-top: 8px;
  gap: 8px;
}

.footer-contact-block .footer-social a {
  width: 31px;
  height: 31px;
  color: rgba(33, 33, 35, 0.72);
  border: 1px solid rgba(135, 60, 30, 0.12);
  background: rgba(135, 60, 30, 0.055);
}

.footer-contact-block .footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-discover {
  justify-items: start;
  gap: 13px;
}

.footer-discover-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: var(--burnt);
  box-shadow: 0 12px 24px rgba(135, 60, 30, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-discover-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-discover-button:hover,
.footer-discover-button:focus-visible {
  background: var(--charcoal);
  box-shadow: 0 16px 28px rgba(33, 33, 35, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.footer-discover-logo {
  display: block;
  margin-top: 4px;
}

.footer-discover-logo img {
  width: min(180px, 100%);
  height: auto;
  display: block;
}

.footer-discover p {
  margin: -4px 0 0;
  color: rgba(33, 33, 35, 0.58);
  font-family: "Comfortaa", "Noto Sans Georgian", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 560;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 18px;
  border-top: 0;
}

.footer-bottom .footer-social {
  display: none;
}

.site-footer {
  padding: clamp(52px, 5vw, 76px) 0 24px;
  background: #fff;
  color: var(--charcoal);
}

.footer-top {
  grid-template-columns:
    minmax(150px, 0.78fr)
    minmax(280px, 1.3fr)
    minmax(190px, 0.86fr)
    minmax(220px, 0.9fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: start;
  padding-bottom: clamp(34px, 4vw, 52px);
}

.site-footer h2 {
  margin: 0 0 13px;
  color: var(--burnt);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 780;
}

.footer-link-column,
.footer-showrooms-block,
.footer-contact-block,
.footer-discover {
  gap: 7px;
}

.footer-link-column a,
.footer-showrooms-block a,
.footer-showrooms-block span,
.footer-contact-block a,
.footer-contact-block p,
.footer-legal span {
  color: rgba(33, 33, 35, 0.76);
  font-size: 15px;
  line-height: 1.5;
  font-weight: var(--weight-medium);
}

.footer-link-column a:hover,
.footer-link-column a:focus-visible,
.footer-showrooms-block a:hover,
.footer-showrooms-block a:focus-visible,
.footer-contact-block a:hover,
.footer-contact-block a:focus-visible {
  color: var(--burnt);
}

.footer-showroom-list {
  gap: 8px;
}

.footer-showroom-list address {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

.footer-map-link {
  width: auto;
  display: inline;
}

.footer-map-link strong {
  color: var(--charcoal);
  font-weight: 720;
}

.footer-contact-block .footer-social {
  margin-top: 16px;
  gap: 8px;
}

.footer-contact-block .footer-social a {
  width: 32px;
  height: 32px;
  color: #fff;
  border: 0;
  background: rgba(33, 33, 35, 0.48);
  box-shadow: none;
}

.footer-contact-block .footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-contact-block .footer-social a:hover,
.footer-contact-block .footer-social a:focus-visible {
  color: #fff;
  background: var(--burnt);
  box-shadow: 0 10px 22px rgba(135, 60, 30, 0.18);
}

.footer-discover {
  justify-items: center;
  text-align: center;
}

.footer-discover-button {
  margin: 6px 0 10px;
}

.footer-discover-logo img {
  width: min(188px, 100%);
  max-height: 60px;
  object-fit: contain;
}

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

.footer-legal {
  gap: 0;
}

.footer-legal span {
  color: rgba(33, 33, 35, 0.76);
}

@media (max-width: 640px) {
  .site-footer {
    padding: 38px 0 22px;
  }

  .footer-top {
    gap: 28px;
    padding-bottom: 30px;
  }

  .footer-discover {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 1100px) {
  :root {
    --announcement-h: 0px;
    --header-main-h: 70px;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
    padding: 10px var(--page-pad);
  }

  .brand {
    width: 136px;
  }

  .mobile-menu-button {
    display: block;
    justify-self: center;
  }

  .primary-navigation {
    position: absolute;
    top: var(--header-h);
    right: var(--page-pad);
    left: var(--page-pad);
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header[data-mobile-open="true"] .primary-navigation {
    display: grid;
  }

  .menu-trigger {
    justify-content: flex-start;
    min-height: 48px;
    padding: 8px 9px;
    color: var(--brand-primary);
    font-size: 12px;
    text-shadow: none;
  }

  .header-actions {
    justify-self: end;
    gap: 10px;
  }

  .header-call-button {
    padding: 0 10px;
  }

  .mega-menu {
    max-height: calc(100svh - 150px);
    overflow: auto;
  }

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

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

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

  .footer-contact-strip {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-guide-shell {
    gap: 34px;
  }

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

  .home-guide-card {
    height: 336px;
  }

  .customer-reviews-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --announcement-h: 0px;
    --header-main-h: 61px;
    --hero-min-h: 99svh;
    --section-adjacent-pad-top: 36px;
    --section-adjacent-pad-bottom: 30px;
    --heading-hero-size: clamp(36px, 11vw, 42px);
    --heading-page-size: clamp(34px, 10vw, 40px);
    --heading-section-large-size: clamp(29px, 8.5vw, 34px);
    --heading-section-size: clamp(27px, 7.8vw, 32px);
    --heading-section-compact-size: clamp(24px, 7vw, 29px);
  }

  .announcement-bar {
    min-height: var(--announcement-h);
    padding: 0 var(--page-pad);
    font-size: 10px;
    line-height: 1.28;
  }

  .announcement-viewport {
    min-height: 30px;
  }

  .announcement-item {
    display: block;
    width: 100%;
    min-width: 0;
    padding-top: 2px;
    white-space: normal;
    text-align: center;
    overflow-wrap: break-word;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-main-h);
    gap: 8px;
    padding: 8px var(--page-pad);
  }

  .brand {
    width: 112px;
  }

  .mobile-menu-button {
    display: block;
    justify-self: end;
    width: 40px;
    height: 40px;
  }

  .primary-navigation {
    position: absolute;
    top: var(--header-h);
    right: var(--page-pad);
    left: var(--page-pad);
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header[data-mobile-open="true"] .primary-navigation {
    display: grid;
  }

  .menu-trigger {
    justify-content: flex-start;
    min-height: 48px;
    color: var(--brand-primary);
    text-shadow: none;
  }

  .header-actions {
    gap: 6px;
  }

  .header-call-button {
    width: 34px;
    padding: 0;
  }

  .header-call-button span {
    display: none;
  }

  .header-call-icon {
    width: 22px;
    height: 22px;
  }

  .language-current {
    height: 32px;
    min-width: 46px;
    gap: 3px;
    padding: 0 4px;
  }

  .language-option img {
    width: 20px;
    height: 14px;
  }

  .language-line-icon {
    width: 18px;
    height: 18px;
  }

  .language-chevron {
    width: 8px;
    height: 8px;
  }

  .language-current span {
    font-size: 10px;
  }

  .language-menu {
    right: -8px;
  }

  .icon-button {
    width: 30px;
    height: 30px;
  }

  .header-line-icon {
    width: 22px;
    height: 22px;
  }

  .mega-menu {
    width: 100%;
    margin-top: 0;
    padding: 22px var(--page-pad) 26px;
    transform: translateY(-16px) scaleY(0.96);
  }

  .site-header[data-mobile-open="true"] .mega-menu,
  .site-header[data-menu-open="true"] .mega-menu {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
    pointer-events: auto;
  }

  .mega-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 26px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }

  .mega-tabs::-webkit-scrollbar {
    display: none;
  }

  .mega-tab {
    flex: 0 0 auto;
    font-size: 16px;
  }

  .mega-showcase {
    grid-auto-columns: minmax(126px, 154px);
    grid-template-columns: none;
    justify-content: flex-start;
  }

  .mega-showcase.is-text-only {
    grid-auto-columns: minmax(170px, 214px);
  }

  .mega-showcase.is-text-columns {
    grid-auto-columns: minmax(184px, 224px);
  }

  .category-grid,
  .outdoor-grid,
  .cabana-grid,
  .brand-grid,
  .service-images {
    grid-template-columns: 1fr;
  }

  .about-us-band {
    padding: 54px var(--page-pad) 62px;
  }

  .about-us-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-us-photo {
    width: 100%;
    aspect-ratio: 1.22 / 1;
  }

  .about-us-copy {
    max-width: none;
  }

  .about-us-eyebrow {
    margin-bottom: 10px;
  }

  .about-us-copy h2 {
    margin-bottom: 14px;
    font-size: var(--heading-section-size);
  }

  .about-us-copy p:not(.about-us-eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .home-detail-button {
    width: fit-content;
    max-width: 100%;
    margin-top: 20px;
  }

  .cutting-service-band {
    padding: 56px var(--page-pad) 64px;
  }

  .sanitary-support-band {
    padding-bottom: 34px;
  }

  .sanitary-support-band + .community-band {
    padding-top: 38px;
  }

  .cutting-service-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cutting-service-copy {
    max-width: none;
  }

  .cutting-service-eyebrow {
    margin-bottom: 10px;
  }

  .cutting-service-copy h2 {
    margin-bottom: 14px;
    font-size: var(--heading-section-size);
  }

  .cutting-service-copy p:not(.cutting-service-eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .cutting-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 0 12px;
    margin-top: 24px;
  }

  .cutting-service-list li {
    min-height: 0;
    padding: 0;
  }

  .cutting-service-list li:last-child {
    grid-column: 1 / -1;
    width: min(100%, 220px);
    justify-self: center;
  }

  .cutting-service-photo {
    width: 100%;
    aspect-ratio: 1.22 / 1;
  }

  .cabana-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .mega-showcase {
    grid-auto-columns: minmax(134px, 42vw);
    grid-template-columns: none;
    justify-content: flex-start;
  }

  .mega-showcase.is-text-only {
    grid-auto-columns: minmax(170px, 64vw);
  }

  .mega-showcase.is-flat-links {
    grid-auto-columns: max-content;
    gap: 26px;
  }

  .hero-content {
    width: min(620px, var(--shell));
    padding-bottom: 34px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: var(--heading-hero-size);
  }

  .hero-content .hero-sale-title {
    font-size: clamp(24px, 6.1vw, 28px);
    max-width: min(100%, 340px);
    white-space: normal;
  }

  .hero-slide-sale .hero-content,
  .hero-slide.is-active.hero-slide-sale .hero-content {
    padding: calc(var(--header-h) + 44px) 0 0;
    transform: translateY(-2.5vh);
  }

  .hero-benefits-strip {
    padding: 0 0 24px;
  }

  .home-page {
    --hero-min-h: 44.5svh;
    overflow-x: clip;
  }

  .home-page .hero {
    min-height: max(330px, var(--hero-min-h));
  }

  .home-page .hero-content {
    width: min(100%, 340px);
    max-width: calc(100vw - (var(--page-gutter) * 2));
    padding-right: 0;
    padding-left: 0;
  }

  .home-page .hero-content .hero-sale-title {
    max-width: min(100%, 300px);
    overflow-wrap: anywhere;
  }

  .home-page .hero-benefits-strip {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .home-page .hero-benefits-strip .hero-benefits {
    width: min(100%, 340px);
    gap: 8px;
  }

  .home-page .hero-benefits-strip .hero-benefits li {
    flex: 0 1 auto;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    overflow-wrap: anywhere;
  }

  .hero-slide-sale .hero-content::before {
    width: min(620px, 104vw);
    height: 230px;
  }

  .category-strip,
  .outdoor-explore,
  .curation-band {
    padding: 52px var(--page-pad);
  }

  .spotlight-section {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .community-band {
    padding: 54px var(--page-pad);
  }

  .community-header {
    margin-bottom: 30px;
    text-align: left;
  }

  .community-header h2 {
    font-size: var(--heading-section-size);
    line-height: 1.16;
  }

  .community-header > p {
    margin-right: 0;
    margin-left: 0;
  }

  .community-socials {
    justify-content: flex-start;
  }

  .community-card {
    flex-basis: min(68vw, 248px);
  }

  .community-carousel-button {
    width: 38px;
    height: 38px;
  }

  .community-carousel-button-prev {
    left: 8px;
  }

  .community-carousel-button-next {
    right: 8px;
  }

  .customer-reviews-band {
    padding: 44px var(--page-pad);
  }

  .customer-reviews-heading,
  .customer-reviews-layout {
    grid-template-columns: 1fr;
  }

  .customer-reviews-heading {
    justify-content: stretch;
    align-items: start;
    gap: 18px;
  }

  .customer-review-feature {
    min-height: auto;
    padding: 20px;
  }

  .reviews-score-panel {
    width: 100%;
    min-width: 0;
    justify-items: start;
    padding: 16px 0 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .customer-reviews-heading h2 {
    font-size: var(--heading-section-size);
  }

  .customer-reviews-heading p,
  .customer-review-feature blockquote,
  .customer-review-card blockquote {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .customer-review-feature blockquote {
    font-size: 16px;
    line-height: 1.42;
  }

  .customer-review-card {
    gap: 9px;
    padding: 14px 15px;
  }

  .customer-review-card blockquote {
    font-size: 12px;
    line-height: 1.46;
  }

  .customer-review-wall {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .customer-review-card--wide {
    grid-column: auto;
  }

  .customer-review-card--compact {
    min-height: auto;
  }

  .customer-review-feature footer,
  .customer-review-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .customer-review-top {
    gap: 10px;
  }

  .home-guide-band,
  .home-faq-band {
    padding: 48px var(--page-pad);
  }

  .home-guide-heading h2,
  .home-faq-shell h2 {
    font-size: var(--heading-section-large-size);
    line-height: 1.16;
  }

  .home-guide-heading h2 {
    padding: 0;
  }

  .home-guide-heading h2::before,
  .home-guide-heading h2::after {
    display: none;
  }

  .home-guide-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-guide-card {
    height: 284px;
  }

  .home-guide-card-content {
    padding: 22px 20px;
  }

  .home-guide-card strong {
    font-size: 20px;
  }

  .home-guide-card-copy {
    font-size: 13px;
  }

  .home-faq-list summary {
    min-height: 68px;
    font-size: 14px;
  }

  .home-faq-list p {
    margin-bottom: 22px;
  }

  .service-band {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .cabana-edit {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .outdoor-shell h2 {
    margin-bottom: 22px;
  }

  .outdoor-grid {
    row-gap: 34px;
  }

  .outdoor-card-center {
    margin-top: 0;
  }

  .outdoor-card-left img,
  .outdoor-card-center img,
  .outdoor-card-right img {
    aspect-ratio: 1.18 / 1;
  }

  .outdoor-card-left .review-video-frame,
  .outdoor-card-center .review-video-frame,
  .outdoor-card-right .review-video-frame {
    aspect-ratio: 1.18 / 1;
  }

  .category-card {
    min-height: 164px;
  }

  .service-band,
  .trade-band {
    grid-template-columns: 1fr;
  }

  .about-editorial-hero {
    padding: 48px var(--page-pad) 62px;
  }

  .about-editorial-shell,
  .about-brand-shell,
  .about-mission-shell,
  .about-story-shell,
  .about-duo-section {
    grid-template-columns: 1fr;
  }

  .about-editorial-copy,
  .about-brand-copy {
    width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
    max-width: none;
    justify-self: stretch;
  }

  .about-mission-copy,
  .about-goals-panel,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block {
    width: min(100%, calc(100vw - (var(--page-gutter) * 2)));
    max-width: calc(100vw - (var(--page-gutter) * 2));
  }

  .about-page-main :where(h1, h2, h3, p) {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none;
  }

  .about-editorial-copy h1 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.16;
  }

  .about-editorial-media {
    aspect-ratio: 2.23 / 1;
  }

  .about-brand-band {
    padding: 38px var(--page-pad) 44px;
  }

  .about-brand-title {
    margin-bottom: 22px;
    font-size: var(--heading-section-size);
    line-height: 1.16;
  }

  .about-brand-media {
    aspect-ratio: 1.08 / 1;
  }

  .about-mission-band,
  .about-history-section,
  .about-story-band {
    padding: 54px var(--page-pad);
  }

  .about-mission-copy {
    position: static;
  }

  .about-mission-copy h2,
  .about-section-heading h2,
  .about-story-copy h2 {
    font-size: var(--heading-section-size);
    line-height: 1.16;
  }

  .about-goals-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 0;
  }

  .about-goals-list p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-history-grid,
  .about-history-item-wide {
    grid-template-columns: 1fr;
  }

  .about-history-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .about-history-card,
  .about-history-card-featured {
    min-height: auto;
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
  }

  .about-history-card:first-child {
    grid-row: auto;
  }

  .about-history-card h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .about-history-item-wide {
    grid-column: auto;
  }

  .about-history-item h3 {
    margin-top: 18px;
  }

  .about-story-media img {
    aspect-ratio: 0.92 / 1;
  }

  .about-duo-section {
    width: var(--wide-shell);
    row-gap: 54px;
    padding: 58px 0 48px;
  }

  .about-duo-block {
    justify-items: center;
  }

  .about-duo-block h2 {
    margin-bottom: 22px;
    text-align: center;
    font-size: var(--heading-section-large-size);
  }

  .about-page-button {
    margin-top: 28px;
  }

  .spotlight-section {
    padding: 22px var(--page-pad) 46px;
  }

  .project-highlight-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .project-highlight,
  .project-highlight-left,
  .project-highlight-right {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .project-highlight-left .project-highlight-media,
  .project-highlight-right .project-highlight-media {
    order: 1;
    aspect-ratio: 1.05 / 1;
  }

  .project-highlight-left .project-highlight-copy,
  .project-highlight-copy {
    order: 2;
  }

  .project-showcase-stage {
    min-height: 0;
  }

  .project-showcase-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-showcase-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.42 / 1;
  }

  .project-showcase-copy {
    gap: 14px;
    padding: 16px 0 18px;
  }

  .project-showcase-copy h3 {
    font-size: var(--heading-section-compact-size);
  }

  .project-showcase-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 9px;
  }

  .project-showcase-controls {
    justify-content: space-between;
    gap: 10px;
  }

  .project-showcase-arrow {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .project-showcase-dots {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 3px;
    max-width: calc(100vw - 112px);
    min-width: 0;
    padding: 8px 1px;
  }

  .project-showcase-dot {
    width: 12px;
    flex: 0 0 12px;
  }

  .spotlight-grid,
  .spotlight-feature-left,
  .spotlight-feature-right,
  .spotlight-story {
    display: grid;
    grid-template-columns: 1fr;
  }

  .spotlight-feature-left,
  .spotlight-feature-right,
  .spotlight-story,
  .spotlight-note {
    grid-column: 1;
  }

  .spotlight-feature {
    gap: 14px;
  }

  .spotlight-caption {
    align-self: auto;
    order: 2;
  }

  .spotlight-feature-right .spotlight-caption {
    order: 2;
  }

  .spotlight-story {
    gap: 18px;
  }

  .spotlight-story img {
    max-width: 220px;
  }

  .spotlight-note {
    margin-top: 0;
    text-align: left;
  }

  .trade-band {
    align-items: start;
  }

  .service-images img {
    height: 260px;
  }

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

  .footer-contact-strip,
  .footer-showroom-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    gap: 14px 20px;
  }

  .chat-launcher {
    right: 16px;
    --chat-base-bottom: 16px;
    width: 52px;
    height: 52px;
  }

  body.product-sticky-actions-visible .chat-launcher {
    --chat-product-lift: 118px;
  }

  body.is-footer-bottom-visible .chat-launcher {
    --chat-footer-lift: 76px;
  }

  .chat-launcher-icon {
    width: 28px;
    height: 28px;
  }

  .chat-quick-actions {
    right: 16px;
    --chat-base-bottom: 16px;
    bottom: calc(var(--chat-base-bottom) + var(--chat-footer-lift) + 66px);
    gap: 7px;
  }

  body.is-footer-bottom-visible .chat-quick-actions {
    --chat-footer-lift: 76px;
  }

  .chat-quick-action {
    min-height: 34px;
    max-width: min(220px, calc(100vw - 32px));
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
  }

  .chat-greeting-card {
    max-width: min(410px, calc(100vw - 32px));
    min-height: 40px;
    padding-inline: 14px 42px;
  }

  .chat-greeting-close {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    right: 9px;
  }

  .chat-panel {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .chat-panel-card {
    max-height: calc(100svh - 20px);
    overflow: hidden;
    border-radius: 22px;
  }

  .search-promo {
    min-height: 38px;
    padding: 0 var(--page-pad);
    font-size: 12px;
  }

  .search-panel-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
    padding: 10px var(--page-pad);
  }

  .search-input-row {
    height: 48px;
    gap: 10px;
    padding: 0 14px;
  }

  .search-input-row #site-search {
    height: 46px;
    font-size: 16px;
  }

  .search-row-icon {
    width: 17px;
    height: 17px;
  }

  .search-close {
    width: 38px;
    height: 38px;
  }

  .search-results {
    width: 100%;
    padding: 18px var(--page-pad) 22px;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 150px);
  }

  .search-result-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    padding: 7px;
  }

  .search-result-media {
    width: 68px;
    height: 62px;
  }

  .search-suggestions {
    width: 100%;
    grid-auto-columns: minmax(136px, 42vw);
    grid-template-columns: none;
    justify-content: flex-start;
    gap: 18px;
    max-height: calc(100svh - 108px);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 28px var(--page-pad) 36px;
  }

  .search-suggestions.is-search-results {
    max-width: 1120px;
    display: block;
    max-height: none;
    overflow: visible;
    padding: 18px var(--page-pad) 22px;
  }

  .search-suggestion {
    grid-template-rows: 116px minmax(2.4em, auto);
  }

  .search-suggestion > span {
    width: min(150px, 100%);
  }
}

@media (max-width: 430px) {
  body.product-detail-page .header-actions .icon-button[aria-label="პროფილი"] {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 96px;
  }

  .mobile-menu-button {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    gap: 4px;
  }

  .language-current {
    min-width: 40px;
    height: 30px;
  }

  .header-call-button,
  .icon-button {
    width: 30px;
    height: 30px;
  }
}

.customer-reviews-layout {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-review-wall {
  display: contents;
}

.customer-review-feature,
.customer-review-card,
.customer-review-card--wide,
.customer-review-card--compact {
  grid-column: auto;
  min-height: 190px;
}

@media (max-width: 760px) {
  .customer-reviews-layout {
    grid-template-columns: 1fr;
  }

  .customer-review-wall {
    display: contents;
  }

  .customer-review-feature,
  .customer-review-card,
  .customer-review-card--wide,
  .customer-review-card--compact {
    min-height: auto;
  }

  .customer-review-feature blockquote,
  .customer-review-card blockquote {
    font-size: 12px;
    line-height: 1.46;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  :root {
    --heading-hero-size: clamp(50px, 6vw, 58px);
    --heading-page-size: clamp(44px, 5.2vw, 52px);
    --heading-section-large-size: clamp(34px, 4.1vw, 40px);
    --heading-section-size: clamp(31px, 3.6vw, 36px);
    --heading-section-compact-size: clamp(28px, 3.2vw, 32px);
  }

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

.category-image,
.outdoor-card img,
.about-us-photo img,
.cutting-service-photo img,
.service-images img,
.category-mosaic-image,
.category-mini-card img,
.category-room-card img,
.category-pick-image,
.service-feature-media,
.service-detail-image,
.service-detail-image img,
.about-editorial-media,
.about-brand-media,
.about-story-media,
.about-story-media img,
.project-highlight-media,
.project-showcase-media,
.spotlight-feature img,
.spotlight-story img,
.community-card img,
.cabana-image,
.cabana-image img,
.mega-product-image,
.search-suggestion img {
  border-radius: var(--media-radius);
}

main img:not([src*="logos/"]):not([src*="client-logos/"]):not([src*="flags/"]):not(.hero-image):not(.hero-image-low):not(.hero-image-high):not(.category-hero-image):not(.category-hero-image-low):not(.category-hero-image-high) {
  border-radius: var(--media-radius);
}

main :is(.hero-image, .hero-image-low, .hero-image-high, .category-hero-image, .category-hero-image-low, .category-hero-image-high) {
  border-radius: 0;
}

/* Circular controls must stay geometrically round and keep icons centered. */
:is(
  .icon-button,
  .project-showcase-arrow,
  .community-carousel-button,
  .review-video-play,
  .chat-launcher,
  .chat-composer button,
  .footer-social a
) {
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  line-height: 1;
  text-align: center;
}

:is(
  .icon-button,
  .project-showcase-arrow,
  .community-carousel-button,
  .review-video-play,
  .chat-launcher,
  .chat-composer button,
  .footer-social a
) > svg {
  display: block;
  flex: 0 0 auto;
  margin: auto;
}

:root {
  --heading-divider-gap: clamp(12px, 1.8vw, 26px);
  --heading-divider-width: clamp(54px, 12vw, 210px);
  --heading-divider-line: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0), rgba(var(--brand-accent-rgb), 0.58) 100%);
}

:is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .about-us-copy,
  .cutting-service-copy,
  .community-header,
  .reviews-heading-copy,
  .home-guide-aside,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .service-detail-copy,
  .spotlight-inner
) {
  text-align: center;
}

:is(
  .section-heading > h2,
  .clients-shell > h2,
  .outdoor-shell > h2,
  .cabana-header > h2,
  .about-us-copy > h2,
  .cutting-service-copy > h2,
  .community-header > h2,
  .reviews-heading-copy > h2,
  .home-guide-aside > h2,
  .home-faq-shell > h2,
  .about-mission-copy > h2,
  .about-section-heading > h2,
  .about-story-copy > h2,
  .about-duo-block > h2,
  .category-section-heading > h2,
  .category-inline-heading > h2,
  .category-learn-aside > h2,
  .service-copy > h2,
  .service-detail-copy > h2,
  .spotlight-inner > h2
) {
  position: relative;
  width: fit-content;
  max-width: min(100%, 920px);
  margin-inline: auto;
  overflow: visible;
  text-align: center;
}

:is(
  .section-heading > h2,
  .clients-shell > h2,
  .outdoor-shell > h2,
  .cabana-header > h2,
  .about-us-copy > h2,
  .cutting-service-copy > h2,
  .community-header > h2,
  .reviews-heading-copy > h2,
  .home-guide-aside > h2,
  .home-faq-shell > h2,
  .about-mission-copy > h2,
  .about-section-heading > h2,
  .about-story-copy > h2,
  .about-duo-block > h2,
  .category-section-heading > h2,
  .category-inline-heading > h2,
  .category-learn-aside > h2,
  .service-copy > h2,
  .service-detail-copy > h2,
  .spotlight-inner > h2
)::before,
:is(
  .section-heading > h2,
  .clients-shell > h2,
  .outdoor-shell > h2,
  .cabana-header > h2,
  .about-us-copy > h2,
  .cutting-service-copy > h2,
  .community-header > h2,
  .reviews-heading-copy > h2,
  .home-guide-aside > h2,
  .home-faq-shell > h2,
  .about-mission-copy > h2,
  .about-section-heading > h2,
  .about-story-copy > h2,
  .about-duo-block > h2,
  .category-section-heading > h2,
  .category-inline-heading > h2,
  .category-learn-aside > h2,
  .service-copy > h2,
  .service-detail-copy > h2,
  .spotlight-inner > h2
)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: var(--heading-divider-width);
  height: 1px;
  background: var(--heading-divider-line);
  pointer-events: none;
}

:is(
  .section-heading > h2,
  .clients-shell > h2,
  .outdoor-shell > h2,
  .cabana-header > h2,
  .about-us-copy > h2,
  .cutting-service-copy > h2,
  .community-header > h2,
  .reviews-heading-copy > h2,
  .home-guide-aside > h2,
  .home-faq-shell > h2,
  .about-mission-copy > h2,
  .about-section-heading > h2,
  .about-story-copy > h2,
  .about-duo-block > h2,
  .category-section-heading > h2,
  .category-inline-heading > h2,
  .category-learn-aside > h2,
  .service-copy > h2,
  .service-detail-copy > h2,
  .spotlight-inner > h2
)::before {
  right: 100%;
  margin-right: var(--heading-divider-gap);
}

:is(
  .section-heading > h2,
  .clients-shell > h2,
  .outdoor-shell > h2,
  .cabana-header > h2,
  .about-us-copy > h2,
  .cutting-service-copy > h2,
  .community-header > h2,
  .reviews-heading-copy > h2,
  .home-guide-aside > h2,
  .home-faq-shell > h2,
  .about-mission-copy > h2,
  .about-section-heading > h2,
  .about-story-copy > h2,
  .about-duo-block > h2,
  .category-section-heading > h2,
  .category-inline-heading > h2,
  .category-learn-aside > h2,
  .service-copy > h2,
  .service-detail-copy > h2,
  .spotlight-inner > h2
)::after {
  left: 100%;
  margin-left: var(--heading-divider-gap);
  transform: scaleX(-1);
}

:is(
  .section-heading > h2,
  .clients-shell > h2,
  .outdoor-shell > h2,
  .cabana-header > h2,
  .about-us-copy > h2,
  .cutting-service-copy > h2,
  .community-header > h2,
  .reviews-heading-copy > h2,
  .home-guide-aside > h2,
  .home-faq-shell > h2,
  .about-mission-copy > h2,
  .about-section-heading > h2,
  .about-story-copy > h2,
  .about-duo-block > h2,
  .category-section-heading > h2,
  .category-inline-heading > h2,
  .category-learn-aside > h2,
  .service-copy > h2,
  .service-detail-copy > h2,
  .spotlight-inner > h2
)::before,
:is(
  .section-heading > h2,
  .clients-shell > h2,
  .outdoor-shell > h2,
  .cabana-header > h2,
  .about-us-copy > h2,
  .cutting-service-copy > h2,
  .community-header > h2,
  .reviews-heading-copy > h2,
  .home-guide-aside > h2,
  .home-faq-shell > h2,
  .about-mission-copy > h2,
  .about-section-heading > h2,
  .about-story-copy > h2,
  .about-duo-block > h2,
  .category-section-heading > h2,
  .category-inline-heading > h2,
  .category-learn-aside > h2,
  .service-copy > h2,
  .service-detail-copy > h2,
  .spotlight-inner > h2
)::after {
  content: none;
  display: none;
}

.cabana-header,
.customer-reviews-heading {
  justify-items: center;
  justify-content: center;
  text-align: center;
}

.cabana-header {
  flex-direction: column;
}

.category-section-heading,
.category-inline-heading,
.about-section-heading {
  margin-inline: auto;
}

.customer-reviews-heading {
  grid-template-columns: minmax(0, 780px);
  gap: 10px;
}

.reviews-heading-copy {
  justify-items: center;
}

.customer-reviews-heading p {
  margin-inline: auto;
}

.reviews-score-panel {
  width: max-content;
  min-width: 0;
  justify-items: center;
  gap: 3px;
  padding: 0;
  border-left: 0;
}

.reviews-score-panel strong {
  font-size: 32.4px;
  line-height: 1;
  font-weight: var(--weight-medium);
}

.reviews-score-panel .review-stars {
  font-size: 10.8px;
}

.reviews-score-panel > span:last-child {
  font-size: 12.15px;
  line-height: 1.15;
}

.category-card > span:not(.category-image),
.cabana-product,
.category-mosaic-card,
.category-mini-card,
.category-room-card,
.category-pick-card {
  text-align: center;
}

.home-detail-button,
.cutting-service-list {
  margin-inline: auto;
}

.about-us-copy {
  text-align: left;
}

.about-us-copy > h2 {
  width: auto;
  margin-inline: 0;
  text-align: left;
}

.about-us-copy > h2::before,
.about-us-copy > h2::after {
  display: none;
}

.about-us-copy .home-detail-button {
  margin-inline: 0;
}

@media (max-width: 680px) {
  :root {
    --heading-divider-gap: clamp(8px, 2.5vw, 12px);
    --heading-divider-width: clamp(24px, 9vw, 46px);
  }
}

@media (max-width: 460px) {
  .cutting-service-list {
    grid-template-columns: 1fr;
  }

  .cutting-service-list li:last-child {
    width: 100%;
  }

  :is(
    .section-heading > h2,
    .clients-shell > h2,
    .outdoor-shell > h2,
    .cabana-header > h2,
    .about-us-copy > h2,
    .cutting-service-copy > h2,
    .community-header > h2,
    .reviews-heading-copy > h2,
    .home-guide-aside > h2,
    .home-faq-shell > h2,
    .about-mission-copy > h2,
    .about-section-heading > h2,
    .about-story-copy > h2,
    .about-duo-block > h2,
    .category-section-heading > h2,
    .category-inline-heading > h2,
    .category-learn-aside > h2,
    .service-copy > h2,
    .service-detail-copy > h2,
    .spotlight-inner > h2
  )::before,
  :is(
    .section-heading > h2,
    .clients-shell > h2,
    .outdoor-shell > h2,
    .cabana-header > h2,
    .about-us-copy > h2,
    .cutting-service-copy > h2,
    .community-header > h2,
    .reviews-heading-copy > h2,
    .home-guide-aside > h2,
    .home-faq-shell > h2,
    .about-mission-copy > h2,
    .about-section-heading > h2,
    .about-story-copy > h2,
    .about-duo-block > h2,
    .category-section-heading > h2,
    .category-inline-heading > h2,
    .category-learn-aside > h2,
    .service-copy > h2,
    .service-detail-copy > h2,
    .spotlight-inner > h2
  )::after {
    display: none;
  }
}

/* Merlons heading divider audit: every public section headline uses the brand accent. */
:is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .about-us-copy,
  .cutting-service-copy,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-guide-aside,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .service-detail-copy,
  .spotlight-inner
) {
  text-align: center;
}

:is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .about-us-copy,
  .cutting-service-copy,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-guide-aside,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .service-detail-copy,
  .spotlight-inner
) > h2:not(.sr-only) {
  position: relative;
  width: fit-content;
  max-width: min(100%, 920px);
  margin-inline: auto;
  overflow: visible;
  text-align: center;
}

:is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .about-us-copy,
  .cutting-service-copy,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-guide-aside,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .service-detail-copy,
  .spotlight-inner
) > h2:not(.sr-only)::before,
:is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .about-us-copy,
  .cutting-service-copy,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-guide-aside,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .service-detail-copy,
  .spotlight-inner
) > h2:not(.sr-only)::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: var(--heading-divider-width);
  height: 1px;
  background: var(--heading-divider-line);
  pointer-events: none;
}

:is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .about-us-copy,
  .cutting-service-copy,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-guide-aside,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .service-detail-copy,
  .spotlight-inner
) > h2:not(.sr-only)::before {
  right: 100%;
  margin-right: var(--heading-divider-gap);
}

:is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .about-us-copy,
  .cutting-service-copy,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-guide-aside,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .service-detail-copy,
  .spotlight-inner
) > h2:not(.sr-only)::after {
  left: 100%;
  margin-left: var(--heading-divider-gap);
  transform: scaleX(-1);
}

.about-brand-title {
  border-left-color: var(--burnt);
}

.category-inline-heading h2 {
  border-bottom-color: var(--burnt);
}

@media (max-width: 520px) {
  .site-header:not([data-mobile-open="true"]):not([data-menu-open="true"]) .mega-menu {
    display: none;
  }

  .community-carousel-wrap {
    contain: layout paint;
    overflow: hidden;
  }

  :is(
    .section-heading,
    .clients-shell,
    .outdoor-shell,
    .cabana-header,
    .about-us-copy,
    .cutting-service-copy,
    .community-header,
    .reviews-heading-copy,
    .home-guide-heading,
    .home-guide-aside,
    .home-faq-shell,
    .about-mission-copy,
    .about-section-heading,
    .about-story-copy,
    .about-duo-block,
    .category-section-heading,
    .category-inline-heading,
    .category-learn-aside,
    .service-copy,
    .service-detail-copy,
    .spotlight-inner
  ) > h2:not(.sr-only) {
    padding-bottom: 12px;
  }

  :is(
    .section-heading,
    .clients-shell,
    .outdoor-shell,
    .cabana-header,
    .about-us-copy,
    .cutting-service-copy,
    .community-header,
    .reviews-heading-copy,
    .home-guide-heading,
    .home-guide-aside,
    .home-faq-shell,
    .about-mission-copy,
    .about-section-heading,
    .about-story-copy,
    .about-duo-block,
    .category-section-heading,
    .category-inline-heading,
    .category-learn-aside,
    .service-copy,
    .service-detail-copy,
    .spotlight-inner
  ) > h2:not(.sr-only)::before {
    content: none;
    display: none;
  }

  :is(
    .section-heading,
    .clients-shell,
    .outdoor-shell,
    .cabana-header,
    .about-us-copy,
    .cutting-service-copy,
    .community-header,
    .reviews-heading-copy,
    .home-guide-heading,
    .home-guide-aside,
    .home-faq-shell,
    .about-mission-copy,
    .about-section-heading,
    .about-story-copy,
    .about-duo-block,
    .category-section-heading,
    .category-inline-heading,
    .category-learn-aside,
    .service-copy,
    .service-detail-copy,
    .spotlight-inner
  ) > h2:not(.sr-only)::after {
    top: auto;
    bottom: 0;
    left: 50%;
    width: clamp(52px, 28vw, 96px);
    margin-left: 0;
    background: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0), rgba(var(--brand-accent-rgb), 0.68) 50%, rgba(var(--brand-accent-rgb), 0));
    transform: translateX(-50%);
  }
}

/* Final public-page rhythm pass: headings, descriptions, divider lines, and CTAs. */
:root {
  --heading-divider-gap: clamp(10px, 1.4vw, 22px);
  --heading-divider-width: clamp(42px, 8.5vw, 170px);
  --heading-divider-line: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0), rgba(var(--brand-accent-rgb), 0.62) 100%);
  --section-heading-copy-max: 68ch;
}

:where(main) :is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .spotlight-inner
) {
  width: min(100%, var(--wide-content-max));
  margin-inline: auto;
  text-align: center;
}

:where(main) :is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .category-learn-aside,
  .service-copy,
  .spotlight-inner
) > h2:not(.sr-only) {
  position: relative;
  width: fit-content;
  max-width: min(920px, calc(100% - ((var(--heading-divider-width) + var(--heading-divider-gap)) * 2)));
  margin-inline: auto;
  padding: 0;
  border-bottom: 0;
  color: #050505;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

:where(main) :is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .service-copy,
  .spotlight-inner
) > h2:not(.sr-only)::before,
:where(main) :is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .service-copy,
  .spotlight-inner
) > h2:not(.sr-only)::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: var(--heading-divider-width);
  height: 1px;
  background: var(--heading-divider-line);
  pointer-events: none;
}

:where(main) :is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .service-copy,
  .spotlight-inner
) > h2:not(.sr-only)::before {
  right: 100%;
  margin-right: var(--heading-divider-gap);
}

:where(main) :is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .service-copy,
  .spotlight-inner
) > h2:not(.sr-only)::after {
  left: 100%;
  margin-left: var(--heading-divider-gap);
  transform: scaleX(-1);
}

:where(main) :is(
  .section-heading,
  .clients-shell,
  .outdoor-shell,
  .cabana-header,
  .community-header,
  .reviews-heading-copy,
  .home-guide-heading,
  .home-faq-shell,
  .about-mission-copy,
  .about-section-heading,
  .about-story-copy,
  .about-duo-block,
  .category-section-heading,
  .category-inline-heading,
  .service-copy,
  .spotlight-inner
) > p:not(.eyebrow):not(.about-section-kicker) {
  width: min(100%, var(--section-heading-copy-max));
  margin: clamp(12px, 1.4vw, 18px) auto 0;
  color: rgba(33, 33, 35, 0.72);
  line-height: 1.62;
  text-align: center;
}

.category-learn-aside > h2:not(.sr-only),
.about-us-copy > h2:not(.sr-only),
.service-detail-copy > h2:not(.sr-only) {
  max-width: 100%;
}

.category-learn-aside > h2:not(.sr-only) {
  padding-bottom: 13px;
}

.category-learn-aside > h2:not(.sr-only)::before {
  content: none;
  display: none;
}

.category-learn-aside > h2:not(.sr-only)::after {
  top: auto;
  bottom: 0;
  left: 50%;
  width: clamp(52px, 38%, 92px);
  margin-left: 0;
  background: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0), rgba(var(--brand-accent-rgb), 0.68) 50%, rgba(var(--brand-accent-rgb), 0));
  transform: translateX(-50%);
}

.about-us-copy,
.service-detail-copy {
  text-align: left;
}

.about-us-copy > h2:not(.sr-only),
.service-detail-copy > h2:not(.sr-only) {
  width: auto;
  margin-inline: 0;
  text-align: left;
}

.about-us-copy > h2:not(.sr-only)::before,
.about-us-copy > h2:not(.sr-only)::after,
.service-detail-copy > h2:not(.sr-only)::before,
.service-detail-copy > h2:not(.sr-only)::after {
  content: none;
  display: none;
}

:where(main) :is(
  .hero-button,
  .hero-button-dark,
  .outline-button,
  .solid-button,
  .home-detail-button,
  .about-page-button,
  .cabana-detail-button,
  .technology-card-button,
  .home-guide-card-action,
  .footer-discover-button
) {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding-inline: clamp(16px, 1.8vw, 24px);
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

:where(main) :is(
  .home-category-card > span:last-child,
  .cabana-product > span:last-child,
  .brand-showcase-card > span:last-child,
  .category-card > span:not(.category-image),
  .category-mini-card > span,
  .category-room-card > span,
  .category-pick-card strong
) {
  justify-content: center;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 760px) {
  :root {
    --heading-divider-gap: clamp(8px, 2.2vw, 12px);
    --heading-divider-width: clamp(34px, 10vw, 58px);
  }

  :where(main) :is(
    .section-heading,
    .clients-shell,
    .outdoor-shell,
    .cabana-header,
    .community-header,
    .reviews-heading-copy,
    .home-guide-heading,
    .home-faq-shell,
    .about-mission-copy,
    .about-section-heading,
    .about-story-copy,
    .about-duo-block,
    .category-section-heading,
    .category-inline-heading,
    .service-copy,
    .spotlight-inner
  ) > h2:not(.sr-only) {
    max-width: min(100%, 21ch);
  }
}

@media (max-width: 520px) {
  :where(main) :is(
    .section-heading,
    .clients-shell,
    .outdoor-shell,
    .cabana-header,
    .community-header,
    .reviews-heading-copy,
    .home-guide-heading,
    .home-faq-shell,
    .about-mission-copy,
    .about-section-heading,
    .about-story-copy,
    .about-duo-block,
    .category-section-heading,
    .category-inline-heading,
    .category-learn-aside,
    .service-copy,
    .spotlight-inner
  ) > h2:not(.sr-only) {
    max-width: min(100%, 18ch);
    padding-bottom: 12px;
  }

  :where(main) :is(
    .section-heading,
    .clients-shell,
    .outdoor-shell,
    .cabana-header,
    .community-header,
    .reviews-heading-copy,
    .home-guide-heading,
    .home-faq-shell,
    .about-mission-copy,
    .about-section-heading,
    .about-story-copy,
    .about-duo-block,
    .category-section-heading,
    .category-inline-heading,
    .category-learn-aside,
    .service-copy,
    .spotlight-inner
  ) > h2:not(.sr-only)::before {
    content: none;
    display: none;
  }

  :where(main) :is(
    .section-heading,
    .clients-shell,
    .outdoor-shell,
    .cabana-header,
    .community-header,
    .reviews-heading-copy,
    .home-guide-heading,
    .home-faq-shell,
    .about-mission-copy,
    .about-section-heading,
    .about-story-copy,
    .about-duo-block,
    .category-section-heading,
    .category-inline-heading,
    .category-learn-aside,
    .service-copy,
    .spotlight-inner
  ) > h2:not(.sr-only)::after {
    top: auto;
    bottom: 0;
    left: 50%;
    width: clamp(52px, 28vw, 96px);
    margin-left: 0;
    background: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0), rgba(var(--brand-accent-rgb), 0.68) 50%, rgba(var(--brand-accent-rgb), 0));
    transform: translateX(-50%);
  }

  :where(main) :is(
    .hero-button,
    .hero-button-dark,
    .outline-button,
    .solid-button,
    .home-detail-button,
    .about-page-button,
    .cabana-detail-button,
    .technology-card-button,
    .home-guide-card-action,
    .footer-discover-button
  ) {
    width: fit-content;
    min-height: 40px;
    padding-inline: 16px;
  }
}

/* Final guard for the cutting-service section so it follows the same heading rhythm. */
.cutting-service-copy {
  width: min(100%, var(--wide-content-max));
  margin-inline: auto;
  text-align: center;
}

.cutting-service-copy > h2:not(.sr-only) {
  position: relative;
  width: fit-content;
  max-width: min(920px, calc(100% - ((var(--heading-divider-width) + var(--heading-divider-gap)) * 2)));
  margin-inline: auto;
  padding: 0;
  border-bottom: 0;
  color: #050505;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.cutting-service-copy > h2:not(.sr-only)::before,
.cutting-service-copy > h2:not(.sr-only)::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: var(--heading-divider-width);
  height: 1px;
  background: var(--heading-divider-line);
  pointer-events: none;
}

.cutting-service-copy > h2:not(.sr-only)::before {
  right: 100%;
  margin-right: var(--heading-divider-gap);
}

.cutting-service-copy > h2:not(.sr-only)::after {
  left: 100%;
  margin-left: var(--heading-divider-gap);
  transform: scaleX(-1);
}

.cutting-service-copy > p:not(.cutting-service-eyebrow) {
  width: min(100%, var(--section-heading-copy-max));
  margin: clamp(12px, 1.4vw, 18px) auto 0;
  color: rgba(33, 33, 35, 0.72);
  line-height: 1.62;
  text-align: center;
}

@media (max-width: 760px) {
  .cutting-service-copy > h2:not(.sr-only) {
    max-width: min(100%, 21ch);
  }
}

@media (max-width: 520px) {
  .cutting-service-copy > h2:not(.sr-only) {
    max-width: min(100%, 18ch);
    padding-bottom: 12px;
  }

  .cutting-service-copy > h2:not(.sr-only)::before {
    content: none;
    display: none;
  }

  .cutting-service-copy > h2:not(.sr-only)::after {
    top: auto;
    bottom: 0;
    left: 50%;
    width: clamp(52px, 28vw, 96px);
    margin-left: 0;
    background: linear-gradient(90deg, rgba(var(--brand-accent-rgb), 0), rgba(var(--brand-accent-rgb), 0.68) 50%, rgba(var(--brand-accent-rgb), 0));
    transform: translateX(-50%);
  }

  .chat-greeting-action {
    min-height: 36px;
    align-items: center;
    line-height: 1.25;
    white-space: normal;
  }
}

/* Final media-cover pass for public content cards and editorial imagery. */
:where(main) :is(
  .home-category-card-media,
  .category-image,
  .category-mosaic-image,
  .category-pick-image,
  .category-mini-card,
  .category-room-card,
  .cabana-image,
  .brand-showcase-media,
  .project-highlight-media,
  .project-showcase-media,
  .service-images,
  .service-feature-media,
  .service-detail-image,
  .about-editorial-media,
  .about-brand-media,
  .about-story-media,
  .community-card,
  .spotlight-feature,
  .spotlight-story,
  .search-suggestion
) {
  overflow: hidden;
}

:where(main) :is(
  .home-category-card-media,
  .category-image,
  .category-mosaic-image,
  .category-pick-image,
  .category-mini-card,
  .category-room-card,
  .cabana-image,
  .brand-showcase-media,
  .project-highlight-media,
  .project-showcase-media,
  .service-images,
  .service-feature-media,
  .service-detail-image,
  .about-editorial-media,
  .about-brand-media,
  .about-story-media,
  .community-card,
  .spotlight-feature,
  .spotlight-story,
  .search-suggestion
) img:not([src*="logos/"]):not([src*="brand-logos/"]):not([src*="client-logos/"]):not([src*="flags/"]) {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.brand-logo-showcase .brand-showcase-media img[src*="brand-logos/"] {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

/* Homepage motion: scroll-visible, compositor-safe, and reduced-motion aware. */
.home-page-main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 840px;
}

:where(.category-page-main, .about-page-main, .catalog-main, .cart-main) > section:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: auto 780px;
}

.home-page .home-animate {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

.home-page :is(
  .home-category-card,
  .home-inspiration-card,
  .technology-card,
  .community-card,
  .home-guide-card,
  .customer-review-pill,
  .brand-showcase-card,
  .client-logo
) {
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .home-page {
    --home-motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --home-motion-duration: 880ms;
  }

  .home-page .home-animate {
    opacity: 0;
    scale: var(--home-motion-scale, 0.965);
    translate: var(--home-motion-x, 0) var(--home-motion-y, 42px);
    transform-origin: var(--home-motion-origin, center);
    transition:
      opacity var(--home-motion-duration) var(--home-motion-ease),
      scale var(--home-motion-duration) var(--home-motion-ease),
      translate var(--home-motion-duration) var(--home-motion-ease);
    transition-delay: var(--home-motion-delay, 0ms);
    will-change: transform, opacity;
  }

  .home-page .home-motion-soft {
    --home-motion-y: 28px;
    --home-motion-scale: 0.985;
  }

  .home-page .home-motion-title {
    --home-motion-y: 36px;
    --home-motion-scale: 0.98;
    --home-motion-duration: 980ms;
  }

  .home-page .home-motion-card {
    --home-motion-y: 54px;
    --home-motion-scale: 0.935;
    --home-motion-duration: 940ms;
  }

  .home-page .home-motion-pop {
    --home-motion-y: 38px;
    --home-motion-scale: 0.9;
  }

  .home-page .home-motion-left {
    --home-motion-x: -54px;
    --home-motion-y: 0;
    --home-motion-scale: 0.97;
    --home-motion-duration: 1040ms;
  }

  .home-page .home-motion-right {
    --home-motion-x: 54px;
    --home-motion-y: 0;
    --home-motion-scale: 0.97;
    --home-motion-duration: 1040ms;
  }

  .home-page .home-animate.is-visible {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }

  .home-page .home-animate:is(
    .home-category-card,
    .home-inspiration-card,
    .technology-card,
    .home-guide-card,
    .brand-showcase-card,
    .realized-project-card
  ) img {
    scale: 1.06;
    transition: scale 1200ms var(--home-motion-ease);
    transition-delay: var(--home-motion-delay, 0ms);
  }

  .home-page .home-animate.is-visible:is(
    .home-category-card,
    .home-inspiration-card,
    .technology-card,
    .home-guide-card,
    .brand-showcase-card,
    .realized-project-card
  ) img {
    scale: 1;
  }

  .home-page .home-animate .hero-benefit-mark * {
    stroke-dasharray: 52;
    stroke-dashoffset: 52;
    transition: stroke-dashoffset 920ms var(--home-motion-ease);
    transition-delay: calc(var(--home-motion-delay, 0ms) + 160ms);
  }

  .home-page .home-animate.is-visible .hero-benefit-mark * {
    stroke-dashoffset: 0;
  }

  @supports (animation-timeline: view()) {
    .home-page.home-scroll-motion-ready .home-animate {
      animation: homeScrollRise 1ms both;
      animation-timeline: view();
      animation-range: entry -14% cover 46%;
      opacity: 1;
      scale: 1;
      translate: 0 0;
      transition: none;
      will-change: auto;
    }

    .home-page.home-scroll-motion-ready .home-motion-card {
      animation-name: homeScrollCard;
      animation-range: entry -10% cover 52%;
    }

    .home-page.home-scroll-motion-ready .home-motion-title {
      animation-name: homeScrollTitle;
      animation-range: entry -18% cover 42%;
    }

    .home-page.home-scroll-motion-ready .home-motion-pop {
      animation-name: homeScrollPop;
      animation-range: entry -14% cover 44%;
    }

    .home-page.home-scroll-motion-ready .home-motion-left {
      animation-name: homeScrollLeft;
      animation-range: entry -12% cover 48%;
    }

    .home-page.home-scroll-motion-ready .home-motion-right {
      animation-name: homeScrollRight;
      animation-range: entry -12% cover 48%;
    }

    .home-page.home-scroll-motion-ready .home-animate:is(
      .home-category-card,
      .home-inspiration-card,
      .technology-card,
      .home-guide-card,
      .brand-showcase-card,
      .realized-project-card
    ) img {
      animation: homeScrollImageSettle 1ms both;
      animation-timeline: view();
      animation-range: entry -12% cover 58%;
      transition: none;
    }

    .home-page.home-scroll-motion-ready .home-animate .hero-benefit-mark * {
      animation: homeScrollIconDraw 1ms both;
      animation-timeline: view();
      animation-range: entry -8% cover 42%;
      transition: none;
    }
  }
}

@keyframes homeScrollRise {
  0% {
    opacity: 0;
    scale: 0.965;
    translate: 0 46px;
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes homeScrollCard {
  0% {
    opacity: 0;
    scale: 0.92;
    translate: 0 64px;
  }

  58% {
    opacity: 1;
    scale: 1.012;
  }

  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes homeScrollTitle {
  0% {
    opacity: 0;
    scale: 0.97;
    translate: 0 44px;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes homeScrollPop {
  0% {
    opacity: 0;
    scale: 0.86;
    translate: 0 40px;
  }

  62% {
    opacity: 1;
    scale: 1.05;
  }

  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes homeScrollLeft {
  0% {
    opacity: 0;
    scale: 0.96;
    translate: -66px 0;
  }

  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes homeScrollRight {
  0% {
    opacity: 0;
    scale: 0.96;
    translate: 66px 0;
  }

  100% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes homeScrollImageSettle {
  0% {
    scale: 1.1;
  }

  100% {
    scale: 1;
  }
}

@keyframes homeScrollIconDraw {
  0% {
    stroke-dashoffset: 52;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.home-page .home-category-card {
  position: relative;
  overflow: hidden;
}

.home-page .home-category-card::before,
.home-page .technology-card::before,
.home-page .home-guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 42%, transparent 62%);
  opacity: 0;
  transform: translate3d(-125%, 0, 0);
  transition:
    opacity 220ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .home-category-card:hover::before,
.home-page .home-category-card:focus-visible::before,
.home-page .technology-card:hover::before,
.home-page .technology-card:focus-visible::before,
.home-page .home-guide-card:hover::before,
.home-page .home-guide-card:focus-visible::before {
  opacity: 1;
  transform: translate3d(125%, 0, 0);
}

.home-page .technology-card::before,
.home-page .home-guide-card::before {
  z-index: 4;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, transparent 62%);
}

.home-page .hero-benefits li,
.home-page .community-social,
.home-page .community-social svg,
.home-page .home-detail-button,
.home-page .home-guide-card-action,
.home-page .technology-card-button {
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    background-color 190ms ease,
    border-color 190ms ease,
    color 190ms ease;
}

.home-page .hero-benefits li:hover,
.home-page .hero-benefits li:focus-within {
  transform: translateY(-2px);
}

.home-page .hero-benefits li:hover .hero-benefit-mark,
.home-page .hero-benefits li:focus-within .hero-benefit-mark {
  transform: rotate(-7deg) scale(1.1);
}

.home-page .hero-benefit-mark,
.home-page .community-social svg {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .community-social:hover svg,
.home-page .community-social:focus-visible svg {
  transform: translateY(-1px) scale(1.1) rotate(-3deg);
}

.home-page .customer-review-track:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: no-preference) {
  .home-page.home-scroll-motion-ready .home-animate.technology-card--pedrali img.technology-card-bg {
    animation: technology-pedrali-first 8s ease-in-out infinite;
    animation-timeline: auto;
    transition: transform 420ms ease;
  }

  .home-page.home-scroll-motion-ready .home-animate.technology-card--pedrali img.technology-card-bg--second {
    animation-name: technology-pedrali-second;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-animate,
  .home-page .home-animate.is-visible {
    opacity: 1;
    scale: 1;
    translate: 0 0;
    transition: none;
  }

  .home-page .home-animate img {
    scale: 1;
    transition: none;
  }

  .home-page .home-category-card::before,
  .home-page .technology-card::before,
  .home-page .home-guide-card::before {
    content: none;
  }
}

.home-page .home-animate .hero-benefit-mark *,
.home-page.home-scroll-motion-ready .home-animate .hero-benefit-mark * {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  transition-property: none;
  animation: none;
}

.home-page .hero-seo-copy {
  display: none !important;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .site-header {
  position: sticky;
  inset: auto;
  top: 0;
  color: var(--charcoal);
  background: var(--page-bg);
  border-bottom: 1px solid var(--header-separator);
  box-shadow: 0 8px 22px rgba(33, 33, 35, 0.018);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .site-header::before {
  content: none;
  display: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .header-main {
  background: var(--page-bg);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .brand img,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .site-header[data-menu-open="true"] .brand img {
  content: url("assets/logos/merlons-wordmark-transparent.png");
  filter: drop-shadow(0 6px 16px rgba(33, 33, 35, 0.035));
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .menu-trigger,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .menu-trigger:hover,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .menu-trigger:focus-visible,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .menu-trigger.is-active,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .language-current,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .icon-button {
  color: #050505;
  text-shadow: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .menu-trigger::after {
  background: var(--burnt);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .language-current,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .icon-button {
  filter: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .language-current:hover,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .language-current:focus-visible,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .language-selector:focus-within .language-current,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .icon-button:hover,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .icon-button:focus-visible {
  color: var(--burnt);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .icon-button:hover,
body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .icon-button:focus-visible {
  color: var(--white);
  background: var(--burnt);
  opacity: 1;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero {
  min-height: var(--hero-min-h);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 58%, #f1ede6 100%);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, rgba(247, 245, 239, 0) 0%, rgba(33, 33, 35, 0.06) 100%);
  pointer-events: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(251, 250, 247, 0.58) 52%, rgba(241, 237, 230, 0.74) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.48) 100%);
  pointer-events: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-overlay {
  display: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  filter: saturate(0.98) contrast(0.98);
  transform: scale(1.015);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-image-high.is-loaded {
  opacity: 1;
  transform: scale(1);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-shell {
  position: relative;
  z-index: 2;
  width: var(--wide-shell);
  min-height: var(--hero-min-h);
  align-content: end;
  gap: 40px;
  padding: 32px 0 clamp(50px, 6vw, 82px);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy {
  width: min(760px, 100%);
  justify-self: center;
  padding: 0;
  color: #050505;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy::before {
  content: none;
  display: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy .eyebrow {
  color: var(--burnt);
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy h1 {
  color: #050505;
  line-height: 1.16;
  text-shadow: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy p:not(.eyebrow) {
  color: rgba(33, 33, 35, 0.74);
  text-shadow: none;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy .hero-benefits {
  flex-wrap: wrap;
  justify-content: center;
  overflow: visible;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy .hero-benefits li {
  box-shadow: none;
  text-shadow: none;
  white-space: normal;
}

body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-actions .hero-button {
  border-color: var(--burnt);
  color: var(--white);
  background: var(--burnt);
  box-shadow: 0 14px 32px rgba(135, 60, 30, 0.18);
}

@media (max-width: 760px) {
  body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-shell {
    gap: 30px;
    padding: 24px 0 44px;
  }

  body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy {
  width: min(340px, 100%);
  justify-self: center;
  padding: 0;
  text-align: center;
}

  body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy h1,
  body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero--services .category-hero-copy h1 {
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.24;
    overflow-wrap: break-word;
  }

  body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  body:is(.sanitary-page, .lighting-page, .tiles-page, .furniture-page, .services-page):not(.catalog-page):not(.subcategory-page):not(.product-detail-page) .category-hero-actions {
    justify-content: center;
  }
}

.blog-page-main {
  background: var(--page-bg);
}

.blog-list-section {
  padding: 54px var(--page-pad) 104px;
  background: var(--page-bg);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.blog-page .chat-quick-actions {
  display: none;
}

.blog-list-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  display: grid;
  gap: 28px;
  margin: 0 auto;
}

.blog-page .blog-animate {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

.blog-list-heading {
  width: min(760px, 100%);
  min-width: 0;
  display: grid;
  justify-self: center;
  gap: 12px;
  text-align: center;
}

.blog-section-kicker {
  margin: 0;
  color: var(--burnt);
  font-size: 13px;
  line-height: 1.4;
  font-weight: var(--weight-semibold);
}

.blog-list-heading :is(h1, h2) {
  margin: 0;
  color: #050505;
  font-size: 42px;
  line-height: 1.18;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.blog-list-heading p:last-child {
  margin: 0;
  color: rgba(33, 33, 35, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.blog-controls {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(33, 33, 35, 0.1);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 14px 34px rgba(33, 33, 35, 0.05);
}

.blog-search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-search-field svg {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--burnt);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.blog-search-field input {
  width: 100%;
  min-height: 40px;
  padding: 0 14px 0 38px;
  border: 1px solid rgba(135, 60, 30, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.blog-search-field input#blog-search {
  height: 40px;
  min-height: 40px;
}

.blog-search-field input::placeholder {
  color: rgba(33, 33, 35, 0.52);
}

.blog-search-field input:hover,
.blog-search-field input:focus-visible {
  border-color: rgba(135, 60, 30, 0.58);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(135, 60, 30, 0.09);
}

.blog-category-filter {
  position: relative;
  min-width: 0;
}

.blog-category-trigger {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 13px 0 15px;
  border: 1px solid rgba(135, 60, 30, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.blog-category-trigger span {
  color: rgba(33, 33, 35, 0.5);
  font-size: 12px;
  font-weight: var(--weight-semibold);
}

.blog-category-trigger strong {
  min-width: 0;
  overflow: hidden;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-category-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--burnt);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.blog-category-trigger:hover,
.blog-category-trigger:focus-visible,
.blog-category-filter.is-open .blog-category-trigger {
  border-color: rgba(135, 60, 30, 0.58);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(135, 60, 30, 0.09);
  outline: none;
}

.blog-category-filter.is-open .blog-category-trigger svg {
  transform: rotate(180deg);
}

.blog-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-category-filter .blog-filter-chips {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: min(560px, calc(100vw - (var(--page-pad) * 2)));
  max-height: min(360px, 54vh);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(33, 33, 35, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 24px 58px rgba(33, 33, 35, 0.16);
}

.blog-category-filter .blog-filter-chips[hidden] {
  display: none;
}

.blog-filter-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(33, 33, 35, 0.13);
  border-radius: 999px;
  background: var(--white);
  color: rgba(33, 33, 35, 0.76);
  font: inherit;
  font-size: 11.5px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.blog-category-filter .blog-filter-chip {
  min-width: 0;
  min-height: 34px;
  justify-content: flex-start;
  padding: 0 12px;
  text-align: left;
}

.blog-filter-chip:hover,
.blog-filter-chip:focus-visible {
  color: var(--burnt);
  border-color: rgba(135, 60, 30, 0.38);
  outline: none;
  transform: translateY(-1px);
}

.blog-filter-chip.is-active,
.blog-filter-chip[aria-pressed="true"] {
  border-color: var(--burnt);
  background: var(--burnt);
  color: var(--white);
}

.blog-results-line {
  display: flex;
  justify-content: flex-end;
  color: rgba(33, 33, 35, 0.62);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

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

.blog-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(33, 33, 35, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(33, 33, 35, 0.065);
  cursor: pointer;
  backface-visibility: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.blog-card[hidden] {
  display: none;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(135, 60, 30, 0.28);
  box-shadow: 0 24px 54px rgba(33, 33, 35, 0.105);
  transform: translateY(-3px);
}

.blog-card:focus-visible {
  outline: 2px solid var(--burnt);
  outline-offset: 4px;
}

.blog-card-media {
  aspect-ratio: 1.36 / 1;
  overflow: hidden;
  background: #f3f0ea;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 760ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

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

.blog-card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: rgba(33, 33, 35, 0.58);
  font-size: 11px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.blog-card-meta span:first-child {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(45, 91, 84, 0.11);
  color: #244d47;
}

.blog-card h2 {
  margin: 0;
  color: #050505;
  font-size: 17px;
  line-height: 1.34;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
}

.blog-card p {
  margin: 0;
  color: rgba(33, 33, 35, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.blog-empty-state {
  margin: 10px 0 0;
  padding: 26px;
  border: 1px solid rgba(135, 60, 30, 0.16);
  border-radius: 8px;
  background: #fbfaf7;
  color: rgba(33, 33, 35, 0.68);
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .blog-page {
    --blog-motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --blog-motion-duration: 660ms;
  }

  .blog-page.blog-motion-ready .blog-animate {
    opacity: 0;
    scale: var(--blog-motion-scale, 0.98);
    translate: 0 var(--blog-motion-y, 24px);
    transition:
      opacity var(--blog-motion-duration) var(--blog-motion-ease),
      scale var(--blog-motion-duration) var(--blog-motion-ease),
      translate var(--blog-motion-duration) var(--blog-motion-ease);
    transition-delay: var(--blog-motion-delay, 0ms);
    will-change: transform, opacity;
  }

  .blog-page .blog-motion-title {
    --blog-motion-y: 18px;
    --blog-motion-scale: 0.99;
    --blog-motion-duration: 720ms;
  }

  .blog-page .blog-motion-soft {
    --blog-motion-y: 12px;
    --blog-motion-scale: 1;
    --blog-motion-duration: 520ms;
  }

  .blog-page .blog-motion-card {
    --blog-motion-y: 28px;
    --blog-motion-scale: 0.965;
  }

  .blog-page.blog-motion-ready .blog-animate.is-visible {
    opacity: 1;
    scale: 1;
    translate: 0 0;
    will-change: auto;
  }

  .blog-page.blog-motion-ready .blog-card.blog-animate .blog-card-media img {
    scale: 1.04;
  }

  .blog-page.blog-motion-ready .blog-card.blog-animate.is-visible .blog-card-media img {
    scale: 1;
    transition-delay: var(--blog-motion-delay, 0ms);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-page .blog-animate,
  .blog-page .blog-animate.is-visible {
    opacity: 1;
    scale: 1;
    translate: 0 0;
    transition: none;
  }

  .blog-card-media img {
    scale: 1;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 1180px) {
  .blog-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-list-section {
    padding-top: 36px;
    padding-bottom: 76px;
  }

  .blog-list-shell,
  .blog-list-heading {
    min-width: 0;
  }

  .blog-list-heading :is(h1, h2) {
    font-size: clamp(27px, 7.3vw, 30px);
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .blog-list-heading p:last-child {
    font-size: 14.5px;
    line-height: 1.64;
    overflow-wrap: anywhere;
  }

  .blog-controls {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 9px;
  }

  .blog-search-field svg {
    left: 13px;
    width: 16px;
    height: 16px;
  }

  .blog-search-field input {
    min-height: 40px;
    padding-right: 13px;
    padding-left: 38px;
    font-size: 13px;
  }

  .blog-search-field input#blog-search {
    height: 40px;
    min-height: 40px;
  }

  .blog-results-line {
    justify-content: flex-start;
  }

  .blog-filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .blog-category-filter .blog-filter-chips {
    left: 0;
    right: auto;
    width: min(100%, calc(100vw - (var(--page-pad) * 2)));
    max-height: min(360px, 52vh);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: auto;
    padding: 10px;
  }

  .blog-filter-chips::-webkit-scrollbar {
    display: none;
  }

  .blog-filter-chip {
    flex: 0 0 auto;
  }

  .blog-category-filter .blog-filter-chip {
    flex: initial;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-card-copy {
    padding: 18px;
  }
}

.blog-article-main {
  background: var(--page-bg);
}

.blog-article-hero {
  padding: 24px var(--page-pad) 32px;
  background: var(--page-bg);
}

.blog-article-hero-shell {
  width: 100%;
  max-width: var(--wide-content-max);
  min-height: clamp(364px, 32vw, 455px);
  position: relative;
  display: grid;
  align-items: end;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #211f1d;
  box-shadow: 0 24px 60px rgba(33, 33, 35, 0.16);
}

.blog-article-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background: #211f1d;
}

.blog-article-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.74) 0%, rgba(12, 11, 10, 0.54) 44%, rgba(12, 11, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 11, 10, 0.18) 0%, rgba(12, 11, 10, 0.1) 42%, rgba(12, 11, 10, 0.62) 100%);
}

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

.blog-article-hero-copy {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(920px, 100%);
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: clamp(21px, 3.5vw, 50px);
  color: #ffffff;
}

.blog-article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
  font-weight: var(--weight-semibold);
}

.blog-article-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.blog-article-breadcrumbs a:hover,
.blog-article-breadcrumbs a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-article-meta {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.blog-article-meta span:first-child {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.blog-article-hero-copy h1 {
  max-width: 880px;
  margin: 0;
  color: #ffffff;
  font-size: 39px;
  line-height: 1.16;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.blog-article-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.62;
  overflow-wrap: break-word;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.22);
}

.blog-article-shell {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: clamp(36px, 4.5vw, 72px);
  margin: 0;
  padding: 54px var(--page-pad) 72px;
}

.blog-article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  min-width: 0;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(33, 33, 35, 0.1);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 16px 34px rgba(33, 33, 35, 0.055);
}

.blog-article-back,
.blog-article-toc a,
.blog-article-side-links a {
  color: rgba(33, 33, 35, 0.76);
  text-decoration: none;
}

.blog-article-back {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(135, 60, 30, 0.22);
  border-radius: 999px;
  color: var(--burnt);
  font-size: 12px;
  font-weight: var(--weight-semibold);
}

.blog-article-toc,
.blog-article-side-links {
  display: grid;
  gap: 10px;
}

.blog-article-toc strong,
.blog-article-side-links strong {
  color: #050505;
  font-size: 12px;
  line-height: 1.35;
  font-weight: var(--weight-bold);
}

.blog-article-toc a,
.blog-article-side-links a {
  min-width: 0;
  display: block;
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.blog-article-back:hover,
.blog-article-back:focus-visible,
.blog-article-toc a:hover,
.blog-article-toc a:focus-visible,
.blog-article-side-links a:hover,
.blog-article-side-links a:focus-visible {
  color: var(--burnt);
}

.blog-article-back:focus-visible,
.blog-article-toc a:focus-visible,
.blog-article-side-links a:focus-visible,
.blog-article-link-cluster-card:focus-visible,
.blog-article-related-card:focus-visible,
.blog-article-cta a:focus-visible,
.blog-article-faq summary:focus-visible {
  outline: 2px solid var(--burnt);
  outline-offset: 3px;
}

.blog-article-body {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 34px;
  color: rgba(33, 33, 35, 0.82);
}

.blog-article-section {
  display: grid;
  gap: 16px;
}

.blog-article-section h2,
.blog-article-link-cluster h2,
.blog-article-checklist h2,
.blog-article-faq h2,
.blog-article-cta h2,
.blog-article-related h2 {
  margin: 0;
  color: #050505;
  font-size: 30px;
  line-height: 1.3;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.blog-article-section p,
.blog-article-link-cluster p,
.blog-article-faq p,
.blog-article-cta p {
  margin: 0;
  color: rgba(33, 33, 35, 0.78);
  font-size: 17px;
  line-height: 1.86;
}

.blog-article-link-cluster {
  display: grid;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(135, 60, 30, 0.16);
  border-bottom: 1px solid rgba(135, 60, 30, 0.16);
}

.blog-article-link-cluster-copy {
  display: grid;
  gap: 12px;
}

.blog-article-link-cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-article-link-cluster-card {
  min-width: 0;
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(33, 33, 35, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.blog-article-link-cluster-card:hover,
.blog-article-link-cluster-card:focus-visible {
  border-color: rgba(135, 60, 30, 0.3);
  box-shadow: 0 18px 34px rgba(33, 33, 35, 0.08);
  transform: translateY(-2px);
}

.blog-article-link-cluster-card span {
  color: var(--deep-green);
  font-size: 11px;
  line-height: 1.35;
  font-weight: var(--weight-bold);
}

.blog-article-link-cluster-card strong {
  color: #050505;
  font-size: 14px;
  line-height: 1.45;
  font-weight: var(--weight-semibold);
}

.blog-article-checklist {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(45, 91, 84, 0.18);
  border-radius: 8px;
  background: #f8faf7;
}

.blog-article-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-article-checklist li {
  position: relative;
  padding-left: 24px;
  color: rgba(33, 33, 35, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.blog-article-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--deep-green);
}

.blog-article-faq {
  display: grid;
  gap: 14px;
}

.blog-article-faq details {
  padding: 20px 22px;
  border: 1px solid rgba(33, 33, 35, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.blog-article-faq summary {
  cursor: pointer;
  color: #050505;
  font-size: 17px;
  line-height: 1.45;
  font-weight: var(--weight-bold);
  letter-spacing: 0;
}

.blog-article-faq details[open] summary {
  margin-bottom: 12px;
}

.blog-article-cta {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #212123;
  color: var(--white);
}

.blog-article-cta h2,
.blog-article-cta p {
  color: var(--white);
}

.blog-article-cta p {
  opacity: 0.82;
}

.blog-article-cta a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--burnt);
  color: var(--white);
  font-size: 13px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.blog-article-related {
  padding: 10px var(--page-pad) 104px;
  background: var(--page-bg);
}

.blog-article-related-shell {
  width: 100%;
  max-width: 1180px;
  display: grid;
  gap: 22px;
  margin: 0 auto;
}

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

.blog-article-related-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(33, 33, 35, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(33, 33, 35, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.blog-article-related-card:hover,
.blog-article-related-card:focus-visible {
  border-color: rgba(135, 60, 30, 0.28);
  box-shadow: 0 22px 44px rgba(33, 33, 35, 0.1);
  transform: translateY(-2px);
}

.blog-article-related-media {
  min-height: 132px;
  display: block;
  overflow: hidden;
  background: #f1ede5;
}

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

.blog-article-related-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
}

.blog-article-related-copy span {
  color: var(--deep-green);
  font-size: 11px;
  line-height: 1.35;
  font-weight: var(--weight-bold);
}

.blog-article-related-copy strong {
  color: #050505;
  font-size: 15px;
  line-height: 1.45;
  font-weight: var(--weight-semibold);
}

@media (max-width: 980px) {
  .blog-article-hero-shell {
    min-height: clamp(364px, 45vw, 434px);
  }

  .blog-article-hero-copy h1 {
    font-size: 29px;
    line-height: 1.22;
  }

  .blog-article-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .blog-article-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .blog-article-back {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .blog-article-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-link-cluster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-article-hero {
    padding-top: 17px;
    padding-bottom: 24px;
  }

  .blog-article-hero-shell {
    min-height: clamp(462px, 95vw, 532px);
  }

  .blog-article-hero-copy {
    gap: 8px;
    padding: 18px;
  }

  .blog-article-hero-copy h1 {
    font-size: 21px;
    line-height: 1.26;
  }

  .blog-article-hero-copy > p {
    font-size: 14px;
    line-height: 1.56;
  }

  .blog-article-shell {
    padding-top: 38px;
    padding-bottom: 58px;
  }

  .blog-article-sidebar {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .blog-article-section h2,
  .blog-article-link-cluster h2,
  .blog-article-checklist h2,
  .blog-article-faq h2,
  .blog-article-cta h2,
  .blog-article-related h2 {
    font-size: 25px;
    line-height: 1.34;
  }

  .blog-article-section p,
  .blog-article-link-cluster p,
  .blog-article-faq p,
  .blog-article-cta p {
    font-size: 16px;
    line-height: 1.82;
  }

  .blog-article-link-cluster {
    padding: 24px 0;
  }

  .blog-article-link-cluster-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-link-cluster-card {
    min-height: 78px;
  }

  .blog-article-checklist,
  .blog-article-faq details,
  .blog-article-cta {
    padding: 22px;
  }

  .blog-article-related {
    padding-bottom: 76px;
  }

  .blog-article-related-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .blog-article-related-media {
    min-height: 124px;
  }
}
