:root {
  --black: #050505;
  --ink: #1f1b17;
  --muted: #746b61;
  --line: #e4dfd8;
  --soft: #f7f5f1;
  --paper: #ffffff;
  --warm: #b59d82;
  --container: min(1440px, calc(100vw - 56px));
  --font-body: "Montserrat", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Montserrat", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: auto;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

.site-header {
  height: 88px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 0 38px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ece8e2;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-grid;
  width: max-content;
  color: #000;
  line-height: 0.78;
}

.brand-word {
  font-size: 47px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-home {
  justify-self: end;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand.has-logo-image {
  display: inline-flex;
  align-items: center;
  width: min(150px, 100%);
  min-width: 0;
  line-height: 1;
}

.brand-logo-image {
  width: auto;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  height: 100%;
}

.primary-nav a,
.text-link,
.quote-button,
.button,
.outline-button,
.card-action,
.category-item span,
.footer-column h3,
.footer-whatsapp h3 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  position: relative;
}

.site-header > .primary-nav:not(.primary-nav-main) {
  display: none;
}

.primary-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: #111;
}

.primary-nav svg,
.text-link svg,
.quote-button svg,
.button svg,
.outline-button svg,
.card-action svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.icon-button,
.mobile-menu-button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  display: inline-grid;
  place-items: center;
  color: #000;
  cursor: pointer;
}

.icon-button svg,
.mobile-menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-button {
  display: none;
}

.language-switcher {
  position: relative;
}

.language-menu {
  position: absolute;
  top: 44px;
  right: 0;
  width: 118px;
  z-index: 90;
  padding: 6px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-switcher.open .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.language-menu button:hover,
.language-menu button.active {
  background: var(--soft);
}

.quote-button,
.button,
.outline-button {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.quote-button {
  padding: 0 20px;
  color: #000;
  border: 1px solid #111;
  background: #fff;
}

.hero {
  min-height: 448px;
  aspect-ratio: 5 / 2;
  margin-top: 28px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.9) 27%, rgba(247, 244, 239, 0.16) 54%, rgba(247, 244, 239, 0) 100%);
  background-color: var(--soft);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(247, 244, 239, 0.96) 0%, rgba(247, 244, 239, 0.82) 25%, rgba(247, 244, 239, 0.12) 54%, rgba(247, 244, 239, 0) 100%);
}

.hero-slide-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 900ms ease, transform 1600ms ease;
  will-change: opacity, transform;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
  padding: 32px 0 46px;
}

.hero-content h1 {
  max-width: 370px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.02;
  font-weight: 600;
  color: #17110c;
}

.hero-content p {
  max-width: 330px;
  margin: 0 0 37px;
  color: #2e2a26;
  font-size: 15px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  min-height: 47px;
  padding: 0 22px;
  border: 1px solid #111;
}

.button-dark {
  color: #fff;
  background: #000;
}

