:root {
  --charcoal: #100e0d;
  --charcoal-soft: #181411;
  --wood: #4b2c1d;
  --wood-light: #70432d;
  --ivory: #f5efe6;
  --muted: #b8afa5;
  --champagne: #c7a677;
  --line: rgba(245, 239, 230, 0.14);
  --panel: rgba(255, 255, 255, 0.045);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  --display: "Italiana", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 8% 30%, rgba(101, 57, 32, 0.12), transparent 30rem),
    var(--charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  color: #111;
  background: var(--ivory);
  transform: translateY(-150%);
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, height 300ms ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(15, 12, 10, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  width: 72px;
  height: 58px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  color: rgba(245, 239, 230, 0.78);
}

.site-header nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: url("assets/brand/wood-hero.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, var(--charcoal));
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(72, 40, 25, 0.1), rgba(9, 7, 6, 0.78) 68%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.54), transparent 35%, transparent 65%, rgba(5, 4, 3, 0.54));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 112px 24px 100px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(4rem, 9.3vw, 8.6rem);
  letter-spacing: -0.035em;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  color: var(--champagne);
  font-style: italic;
  font-weight: 400;
}

.hero-content > p {
  max-width: 560px;
  margin: 26px auto 0;
  color: rgba(245, 239, 230, 0.77);
  font-size: 1.05rem;
}

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

.button {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px 0 26px;
  overflow: hidden;
  border: 1px solid rgba(199, 166, 119, 0.5);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  transition: color 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button::after {
  content: "↗";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 280ms ease;
}

.button:hover {
  color: #17110d;
  border-color: var(--ivory);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button:hover::after {
  transform: translate(3px, -3px);
}

.button-primary {
  color: #17110d;
  background: var(--champagne);
}

.button-primary::before {
  background: var(--ivory);
}

.button-ghost {
  color: var(--ivory);
  border-color: rgba(245, 239, 230, 0.34);
  background: rgba(16, 14, 13, 0.2);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--champagne);
}

.hero-product {
  position: absolute;
  z-index: 1;
  width: clamp(180px, 23vw, 370px);
  aspect-ratio: 0.75;
  overflow: hidden;
  opacity: 0.64;
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-product-left {
  left: clamp(-150px, -3vw, -20px);
  bottom: -5%;
  transform: rotate(-6deg);
}

.hero-product-right {
  right: clamp(-155px, -4vw, -30px);
  top: 10%;
  transform: rotate(6deg);
  animation-delay: -3.5s;
}

@keyframes float {
  0%,
  100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.collection-intro {
  padding-block: 116px 104px;
  display: grid;
  grid-template-columns: 0.55fr 1.6fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.collection-copy h2,
.featured h2,
.catalog h2,
.finder h2,
.contact h2 {
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  letter-spacing: -0.025em;
}

.collection-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.04rem;
}

.featured {
  padding: 108px 0;
  background:
    linear-gradient(rgba(21, 15, 12, 0.92), rgba(21, 15, 12, 0.96)),
    url("assets/brand/wood-hero.webp") center / cover fixed;
  border-block: 1px solid rgba(199, 166, 119, 0.18);
}

.featured-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}

.featured h2 {
  max-width: 760px;
  margin-top: 16px;
}

.category-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.category-panel {
  min-height: 260px;
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  border: 0;
  background: var(--panel);
  text-align: left;
  cursor: pointer;
  transition: background 240ms ease;
}

.category-panel + .category-panel {
  border-left: 1px solid var(--line);
}

.category-panel:hover {
  background: rgba(199, 166, 119, 0.1);
}

.category-panel > span {
  align-self: start;
  color: var(--champagne);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.category-panel strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 400;
}

.category-panel small {
  color: var(--muted);
  font-size: 0.9rem;
}

.category-panel b {
  color: var(--champagne);
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 220ms ease;
}

.category-panel:hover b {
  transform: translate(4px, -4px);
}

.catalog {
  padding-block: 118px;
}

.catalog-top {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  gap: 48px;
  align-items: end;
}

.catalog h2 {
  margin-top: 16px;
}

.search-box {
  position: relative;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.22);
}

.search-box::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  transform: scaleX(0);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.search-box:focus-within::after {
  transform: scaleX(1);
}

.search-box svg {
  width: 20px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}

.search-box input {
  width: 100%;
  color: var(--ivory);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1rem;
}

.search-box input::placeholder {
  color: #877e75;
}

.filter-area {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-block: 1px solid var(--line);
  padding-block: 16px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}

.filter-chip {
  position: relative;
  min-height: 40px;
  padding: 0 3px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  transition: color 240ms ease;
}

.filter-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 0;
  border-radius: 50%;
  background: var(--champagne);
  opacity: 0;
  transform: scale(0);
  transition: opacity 240ms ease, transform 240ms ease, margin-right 240ms ease;
}

