.hero-oliveira .hero-ghost {
  right: -3vw;
  color: rgba(212,160,23,.045);
  font-size: clamp(18rem, 42vw, 47rem);
}

.special-project-insert {
  grid-template-columns: 1fr;
  grid-template-areas:
    "images"
    "cue";
}

.special-project-visual {
  grid-area: images;
  min-width: 0;
  min-height: 0;
  padding: clamp(18px, 3vw, 42px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(235,228,214,.12);
  color: var(--paper, #efe7d8);
  background: #050505;
}

.special-project-visual picture,
.special-project-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
}

.special-project-visual img {
  object-fit: contain;
  transition: transform .4s ease;
}

.special-project-visual:hover img { transform: scale(1.018); }

.product-carousel {
  --carousel-gap: 10px;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--paper, #efe7d8);
  background: #090908;
  border: 1px solid rgba(212,160,23,.24);
}

.product-carousel__header {
  min-height: 72px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(235,228,214,.13);
}

.product-carousel__header > span {
  color: #cfc6b8;
  font-size: 10px;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-carousel__controls {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.product-carousel__controls button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212,160,23,.45);
  border-radius: 50%;
  color: var(--gold-soft, #d4a017);
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.product-carousel__controls button svg {
  width: 25px;
  height: 25px;
  display: block;
}

.product-carousel__controls button:disabled {
  opacity: .28;
  cursor: default;
}

.product-carousel__controls button:focus-visible {
  outline: 2px solid var(--paper, #efe7d8);
  outline-offset: 3px;
}

.product-carousel__controls output {
  min-width: 54px;
  color: #8f877c;
  font-size: 10px;
  text-align: center;
}

.product-carousel__controls output b {
  color: var(--paper, #efe7d8);
  font-size: 13px;
}

.product-carousel__viewport {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,160,23,.54) rgba(255,255,255,.05);
  overscroll-behavior-inline: contain;
}

.product-carousel__track {
  min-height: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 50%);
  gap: var(--carousel-gap);
}

.product-slide {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  color: inherit;
  background: #050505;
}

.product-slide figure {
  height: 100%;
  min-height: 470px;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.product-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 14px;
  object-fit: contain;
  background: radial-gradient(circle at 50% 42%, #23221f, #0a0a09 66%);
  transition: transform .35s ease;
}

.product-slide:hover img { transform: scale(1.025); }

.product-slide figcaption {
  min-height: 104px;
  padding: 15px 16px 17px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-top: 1px solid rgba(235,228,214,.11);
  background: #11110f;
}

.product-slide figcaption small {
  color: var(--gold-soft, #d4a017);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-slide figcaption strong {
  color: var(--paper, #efe7d8);
  font: 400 18px/1.2 Georgia, serif;
}

.product-slide figcaption span {
  color: #8f877c;
  font-size: 10px;
  line-height: 1.4;
}

.product-carousel__hint {
  margin: 0;
  padding: 11px 18px 13px;
  color: #777066;
  font-size: 9px;
  line-height: 1.45;
}

.product-carousel.has-one-slide .product-carousel__controls { display: none; }

.oliveira-forms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(235,228,214,.16);
}

.oliveira-forms div {
  min-height: 128px;
  padding: 24px 18px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(235,228,214,.16);
}

.oliveira-forms div:last-child { border-right: 0; }
.oliveira-forms small { color: var(--gold-soft, #d4a017); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.oliveira-forms strong { color: var(--paper, #efe7d8); font: 400 clamp(1.2rem, 2.1vw, 1.8rem)/1.15 Georgia, serif; }
.oliveira-forms p { margin: 0; color: #aaa195; font-size: 12px; line-height: 1.55; }

.collection-oliveira {
  grid-template-columns: minmax(0, 760px);
}

.collection-oliveira.has-products {
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
}

.collection-products { min-width: 0; }

@media (max-width: 900px) {
  .special-project-visual {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(235,228,214,.12);
  }

  .oliveira-forms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .oliveira-forms div:nth-child(2) { border-right: 0; }
  .oliveira-forms div:nth-child(-n+2) { border-bottom: 1px solid rgba(235,228,214,.16); }
  .collection-oliveira.has-products { grid-template-columns: 1fr; }
  .product-slide figure { min-height: 430px; }
}

@media (max-width: 560px) {
  .special-project-visual { min-height: 0; padding: 14px; }
  .oliveira-forms { grid-template-columns: 1fr; }
  .oliveira-forms div,
  .oliveira-forms div:nth-child(2) { min-height: 104px; border-right: 0; border-bottom: 1px solid rgba(235,228,214,.16); }
  .oliveira-forms div:last-child { border-bottom: 0; }
  .product-carousel__header {
    min-height: 68px;
    padding: 12px 14px;
    gap: 10px;
  }
  .product-carousel__controls { gap: 7px; }
  .product-carousel__controls button {
    width: 42px;
    height: 42px;
  }
  .product-carousel__controls button svg {
    width: 23px;
    height: 23px;
  }
  .product-carousel__track { grid-auto-columns: minmax(278px, 88%); }
  .product-slide figure { min-height: 455px; }
}