.button-light,
.outline-button {
  color: #000;
  background: #fff;
  border: 1px solid #a8a29b;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 17, 17, 0.54);
  box-shadow: 0 16px 38px rgba(20, 16, 12, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.hero-arrow:hover {
  color: #111;
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.hero-arrow-prev {
  left: clamp(18px, 3vw, 42px);
}

.hero-arrow-next {
  right: clamp(18px, 3vw, 42px);
}

.hero-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.slider-dots span,
.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots .active,
.slider-dots .is-active {
  width: 17px;
  background: #111;
}

.category-strip {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.category-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 142px;
  border-left: 1px solid var(--line);
}

.category-item:first-child {
  border-left: 0;
}

.category-item svg {
  width: 74px;
  height: 52px;
  fill: none;
  stroke: #151515;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.86) 34%, rgba(247, 244, 239, 0.12) 70%, rgba(247, 244, 239, 0) 100%), var(--page-image, none);
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  width: min(var(--container), calc(100% - 96px));
  margin: 0 auto;
}

.page-hero h1,
.editorial-copy h1 {
  max-width: 560px;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
  font-weight: 600;
}

.page-hero p {
  max-width: 430px;
  margin: 0;
  color: #3c352e;
  font-size: 15px;
}

.page-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 58px 0;
}

.page-section + .page-section {
  padding-top: 10px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

.editorial-copy {
  padding: 38px 34px;
  background: var(--soft);
}

.editorial-copy p {
  max-width: 520px;
  margin: 0 0 18px;
  color: #554c44;
}

.editorial-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-grid,
.product-grid,
.blog-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.feature-grid,
.product-grid,
.blog-grid,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-item,
.product-item,
.blog-item,
.contact-item,
.form-panel,
.map-panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
}

.feature-item,
.contact-item {
  padding: 25px;
}

.feature-item svg,
.contact-item svg {
  width: 25px;
  height: 25px;
  margin-bottom: 22px;
}

.feature-item h3,
.product-item h3,
.blog-item h3,
.contact-item h3,
.form-panel h2 {
  margin: 0 0 10px;
  color: #18120e;
  font-size: 16px;
  line-height: 1.28;
}

.feature-item p,
.product-item p,
.blog-item p,
.contact-item p,
.form-panel p,
.map-panel p {
  margin: 0;
  color: #5d554d;
}

.product-item,
.blog-item {
  overflow: hidden;
}

.blog-item {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(30, 20, 12, 0.08);
}

.product-item img,
.blog-item img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.product-item-content,
.blog-item-content {
  padding: 20px;
}

.product-meta,
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: #8f7663;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-detail-section {
  padding-top: 42px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.blog-detail-article {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.blog-detail-image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  display: block;
}

.blog-detail-body {
  padding: 28px;
}

.blog-detail-body h1 {
  margin: 0 0 16px;
  color: #18120e;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: #8f7663;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-detail-excerpt {
  margin: 0 0 18px;
  color: #4f473f;
  font-size: 17px;
  line-height: 1.7;
}

.blog-detail-content {
  color: #5d554d;
  font-size: 16px;
  line-height: 1.85;
}

.blog-detail-content p + p {
  margin-top: 18px;
}

.blog-detail-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.blog-detail-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 22px;
}

.blog-detail-card h3 {
  margin: 0 0 12px;
  color: #18120e;
}

.blog-detail-card p {
  margin: 0;
  color: #5d554d;
}

.blog-related-list {
  display: grid;
  gap: 12px;
}

.blog-related-item {
  color: inherit;
  text-decoration: none;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.blog-related-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-related-item strong {
  display: block;
  margin-bottom: 4px;
  color: #18120e;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

.store-section {
  padding-top: 50px;
}

.store-catalog {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.category-panel {
  position: sticky;
  top: 108px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-panel-head {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.category-toggle {
  display: none;
}

.category-panel-head h3 {
  margin: 0;
  color: #18120e;
  font-size: 18px;
  line-height: 1.2;
}

.category-list {
  display: grid;
  margin-top: 6px;
}

.category-filter {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: #57504a;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.category-filter:last-child {
  border-bottom: 0;
}

.category-filter small {
  color: #a59b91;
  font-size: 11px;
  font-weight: 800;
}

.category-filter:hover,
.category-filter.is-active {
  padding-left: 12px;
  color: #111;
  background: var(--soft);
  box-shadow: inset 2px 0 0 #111;
}

.store-catalog .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 20px;
}

.store-catalog .product-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  cursor: pointer;
}

.store-catalog .product-item img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(20, 16, 12, 0.08);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.store-catalog .product-item:hover img {
  transform: translateY(-2px);
  filter: contrast(1.03) saturate(0.98);
  box-shadow: 0 18px 42px rgba(31, 27, 23, 0.11);
}

.store-catalog .product-item-content {
  padding: 13px 6px 0;
  text-align: center;
}

.store-catalog .product-item h3 {
  margin: 0 0 5px;
  color: #26211c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.store-catalog .product-item p {
  margin: 0;
  color: #9d968f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.store-catalog .product-item.is-hidden {
  display: none;
}

.product-detail-section {
  padding-top: 38px;
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
  color: #8a8076;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.detail-breadcrumb a {
  color: #17110c;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, 0.66fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  min-width: 0;
}

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

.product-main-frame {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
  box-shadow: 0 1px 0 rgba(20, 16, 12, 0.08);
}

.product-main-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 12px 30px rgba(20, 16, 12, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover {
  color: #111;
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) scale(1.03);
}

.gallery-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.gallery-arrow-prev {
  left: 16px;
}

.gallery-arrow-next {
  right: 16px;
}

.gallery-arrow:disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.gallery-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #17110c;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(20, 16, 12, 0.18);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-zoom:hover {
  color: #fff;
  background: rgba(17, 17, 17, 0.82);
  transform: scale(1.04);
}

.gallery-zoom svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(13, 10, 8, 0.86);
}

.product-lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.product-lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.product-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 13px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.product-thumbs::-webkit-scrollbar {
  height: 7px;
}

.product-thumbs::-webkit-scrollbar-track {
  background: rgba(23, 17, 12, 0.08);
  border-radius: 999px;
}

.product-thumbs::-webkit-scrollbar-thumb {
  background: rgba(23, 17, 12, 0.34);
  border-radius: 999px;
}

.product-thumb {
  flex: 0 0 clamp(116px, 15vw, 154px);
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 180ms ease, transform 180ms ease;
}

.product-thumb:hover img,
.product-thumb.is-active img {
  filter: saturate(1) contrast(1.03);
}

.product-thumb.is-active {
  border-color: #17110c;
}

.product-detail-info {
  min-width: 0;
  padding-top: 12px;
}

.product-detail-info h1 {
  margin: 0 0 13px;
  color: #17110c;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.detail-category {
  margin: 0 0 22px;
  color: #8f7663;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-description {
  max-width: 520px;
  margin: 0;
  color: #514840;
  font-size: 16px;
  line-height: 1.78;
  overflow-wrap: break-word;
}

.detail-spec-table {
  max-width: 560px;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.detail-spec-table[hidden] {
  display: none;
}

.detail-spec-table table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}

.detail-spec-table th,
.detail-spec-table td {
  padding: 13px 16px;
  border: 1px solid var(--line);
  color: #514840;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.detail-spec-table th {
  width: 34%;
  color: #8f7663;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-spec-table tr:first-child th {
  color: #17110c;
  background: #f7f5f1;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-spec-table tr:first-child th:not(:first-child) {
  width: auto;
}

.detail-actions {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.detail-actions .button,
.detail-actions .outline-button {
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.empty-state {
  padding: 38px;
  border: 1px solid var(--line);
  color: #675f57;
  background: var(--soft);
  text-align: center;
}

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

.stats-wrap {
  position: relative;
}

.stats-scroll {
  display: none;
}

.stat-item {
  padding: 28px 20px;
  border-left: 1px solid var(--line);
}

.stat-item:first-child {
  border-left: 0;
}

.stat-number {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
}

.form-panel {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #151515;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--soft);
  font: inherit;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.map-embed {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: transparent;
  overflow: hidden;
}

.map-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-100% - 34px));
  z-index: 2;
  max-width: min(280px, calc(100% - 32px));
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #151515;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.collections-section {
  padding: 27px 0 38px;
  position: relative;
}

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

.section-heading > div,
.panel-head > div {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 5px;
  color: #8f7663;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: #211914;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.04;
  font-weight: 600;
  overflow-wrap: break-word;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #080808;
  padding-bottom: 8px;
}

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

.collection-scroll {
  display: none;
}

.collection-card {
  min-height: 196px;
  grid-column: span 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 0 20px 25px;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.04)), var(--card-image, none);
  background-size: cover;
  background-position: center;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.collection-card > * {
  position: relative;
  z-index: 1;
}

.card-large {
  min-height: 218px;
  grid-column: span 3;
}

.card-title {
  max-width: 230px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.crop-sofa {
  background-position: center 55%;
}

.crop-tv {
  background-position: right center;
}

.crop-dining {
  background-position: center 57%;
}

.crop-table {
  background-position: 58% center;
}

.crop-coffee {
  background-position: center 65%;
}

.video-section {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 0;
  padding: 0 0 42px;
}

.video-copy {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 31px 32px;
  background: linear-gradient(90deg, #faf8f5 0%, #fff 100%);
}

.video-copy h2 {
  margin-bottom: 16px;
}

.video-copy p:not(.eyebrow) {
  max-width: 265px;
  margin: 0 0 22px;
  color: #554c44;
}

.outline-button {
  width: max-content;
  padding: 0 18px;
}

.video-preview {
  min-height: 212px;
  aspect-ratio: 2 / 1;
  position: relative;
  padding: 0;
  border: 0;
  background: #eee;
  overflow: hidden;
  cursor: pointer;
}

.video-preview img,
.video-poster,
.inline-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-preview img,
.video-poster {
  display: block;
  object-fit: cover;
  object-position: center 58%;
  filter: brightness(0.88);
}

.video-poster {
  pointer-events: none;
}

.inline-video-player {
  display: block;
  border: 0;
  background: #000;
  object-fit: cover;
}

.video-click-toggle {
  position: absolute;
  inset: 0 0 56px;
  z-index: 1;
  cursor: pointer;
}

.play-button {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  color: #000;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.play-button[hidden] {
  display: none;
}

.play-button svg {
  width: 32px;
  height: 32px;
  transform: translateX(2px);
}

.featured-products-section {
  display: grid;
  gap: 36px;
  padding-top: 18px;
  padding-bottom: 58px;
}

.featured-copy {
  max-width: 840px;
}

.featured-copy h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.featured-copy p {
  margin: 0;
  max-width: 770px;
  color: #5d544b;
  font-size: 17px;
  line-height: 1.75;
}

.featured-carousel {
  position: relative;
}

.featured-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 0 8px;
  scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
  display: none;
}

.featured-product-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
  display: block;
  padding: 8px;
  background: #fbfaf7;
  border: 1px solid #eee8e0;
  border-radius: 6px;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.featured-product-card:hover {
  transform: translateY(-2px);
  border-color: #ded2c4;
  background: #fff;
}

.featured-product-card img {
  width: 100%;
  aspect-ratio: 1.28 / 0.72;
  object-fit: cover;
  border-radius: 4px;
  background: var(--soft);
}

.featured-product-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  padding: 16px 4px 4px;
}

.featured-product-meta strong {
  min-width: 0;
  color: #26211d;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.featured-product-meta small {
  color: #4b4037;
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.featured-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #3a332d;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(224, 216, 207, 0.9);
  border-radius: 999px;
  position: absolute;
  top: 42%;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(31, 27, 23, 0.08);
}

.featured-arrow svg {
  width: 34px;
  height: 34px;
}

.featured-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.featured-arrow-prev {
  left: -46px;
}

.featured-arrow-next {
  right: -46px;
}

.bottom-panels {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
  padding: 0 0 26px;
}

.catalog-panel,
.instagram-panel {
  min-height: 266px;
  background: var(--soft);
  border-radius: 4px;
  overflow: hidden;
}

.catalog-panel {
  display: grid;
  grid-template-rows: minmax(0, auto) auto;
  align-items: stretch;
}

.panel-copy {
  padding: 28px 30px 30px;
  order: 2;
}

.panel-copy h2,
.panel-head h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.panel-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 0 0 24px;
  color: #554c44;
}