.filter-chip::after {
  content: "";
  position: absolute;
  inset: auto 0 1px;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.filter-chip:hover {
  color: var(--ivory);
}

.filter-chip:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.filter-chip.active {
  color: var(--ivory);
}

.filter-chip.active::before {
  margin-right: 9px;
  opacity: 1;
  transform: scale(1);
}

.filter-chip.active::after {
  transform: scaleX(1);
}

.results-line {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

.text-button {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--champagne);
  color: var(--champagne);
  background: transparent;
  cursor: pointer;
}

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

.product-card {
  min-width: 0;
  cursor: pointer;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 0.78;
  overflow: hidden;
  background: #211b17;
}

.product-image-wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 32%, transparent 72%, rgba(199, 166, 119, 0.08));
  pointer-events: none;
}

.product-image-wrap::after {
  content: "↗";
  position: absolute;
  z-index: 2;
  inset: 16px 16px auto auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  border: 1px solid rgba(245, 239, 230, 0.34);
  border-radius: 50%;
  background: rgba(14, 11, 9, 0.55);
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: 1.2rem;
  transform: translate(70px, -70px) rotate(-35deg);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms ease, color 280ms ease;
}

.product-card:hover .product-image-wrap::after,
.product-card:focus-visible .product-image-wrap::after {
  color: #16100d;
  background: var(--champagne);
  transform: translate(0, 0) rotate(0);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

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

.product-meta {
  padding-top: 16px;
}

.product-meta .product-brand {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-meta h3 {
  margin: 4px 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.product-meta p {
  margin: 0;
  color: #978e85;
  font-size: 0.78rem;
}

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

.empty-state > span {
  color: rgba(199, 166, 119, 0.28);
  font-family: var(--display);
  font-size: 6rem;
}

.empty-state h3 {
  margin: -18px 0 4px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.empty-state p {
  color: var(--muted);
}

.empty-state .button {
  margin-top: 14px;
}

.finder {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 124px;
  background: #21150f;
}

.finder-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.32;
  background:
    radial-gradient(circle at 15% 50%, rgba(199, 166, 119, 0.25), transparent 36rem),
    url("assets/brand/wood-hero.webp") center / cover;
}

.finder::after {
  content: "AF";
  position: absolute;
  z-index: -1;
  left: -2vw;
  bottom: -15vw;
  color: rgba(245, 239, 230, 0.035);
  font-family: var(--display);
  font-size: min(55vw, 700px);
  line-height: 1;
}

.finder-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.finder-copy h2 {
  margin-top: 18px;
}

.finder-copy p {
  max-width: 520px;
  color: rgba(245, 239, 230, 0.68);
}

.finder-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(245, 239, 230, 0.2);
  background: rgba(11, 9, 8, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.finder-card fieldset {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.finder-card legend {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice-row-wrap {
  grid-template-columns: repeat(3, 1fr);
}

.choice-row label {
  position: relative;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choice-row input:checked + span {
  color: var(--ivory);
  border-color: var(--champagne);
  background: linear-gradient(135deg, rgba(199, 166, 119, 0.2), rgba(199, 166, 119, 0.06));
  box-shadow: inset 3px 0 0 var(--champagne);
}

.choice-row input:focus-visible + span {
  outline: 2px solid var(--ivory);
  outline-offset: 2px;
}

.finder-submit {
  width: 100%;
}

.finder-results {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.finder-results h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

.finder-result-list {
  display: grid;
  gap: 8px;
}

.finder-result {
  width: 100%;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border: 1px solid var(--line);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  cursor: pointer;
}

.finder-result img {
  width: 58px;
  height: 68px;
  object-fit: cover;
}

.finder-result strong,
.finder-result small {
  display: block;
}

.finder-result small {
  color: var(--muted);
}

.finder-result > span:last-child {
  color: var(--champagne);
  font-size: 1.2rem;
}

.contact {
  padding-block: 130px;
  text-align: center;
}

.contact h2 {
  margin-top: 16px;
}

.contact > p {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--muted);
}

footer {
  min-height: 220px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 50px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(10, 8, 7, 0.9), rgba(10, 8, 7, 0.95)),
    url("assets/brand/wood-hero.webp") center / cover;
}

.footer-brand {
  width: 110px;
  height: 100px;
}

.footer-copy p {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.footer-copy small,
footer > a {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-dialog {
  width: min(940px, calc(100% - 30px));
  max-height: min(88vh, 820px);
  padding: 0;
  overflow: hidden;
  color: var(--ivory);
  border: 1px solid rgba(245, 239, 230, 0.18);
  background: #161210;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.68);
}

.product-dialog::backdrop {
  background: rgba(5, 4, 3, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(15, 12, 10, 0.7);
  cursor: pointer;
  font-size: 1.5rem;
}

.dialog-content {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  height: min(88vh, 610px);
  min-height: 0;
}

.dialog-image {
  min-height: 0;
  overflow: hidden;
  background: #211b17;
}

.dialog-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.dialog-info .dialog-id {
  color: var(--champagne);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.dialog-info .dialog-brand {
  margin-top: 22px;
  color: var(--champagne);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-info h2 {
  margin: 8px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.dialog-concentration {
  margin: 0;
  color: var(--muted);
}

.dialog-profile {
  margin: 30px 0 8px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.25rem;
}

.dialog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 28px;
}

.dialog-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.dialog-info .button {
  margin-top: auto;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: auto;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 19px 0 15px;
  border: 1px solid rgba(199, 166, 119, 0.52);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(17, 14, 12, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.floating-whatsapp:hover {
  color: #17110d;
  border-color: var(--champagne);
  background: var(--champagne);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 27px;
  fill: currentColor;
}

.floating-whatsapp span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .collection-intro {
    grid-template-columns: 1fr 2fr;
  }

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

  .finder-layout {
    grid-template-columns: 1fr;
  }

  .finder-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 66px;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header,
  .site-header.scrolled {
    height: 64px;
    padding-inline: 14px;
    background: rgba(15, 12, 10, 0.68);
    backdrop-filter: blur(12px);
  }

  .brand {
    width: 56px;
    height: 45px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 0.7rem;
  }

  .site-header nav a:nth-child(2) {
    display: none;
  }

  .nav-instagram {
    padding: 7px 10px;
    border: 1px solid var(--line);
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 19vw, 6.3rem);
  }

  .hero-content > p {
    max-width: 430px;
    font-size: 0.98rem;
  }

  .hero-product {
    width: 165px;
    opacity: 0.4;
  }

  .hero-product-left {
    left: -48px;
    bottom: 4%;
  }

  .hero-product-right {
    right: -48px;
    top: 15%;
  }

  .hero-actions .button {
    width: min(100%, 310px);
  }

  .collection-intro {
    padding-block: 82px 76px;
    display: block;
  }

  .collection-copy h2,
  .featured h2,
  .catalog h2,
  .finder h2,
  .contact h2 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .collection-copy {
    margin-top: 18px;
  }

  .featured {
    padding-block: 82px;
    background-attachment: scroll;
  }

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

  .category-panel {
    min-height: 190px;
    padding: 24px;
  }

  .category-panel + .category-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .catalog {
    padding-block: 86px;
  }

  .catalog-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .filter-area {
    margin-top: 34px;
    display: block;
    overflow: hidden;
  }

  .filter-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-group-secondary {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .filter-chip {
    flex: 0 0 auto;
  }

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

  .product-meta {
    padding-top: 12px;
  }

  .product-meta h3 {
    font-size: 1.16rem;
  }

  .product-meta p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-image-wrap::after {
    inset: 10px 10px auto auto;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    transform: none;
  }

  .finder {
    padding-block: 86px;
  }

  .finder-card {
    padding: 26px 18px;
  }

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

  .contact {
    padding-block: 92px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .footer-brand {
    width: 70px;
    height: 64px;
  }

  .footer-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .dialog-content {
    display: block;
    height: auto;
    max-height: 88vh;
    overflow-y: auto;
  }

  .dialog-image {
    height: 44vh;
    min-height: 300px;
  }

  .dialog-info {
    min-height: 420px;
    padding: 30px 24px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 390px) {
  .site-header nav {
    gap: 10px;
  }

  .nav-instagram {
    display: none;
  }

  .product-meta h3 {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