.catalog-image {
  order: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1.56 / 1;
  min-height: 0;
  object-fit: cover;
  object-position: center 58%;
}

.instagram-panel {
  padding: 24px 25px;
  position: relative;
}

.panel-head {
  align-items: flex-start;
  margin-bottom: 12px;
}

.panel-head h2 {
  margin-bottom: 0;
}

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

.instagram-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 4px;
}

.instagram-scroll {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.55fr 1.55fr;
  gap: 34px;
  padding: 25px 0 22px;
}

.footer-main > * {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.footer-main > *:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-brand .brand-word {
  font-size: 43px;
}

.footer-brand .brand.has-logo-image {
  width: min(142px, 100%);
}

.footer-brand .brand-logo-image {
  max-width: 142px;
  max-height: 52px;
}

.footer-brand p,
.footer-column a,
.footer-column p,
.footer-whatsapp p {
  color: #564e47;
  font-size: 13px;
  line-height: 1.45;
}

.footer-brand p {
  max-width: 205px;
  margin: 16px 0 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 21px;
}

.social-links a {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-column,
.footer-whatsapp {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-column h3,
.footer-whatsapp h3 {
  margin: 0 0 7px;
  color: #111;
}

.contact-column p {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  margin: 0;
}

.contact-column svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: #111;
}

.footer-whatsapp p {
  margin: 0 0 14px;
}

.footer-whatsapp .quote-button {
  width: max-content;
  min-height: 36px;
  padding: 0 18px;
}

.footer-bottom {
  max-width: var(--container);
  min-height: 45px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #6f675f;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

@media (max-width: 1180px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .featured-arrow-prev {
    left: -16px;
  }

  .featured-arrow-next {
    right: -16px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }

  .primary-nav {
    gap: 16px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 76px;
    display: flex;
    gap: 14px;
    padding: 0 18px;
  }

  .brand-word {
    font-size: 39px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .mobile-menu-button {
    display: inline-grid;
    order: 3;
    justify-self: end;
    position: relative;
    z-index: 90;
  }

  .mobile-menu-button i,
  .mobile-menu-button svg {
    display: none;
  }

  .mobile-menu-button::before,
  .mobile-menu-button::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease, box-shadow 180ms ease;
  }

  .mobile-menu-button::before {
    top: 12px;
    box-shadow: 0 6px 0 currentColor;
  }

  .mobile-menu-button::after {
    top: 24px;
  }

  .mobile-menu-button[aria-expanded="true"]::before {
    top: 18px;
    transform: rotate(45deg);
    box-shadow: 0 0 0 transparent;
  }

  .mobile-menu-button[aria-expanded="true"]::after {
    top: 18px;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 70;
    max-height: calc(100dvh - 76px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 40px rgba(20, 16, 12, 0.08);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    width: 100%;
    min-height: 46px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a.is-active::after {
    bottom: 7px;
    right: auto;
    width: 34px;
  }

  .header-actions {
    order: 2;
    justify-self: end;
    margin-left: auto;
    margin-right: 0;
  }

  .category-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-item:nth-child(4) {
    border-left: 0;
  }

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

  .collection-card,
  .card-large {
    grid-column: span 1;
  }

  .video-section,
  .bottom-panels,
  .split-layout,
  .contact-layout,
  .store-catalog,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .bottom-panels {
    gap: 22px;
  }

  .featured-product-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .category-panel {
    position: static;
    padding: 0;
    border: 0;
  }

  .category-panel-head {
    padding-bottom: 12px;
  }

  .category-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .category-filter,
  .category-filter:last-child {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .category-filter:hover,
  .category-filter.is-active {
    padding-left: 12px;
  }

  .feature-grid,
  .product-grid,
  .blog-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 520px;
    margin-top: 18px;
    background-position: 62% center;
  }

  .hero-content {
    width: min(var(--container), calc(100% - 48px));
    padding: 46px 0 72px;
  }

  .hero-content h1 {
    max-width: 520px;
    font-size: clamp(40px, 7vw, 48px);
  }

  .hero-content p {
    max-width: 460px;
    font-size: 15px;
  }

  .hero-arrow {
    top: auto;
    bottom: 26px;
    transform: none;
  }

  .hero-arrow:hover {
    transform: scale(1.04);
  }

  .hero-arrow-prev {
    left: 22px;
  }

  .hero-arrow-next {
    right: 22px;
  }

  .slider-dots {
    bottom: 42px;
  }

  .page-hero,
  .split-layout,
  .editorial-image {
    border-radius: 4px;
    overflow: hidden;
  }

  .detail-breadcrumb {
    row-gap: 6px;
  }

  .product-main-frame img,
  .blog-detail-image {
    aspect-ratio: 1.3 / 1;
  }

  .product-thumb {
    flex-basis: 126px;
  }

  .blog-detail-body {
    padding: 24px;
  }

  .blog-detail-content {
    font-size: 15px;
    line-height: 1.8;
  }

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

  .product-detail-info {
    padding-top: 0;
  }

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

  .footer-main > * {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 18px);
  }

  body {
    font-size: 13px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
    gap: 8px;
  }

  .site-header .brand {
    grid-column: 2;
    justify-self: center;
  }

  .site-header .quote-button span {
    display: none;
  }

  .site-header .quote-button {
    display: none;
  }

  .quote-button {
    width: 40px;
    padding: 0;
  }

  .header-actions {
    display: flex;
    position: static;
    grid-column: 3;
    justify-self: end;
    z-index: 90;
    gap: 4px;
    margin-left: 0;
  }

  .mobile-menu-button {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 91;
    transform: none;
  }

  .language-switcher {
    grid-column: auto;
    justify-self: center;
    z-index: 92;
  }

  .language-menu {
    top: 42px;
    right: -8px;
    min-width: 128px;
  }

  .hero {
    min-height: 520px;
    align-items: flex-start;
    padding-top: 24px;
    background-image: linear-gradient(180deg, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.9) 38%, rgba(247, 244, 239, 0.18) 72%, rgba(247, 244, 239, 0) 100%);
    background-size: cover, cover;
    background-position: center bottom;
  }

  .hero-slide-layer {
    background-size: cover;
    background-position: center bottom;
    transform: none;
  }

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

  .hero::before {
    background: linear-gradient(180deg, rgba(247, 244, 239, 0.96) 0%, rgba(247, 244, 239, 0.86) 36%, rgba(247, 244, 239, 0.16) 72%, rgba(247, 244, 239, 0) 100%);
  }

  .featured-products-section {
    gap: 24px;
    padding-top: 4px;
    padding-bottom: 42px;
  }

  .featured-copy h2 {
    font-size: 24px;
  }

  .featured-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .featured-track {
    gap: 18px;
    padding-right: 18px;
    padding-bottom: 6px;
  }

  .featured-product-card {
    flex-basis: min(86vw, 360px);
    padding: 7px;
  }

  .featured-product-meta {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px 3px 3px;
  }

  .featured-product-meta strong {
    font-size: 19px;
  }

  .featured-arrow {
    width: 36px;
    height: 36px;
    top: 35%;
    background: rgba(255, 255, 255, 0.9);
  }

  .featured-arrow-prev {
    left: -8px;
  }

  .featured-arrow-next {
    right: -8px;
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    width: 38px;
    height: 38px;
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }

  .hero-content {
    width: var(--container);
    padding: 18px 0 74px;
  }

  .hero-content p {
    max-width: min(100%, 320px);
    margin-bottom: 24px;
    font-size: 14px;
  }

  .slider-dots {
    bottom: 30px;
  }

  .page-hero {
    min-height: 280px;
    background-image: linear-gradient(180deg, rgba(247, 244, 239, 0.98) 0%, rgba(247, 244, 239, 0.9) 48%, rgba(247, 244, 239, 0.2) 100%), var(--page-image);
    background-position: center;
  }

  .store-hero,
  .contact-hero {
    display: none;
  }

  .page-hero-inner {
    width: var(--container);
  }

  .page-hero h1,
  .editorial-copy h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .page-hero p,
  .editorial-copy p {
    max-width: 100%;
    font-size: 14px;
  }

  .page-section {
    width: var(--container);
    padding: 28px 0;
  }

  .store-section {
    padding-top: 18px;
  }

  .contact-page-main {
    display: flex;
    flex-direction: column;
  }

  .contact-page-main .contact-layout {
    display: contents;
  }

  .contact-page-main .contact-info-section {
    order: 2;
  }

  .contact-page-main .map-embed {
    order: 1;
    width: var(--container);
    margin-inline: auto;
  }

  .contact-page-main .form-panel {
    order: 3;
    width: var(--container);
    margin-inline: auto;
  }

  .editorial-copy {
    padding: 22px 18px;
  }

  .editorial-image {
    min-height: 220px;
  }

  .feature-grid,
  .product-grid,
  .blog-grid,
  .contact-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-wrap {
    margin-inline: calc((100vw - var(--container)) / -2);
  }

  .stats-row {
    display: flex;
    width: 100vw;
    padding: 0 calc((100vw - var(--container)) / 2);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-padding-inline: calc((100vw - var(--container)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .stats-row::-webkit-scrollbar {
    display: none;
  }

  .stat-item {
    flex: 0 0 var(--container);
    min-height: 142px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    scroll-snap-align: start;
  }

  .stats-scroll {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, 0.56);
    box-shadow: 0 14px 32px rgba(20, 16, 12, 0.18);
    transform: translateY(-50%);
  }

  .stats-scroll svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.4;
  }

  .stats-scroll:disabled {
    opacity: 0.38;
    pointer-events: none;
  }

  .stats-scroll-prev {
    left: 10px;
  }

  .stats-scroll-next {
    right: 10px;
  }

  .category-list {
    position: absolute;
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 0;
    margin-top: 0;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    opacity: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 46px rgba(20, 16, 12, 0.14);
    transform: translateY(-6px);
    transition: max-height 260ms ease, padding 260ms ease, border-color 260ms ease, opacity 180ms ease, transform 260ms ease;
  }

  .category-panel.is-open .category-list {
    max-height: 520px;
    padding: 8px;
    border-color: var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .category-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .category-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: #111;
    background: #fff;
    cursor: pointer;
  }

  .category-toggle svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.4;
  }

  .category-filter {
    gap: 10px;
    font-size: 12px;
  }

  .store-catalog {
    display: block;
  }

  .store-catalog .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 14px;
  }

  .product-detail-section {
    padding-top: 28px;
  }

  .product-detail-layout,
  .blog-detail-layout {
    gap: 22px;
  }

  .product-thumbs {
    gap: 8px;
    padding-bottom: 4px;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    background: rgba(17, 17, 17, 0.76);
    box-shadow: 0 10px 24px rgba(20, 16, 12, 0.2);
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
    left: auto;
  }

  .gallery-zoom {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }

  .product-detail-info h1 {
    font-size: 30px;
    line-height: 1.05;
  }

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

  .detail-actions .button,
  .detail-actions .outline-button {
    width: 100%;
  }

  .detail-description {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .detail-spec-table {
    max-width: 100%;
    margin-top: 22px;
  }

  .detail-spec-table th,
  .detail-spec-table td {
    padding: 11px 12px;
    font-size: 12px;
  }

  .stat-item,
  .stat-item:first-child {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .stat-item:first-child {
    border-left: 0;
  }

  .hero-content h1 {
    max-width: min(100%, 320px);
    font-size: 32px;
  }

  h2,
  .panel-copy h2,
  .panel-head h2 {
    font-size: 27px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .button {
    min-height: 44px;
  }

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

  .category-item,
  .category-item:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .category-item:nth-child(odd) {
    border-left: 0;
  }

  .category-item span {
    max-width: calc(100% - 18px);
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }

  .section-heading,
  .panel-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading > div,
  .panel-head > div {
    width: 100%;
  }

  .collection-grid {
    display: flex;
    gap: 12px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc((100vw - var(--container)) / -2);
    padding: 0 calc((100vw - var(--container)) / 2) 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-padding-inline: calc((100vw - var(--container)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .collection-grid::-webkit-scrollbar {
    display: none;
  }

  .collection-card,
  .card-large {
    flex: 0 0 min(86vw, 390px);
    min-height: 210px;
    scroll-snap-align: start;
  }

  .collection-scroll {
    position: absolute;
    top: calc(50% + 38px);
    z-index: 4;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, 0.56);
    box-shadow: 0 14px 32px rgba(20, 16, 12, 0.18);
    transform: translateY(-50%);
  }

  .collection-scroll svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.4;
  }

  .collection-scroll:disabled {
    opacity: 0.38;
    pointer-events: none;
  }

  .collection-scroll-prev {
    left: 8px;
  }

  .collection-scroll-next {
    right: 8px;
  }

  .video-copy {
    padding: 22px 18px;
  }

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

  .panel-copy {
    padding: 24px 22px 26px;
  }

  .catalog-image {
    aspect-ratio: 1.65 / 1;
    min-height: 0;
  }

  .instagram-panel {
    padding: 22px;
  }

  .instagram-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 10px) / 2);
    grid-template-columns: none;
    grid-template-rows: repeat(2, auto);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .instagram-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-grid img {
    scroll-snap-align: start;
  }

  .instagram-scroll {
    position: absolute;
    top: calc(50% + 44px);
    z-index: 4;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, 0.58);
    box-shadow: 0 14px 32px rgba(20, 16, 12, 0.18);
    transform: translateY(-50%);
  }

  .instagram-scroll svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.4;
  }

  .instagram-scroll:disabled {
    opacity: 0.38;
    pointer-events: none;
  }

  .instagram-scroll-prev {
    left: 8px;
  }

  .instagram-scroll-next {
    right: 8px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-bottom {
    padding: 16px 14px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100vw - 14px);
  }

  .site-header {
    padding: 0 10px;
  }

  .brand-word {
    font-size: 33px;
  }

  .hero {
    min-height: 470px;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .category-strip,
  .collection-grid,
  .feature-grid,
  .product-grid,
  .blog-grid,
  .contact-grid,
  .store-catalog .product-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .category-item {
    min-height: 92px;
  }

  .page-hero h1,
  .editorial-copy h1,
  .product-detail-info h1,
  .blog-detail-body h1 {
    font-size: 28px;
  }

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

  .category-strip {
    grid-template-columns: 1fr 1fr;
  }

  .product-thumb {
    flex-basis: 108px;
  }

  .blog-detail-body,
  .blog-detail-card {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .brand {
    max-width: min(150px, calc(100vw - 108px));
    min-width: 0;
  }

  .brand.has-logo-image {
    width: min(128px, calc(100vw - 108px));
  }

  .brand-logo-image {
    max-width: 128px;
    max-height: 46px;
  }

  .primary-nav {
    top: 76px;
    max-height: calc(100dvh - 76px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .primary-nav a {
    min-height: 50px;
    font-size: 13px;
  }

  .section,
  .page-section {
    width: var(--container);
    max-width: var(--container);
  }

  .hero {
    width: 100%;
    aspect-ratio: auto;
    margin-top: 0;
    background-size: cover, cover;
    background-position: center, center bottom;
  }

  .hero-slide-layer {
    background-size: cover;
    background-position: center bottom;
    transform: none;
  }

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

  .panel-copy .outline-button,
  .video-copy .outline-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-actions .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .category-strip {
    width: var(--container);
  }

  .category-item {
    min-width: 0;
    min-height: 118px;
    padding: 12px 8px;
  }

  .category-item svg {
    width: 58px;
    height: 42px;
  }

  .collection-card,
  .card-large {
    min-height: 184px;
  }

  .card-title {
    max-width: 100%;
    font-size: 22px;
  }

  .video-preview {
    width: 100%;
    min-height: 190px;
    aspect-ratio: 16 / 10;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .play-button svg {
    width: 25px;
    height: 25px;
  }

  .featured-carousel,
  .featured-track,
  .featured-product-card,
  .bottom-panels,
  .catalog-panel,
  .instagram-panel,
  .contact-layout,
  .form-panel,
  .map-panel,
  .blog-detail-article,
  .blog-detail-sidebar,
  .product-gallery,
  .product-detail-info {
    min-width: 0;
  }

  .featured-track {
    margin-right: calc((var(--container) - 100vw) / 2);
  }

  .instagram-grid {
    gap: 8px;
    grid-auto-columns: calc((100% - 8px) / 2);
  }

  .contact-item,
  .feature-item,
  .form-panel {
    padding: 20px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 340px;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-whatsapp .quote-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand.has-logo-image {
    width: min(116px, calc(100vw - 104px));
  }

  .brand-logo-image {
    max-width: 116px;
  }

  .primary-nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .category-item {
    min-height: 104px;
  }

  .collection-card,
  .card-large {
    min-height: 172px;
  }

  .panel-copy,
  .instagram-panel,
  .video-copy {
    padding-left: 18px;
    padding-right: 18px;
  }
}
