:root {
  --ink: #171815;
  --paper: #f5f4f0;
  --accent: #f2e511;
  --muted: #74766f;
  --dark: #11120f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.page-shell { width: min(100% - 40px, 1440px); margin-inline: auto; }
.section-space { padding-block: clamp(5rem, 7.2vw, 7.2rem); }
.accent { color: var(--accent) !important; }

/* Header */
.nav-link {
  position: relative;
  border: 0;
  background: transparent;
  padding: 1rem 0;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: .2s;
  cursor: pointer;
}
.nav-link svg { width: 13px; }
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .48rem;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: .2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.language-select {
  position: relative;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.14);
  padding: 0 8px;
  color: rgba(255,255,255,.72);
}
.language-select select {
  appearance: none;
  min-width: 32px;
  border: 0;
  background: transparent;
  padding: 0 8px 0 0;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  outline: 0;
  cursor: pointer;
}
.language-select select option { color: var(--ink); }
.language-select svg { width: 13px; height: 13px; }
.language-select svg:last-child { position: absolute; right: 6px; pointer-events: none; }
.icon-button, .slider-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.01);
  color: #fff;
  transition: .2s;
  cursor: pointer;
}
.icon-button:hover, .slider-arrow:hover { border-color: var(--accent); background: var(--accent); color: var(--dark); }
.icon-button svg, .slider-arrow svg { width: 18px; }
.header-search-button { position: relative; }
.header-search-button::after {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  right: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: #171815;
  padding: 7px 10px;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: .18s;
  white-space: nowrap;
}
.header-search-button:hover::after,
.header-search-button:focus-visible::after { opacity: 1; transform: translateY(0); }
.header-cta {
  min-height: 44px;
  align-items: center;
  gap: .55rem;
  border: 1px solid var(--accent);
  padding: 0 1.15rem;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: .2s;
}
.header-cta:hover { background: var(--accent); color: var(--dark); }
.header-cta svg { width: 15px; }

/* Hero */
.hero-section { min-height: 830px; }
.hero-section h1 { font-size: clamp(2.4rem,4.3vw,4.4rem) !important; }
.button-primary, .button-ghost, .button-outline-light, .button-outline-dark {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 0 1.35rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .22s;
}
.button-primary { border: 1px solid var(--accent); background: var(--accent); color: var(--dark); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.button-ghost, .button-outline-light { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.button-ghost:hover, .button-outline-light:hover { border-color: #fff; background: #fff; color: var(--dark); }
.button-outline-dark { border: 1px solid rgba(23,24,21,.22); color: var(--ink); }
.button-outline-dark:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.button-primary svg, .button-ghost svg, .button-outline-light svg, .button-outline-dark svg { width: 16px; }
.hero-dot { width: 28px; height: 2px; border: 0; background: rgba(255,255,255,.28); transition: .3s; cursor: pointer; }
.hero-dot.active { width: 64px; background: var(--accent); }
.slider-arrow + .slider-arrow { border-left: 0; }

.marquee { overflow: hidden; border-bottom: 1px solid rgba(0,0,0,.1); background: var(--accent); padding: 17px 0; }
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  animation: marquee var(--marquee-duration,55s) linear infinite;
  color: #151613;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.marquee-track span { white-space: nowrap; }
.marquee-track b { font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Shared heading */
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(23,24,21,.48); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.section-heading h2 {
  max-width: 760px;
  margin-top: .85rem;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.heading-aside { max-width: 410px; }
.heading-aside p { color: rgba(23,24,21,.55); font-size: 13px; line-height: 1.8; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid rgba(23,24,21,.35);
  padding-bottom: .35rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.heading-aside .text-link { margin-top: 1.25rem; }
.text-link svg { width: 15px; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.category-tile { position: relative; overflow: hidden; background: #deded9; color: #fff; }
.category-tile > img { display: block; width: 100%; height: auto; transition: transform .7s; }
.category-tile:hover > img { transform: scale(1.035); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(11,12,10,.88),rgba(11,12,10,.03) 68%); }
.tile-index { position: absolute; top: 20px; left: 22px; font-family: "Montserrat", Arial, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .15em; color: var(--accent); }
.tile-content { position: absolute; right: 22px; bottom: 22px; left: 22px; }
.tile-content p { margin-bottom: .4rem; color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.tile-content h3 { max-width: 85%; font-size: clamp(1.15rem,1.8vw,1.65rem); font-weight: 600; letter-spacing: -.035em; }
.tile-content svg { position: absolute; right: 0; bottom: 2px; width: 19px; transition: transform .2s; }
.category-tile:hover .tile-content svg { transform: translate(3px,-3px); }

/* About */
.about-section { background: radial-gradient(circle at 18% 22%,#24261f 0,#171915 42%,#10110f 100%); }
.about-copy h2 { font-size: clamp(1.9rem,3vw,3.1rem) !important; }
.about-collage { position: relative; min-height: 470px; padding: 18px 0 38px; }
.about-main { width: 100%; height: 415px; object-fit: cover; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.experience-card { position: absolute; bottom: 0; left: 0; display: flex; align-items: end; gap: .9rem; background: var(--accent); padding: 22px 25px; color: var(--dark); }
.experience-card strong { font-size: 3rem; font-weight: 600; line-height: .9; letter-spacing: -.07em; }
.experience-card span { max-width: 70px; font-size: 11px; font-weight: 800; line-height: 1.35; letter-spacing: .1em; text-transform: uppercase; }

/* Product carousels */
.product-heading { align-items: end; }
.carousel-actions { display: flex; flex: 0 0 auto; }
.carousel-actions button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(23,24,21,.17); background: rgba(255,255,255,.76); color: var(--ink); cursor: pointer; transition: .2s; }
.carousel-actions button + button { border-left: 0; }
.carousel-actions button:hover { background: var(--ink); color: #fff; }
.carousel-actions svg { width: 18px; }
.product-carousel, .chair-carousel {
  display: grid;
  grid-auto-columns: calc((100% - 72px)/4);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.product-carousel::-webkit-scrollbar, .chair-carousel::-webkit-scrollbar { display: none; }
.product-card, .chair-product-card { display: block; min-width: 0; background: transparent; scroll-snap-align: start; }
.product-media { position: relative;  overflow: hidden; border: 1px solid #eeeeee; border-radius: 20px; background: #fff; }
.product-media-link { display: grid; width: 100%; height: 100%; place-items: center; border: 0; background: transparent;  cursor: pointer; }
.product-media img { display: block; width: 100%; height: 100%; object-fit: contain; }
.product-image-filtered { filter: brightness(1.06) contrast(1.03); }
.vertical-product-card .product-media { height: clamp(340px,32vw,470px); }
.vertical-product-card .product-media-link { padding: clamp(8px,1vw,14px); }
.product-info { padding: 17px 0 0; }
.product-info h3 { font-size: clamp(1.05rem,1.35vw,1.3rem); font-weight: 600; line-height: 1.25; letter-spacing: -.025em; }
.product-info h3 a,.product-title-trigger { color: inherit; transition: color .2s; }
.product-info h3 a:hover,.product-title-trigger:hover { color: #817b00; }
.product-title-trigger { display: inline; border: 0; background: transparent; padding: 0; font: inherit; line-height: inherit; text-align: left; cursor: pointer; }
.product-category { margin-bottom: .45rem; color: rgba(23,24,21,.62); font-size: 12px; line-height: 1.5; }
.product-description { display: -webkit-box; min-height: 4.8em; overflow: hidden; margin-top: .55rem; color: rgba(23,24,21,.5); font-size: 12px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-quote-add { position: absolute; right: 14px; bottom: 14px; z-index: 2; display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; background: #e8e8e5; color: var(--ink); box-shadow: 0 8px 24px rgba(23,24,21,.14); cursor: pointer; transition: transform .2s,background-color .2s; }
.product-quote-add:hover,.product-quote-add.is-added { transform: scale(1.06); background: var(--accent); color: var(--ink); }
.product-quote-add svg { width: 17px; }
.product-tooltip { position: absolute; right: 0; bottom: calc(100% + 10px); width: max-content; max-width: 190px; transform: translateY(4px); border-radius: 5px; background: var(--ink); padding: 8px 10px; color: #fff; font-size: 10px; font-weight: 700; line-height: 1.25; opacity: 0; pointer-events: none; transition: .18s; }
.product-quote-add:hover .product-tooltip,.product-quote-add:focus-visible .product-tooltip { transform: translateY(0); opacity: 1; }
.product-color-swatches { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: flex; min-height: 38px; align-items: center; gap: 5px; border: 1px solid rgba(23,24,21,.08); border-radius: 999px; background: rgba(255,255,255,.92); padding: 7px 9px; box-shadow: 0 8px 24px rgba(23,24,21,.09); backdrop-filter: blur(8px); }
.product-color-swatch { position: relative; display: block; width: 18px; height: 18px; flex: 0 0 auto; border: 2px solid #fff; border-radius: 50%; background: var(--product-color); box-shadow: 0 0 0 1px rgba(23,24,21,.22); outline: none; cursor: help; }
.product-color-swatch.is-dual { background: linear-gradient(90deg,var(--product-color) 0 50%,var(--product-color-secondary) 50% 100%); }
.product-color-swatch:focus-visible { box-shadow: 0 0 0 2px var(--ink); }
.product-color-tooltip { position: absolute; left: -8px; bottom: calc(100% + 10px); width: max-content; max-width: min(250px,70vw); transform: translateY(4px); border-radius: 5px; background: var(--ink); padding: 8px 10px; color: #fff; font-size: 10px; font-weight: 700; line-height: 1.35; white-space: normal; opacity: 0; pointer-events: none; transition: transform .18s,opacity .18s; }
.product-color-tooltip::after { position: absolute; left: 11px; top: 100%; width: 0; height: 0; border: 5px solid transparent; border-top-color: var(--ink); content: ""; }
.product-color-swatch:hover .product-color-tooltip,.product-color-swatch:focus-visible .product-color-tooltip { transform: translateY(0); opacity: 1; }
.product-color-more { display: grid; min-width: 21px; height: 21px; place-items: center; border-radius: 50%; background: #ecece8; color: rgba(23,24,21,.7); font-size: 9px; font-weight: 800; }
.single-product-lightbox { position: fixed; inset: 0; z-index: 130; display: grid; grid-template-rows: auto 1fr; background: rgba(7,8,7,.96); color: #fff; }
.single-product-lightbox.hidden { display: none; }
.single-product-lightbox-bar { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.12); padding: 0 clamp(18px,4vw,52px); }
.single-product-lightbox-bar strong { font-size: 13px; }
.single-product-lightbox-bar button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; cursor: pointer; }
.single-product-lightbox-bar svg { width: 18px; }
.single-product-lightbox-stage { display: grid; min-height: 0; place-items: center; padding: clamp(18px,4vw,52px); cursor: zoom-out; }
.single-product-lightbox-stage img { display: block; max-width: 100%; max-height: calc(100vh - 120px); object-fit: contain; cursor: default; }
.chairs-showcase { background: linear-gradient(135deg,#f1f0eb 0,#fafaf8 52%,#ecebe5 100%); }
.chairs-intro { max-width: 620px; margin-top: 1.4rem; color: rgba(23,24,21,.56); font-size: 13px; line-height: 1.8; }

/* Showroom */
.showroom-light { background: #fff; }
.showroom-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; gap: clamp(2.5rem,5vw,6rem); }
.showroom-reels { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: start; gap: clamp(12px,2vw,22px); }
.showroom-reel { min-width: 0; }
.showroom-reel.reel-offset { margin-top: 44px; }
.showroom-reel-media { position: relative; aspect-ratio: 9/16; overflow: hidden; border: 1px solid rgba(23,24,21,.18); background: #171915; box-shadow: 0 24px 55px rgba(23,24,21,.16); }
.showroom-reel-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg,rgba(10,11,9,.44),transparent 42%); }
.showroom-reel-media video,.showroom-reel-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.showroom-reel-media video { cursor: pointer; }
.reel-play { position: absolute; top: 50%; left: 50%; z-index: 3; display: grid; width: 58px; height: 58px; transform: translate(-50%,-50%); place-items: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; background: rgba(17,18,15,.72); color: #fff; cursor: pointer; backdrop-filter: blur(8px); transition: opacity .2s,transform .2s,background .2s; }
.reel-play:hover { transform: translate(-50%,-50%) scale(1.06); background: var(--accent); color: var(--ink); }
.reel-play svg { width: 20px; fill: currentColor; }
.showroom-reel.is-playing .reel-play { opacity: 0; pointer-events: none; }
.reel-placeholder { pointer-events: none; }
.showroom-copy { align-self: center; max-width: 600px; }
.showroom-copy h2 { margin-top: .9rem; font-size: clamp(2rem,3.7vw,3.7rem); font-weight: 600; line-height: 1.04; letter-spacing: -.045em; }
.showroom-copy > p:not(.eyebrow) { margin-top: 1.5rem; color: rgba(23,24,21,.58); font-size: 14px; line-height: 1.85; }
.showroom-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 1.9rem; }
.showroom-points span { display: flex; align-items: center; gap: .55rem; border-top: 1px solid rgba(23,24,21,.15); padding-top: 12px; color: rgba(23,24,21,.72); font-size: 11px; font-weight: 700; }
.showroom-points svg { width: 16px; color: #989000; }
.showroom-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }

/* Footer */
.premium-footer { overflow: hidden; background: radial-gradient(circle at 12% 10%,#22241e 0,#131410 38%,#0c0d0b 100%); color: #fff; }
.footer-project-cta { display: flex; align-items: center; justify-content: space-between; gap: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); padding: 54px 0 42px; }
.footer-project-cta h2 { max-width: 780px; margin-top: .8rem; font-size: clamp(1.8rem,3.1vw,3.1rem); font-weight: 600; line-height: 1.05; letter-spacing: -.04em; }
.footer-project-cta .button-primary { flex: 0 0 auto; }
.footer-main { display: grid; grid-template-columns: 1.3fr .65fr .75fr 1fr; gap: 4rem; padding: 58px 0; }
.footer-brand > img { width: 210px; }
.footer-brand > p { max-width: 360px; margin-top: 1.6rem; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.85; }
.social-links { display: flex; gap: 6px; }
.footer-brand .social-links { margin-top: 1.7rem; }
.social-links a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.68); transition: .2s; }
.social-links a:hover { border-color: var(--accent); background: var(--accent); color: var(--dark); }
.social-links svg { width: 16px; }
.footer-column h3, .footer-contact h3 { margin-bottom: 1.25rem; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a, .footer-contact a { display: block; width: max-content; margin-top: .85rem; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.5; transition: .2s; }
.footer-column a:hover, .footer-contact a:hover { color: #fff; transform: translateX(2px); }
.footer-contact p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.8; }
.footer-contact small { display: block; margin-top: 1.4rem; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .04em; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; color: rgba(255,255,255,.45); font-size: 11px; }
.footer-bottom div { display: flex; gap: 1.5rem; }
.fixed-contact-actions { position: fixed; right: 24px; bottom: 24px; z-index: 41; display: flex; align-items: center; gap: 8px; }
.whatsapp-button { display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; background: #25d366; color: #092713; box-shadow: 0 15px 35px rgba(0,0,0,.18); }
.whatsapp-button svg { width: 19px; }

/* Quote list */
.quote-list-button { display: flex; min-height: 48px; align-items: center; gap: .6rem; border: 0; background: var(--accent); padding: 0 16px; color: var(--ink); font-size: 11px; font-weight: 800; box-shadow: 0 15px 35px rgba(0,0,0,.18); cursor: pointer; }
.quote-list-button svg { width: 18px; }
.quote-list-count { display: grid; min-width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--ink); padding: 0 5px; color: #fff; font-size: 10px; }
.quote-overlay { position: fixed; inset: 0; z-index: 94; background: rgba(7,8,7,.58); opacity: 0; pointer-events: none; transition: opacity .28s; backdrop-filter: blur(3px); }
.quote-overlay.open { opacity: 1; pointer-events: auto; }
.quote-drawer { position: fixed; top: 0; right: 0; z-index: 95; display: grid; width: min(520px,100%); height: 100dvh; grid-template-rows: auto minmax(0,1fr); transform: translateX(102%); background: #fff; color: var(--ink); box-shadow: -24px 0 70px rgba(0,0,0,.2); transition: transform .32s ease; }
.quote-drawer.open { transform: translateX(0); }
.quote-drawer-head { display: flex; align-items: start; justify-content: space-between; gap: 2rem; border-bottom: 1px solid #eeeeee; padding: 28px clamp(20px,4vw,34px) 22px; }
.quote-drawer-head h2 { margin-top: .5rem; font-size: clamp(1.65rem,3vw,2.2rem); font-weight: 600; letter-spacing: -.04em; }
.quote-drawer-close { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 1px solid #e8e8e8; background: #fff; cursor: pointer; }
.quote-drawer-close svg { width: 18px; }
.quote-drawer-body { display: grid; min-height: 0; grid-template-rows: minmax(90px,1fr) auto; overflow: hidden; padding: 24px clamp(20px,4vw,34px); }
.quote-items-scroll { min-height: 0; overflow-y: auto; padding-right: 6px; scrollbar-gutter: stable; }
.quote-items { display: grid; gap: 10px; }
.quote-item { display: grid; grid-template-columns: 78px minmax(0,1fr) 34px; align-items: center; gap: 12px; border: 1px solid #eeeeee; border-radius: 10px; padding: 8px; }
.quote-item img { width: 78px; height: 64px; border-radius: 7px; object-fit: contain; background: #fff; }
.quote-item strong { display: block; font-size: 13px; }
.quote-item small { display: block; margin-top: 3px; color: rgba(23,24,21,.5); font-size: 10px; }
.quote-item-controls { display: flex; width: max-content; align-items: center; gap: 2px; border: 1px solid #e6e6e2; border-radius: 7px; margin-top: 8px; padding: 2px; }
.quote-item-controls button { display: grid; width: 25px; height: 25px; place-items: center; border: 0; border-radius: 5px; background: #f1f1ee; color: var(--ink); cursor: pointer; }
.quote-item-controls button:hover { background: var(--accent); }
.quote-item-controls button svg { width: 13px; }
.quote-item-quantity { min-width: 26px; font-size: 11px; font-weight: 800; text-align: center; }
.quote-item-remove { display: grid; width: 32px; height: 32px; place-items: center; border: 0; background: transparent; color: rgba(23,24,21,.45); cursor: pointer; }
.quote-item-remove:hover { color: #b42318; }
.quote-item-remove svg { width: 16px; }
.quote-empty { border: 1px dashed #d8d8d8; border-radius: 10px; padding: 28px 18px; color: rgba(23,24,21,.5); font-size: 12px; line-height: 1.7; text-align: center; }
.quote-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px 14px; margin-top: 18px; border-top: 1px solid #eeeeee; padding-top: 18px; }
.quote-form-field { display: grid; gap: 7px; }
.quote-form-field.full,.quote-consent,.quote-form-status,.quote-submit { grid-column: 1/-1; }
.quote-form-field label { font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.quote-form-field input,.quote-form-field textarea { width: 100%; border: 1px solid #dcdcd8; background: #fff; padding: 10px 12px; color: var(--ink); font: inherit; font-size: 13px; outline: 0; }
.quote-form-field textarea { min-height: 68px; resize: vertical; }
.quote-form-field input:focus,.quote-form-field textarea:focus { border-color: #9e9700; box-shadow: 0 0 0 3px rgba(242,229,17,.2); }
.quote-consent { display: flex; align-items: flex-start; gap: 9px; color: rgba(23,24,21,.66); font-size: 11px; line-height: 1.55; }
.quote-consent input { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--ink); }
.quote-consent a { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.quote-form-status { display: none; border-left: 3px solid #b42318; background: #fff1f0; padding: 10px 12px; color: #7a271a; font-size: 11px; line-height: 1.55; }
.quote-form-status.show { display: block; }
.quote-submit { justify-content: center; border: 0; cursor: pointer; }
.quote-submit:disabled { cursor: wait; opacity: .65; }
.quote-success-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background: rgba(7,8,7,.7); padding: 20px; }
.quote-success-modal.hidden { display: none; }
.quote-success-card { width: min(480px,100%); background: #fff; padding: clamp(28px,5vw,46px); color: var(--ink); text-align: center; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.quote-success-icon { display: grid; width: 58px; height: 58px; margin: 0 auto; place-items: center; border-radius: 50%; background: var(--accent); }
.quote-success-icon svg { width: 25px; }
.quote-success-card h2 { margin-top: 1.2rem; font-size: 1.7rem; font-weight: 600; }
.quote-success-card p { margin-top: .8rem; color: rgba(23,24,21,.6); font-size: 13px; line-height: 1.7; }
.quote-success-card button { margin-top: 1.5rem; }
body.quote-open { overflow: hidden; }

/* Modals */
.modal { position: fixed; inset: 0; z-index: 80; overflow-y: auto; background: var(--dark); color: #fff; }
.mega-modal { background: rgba(5,6,5,.78); padding: clamp(110px,13vh,150px) 20px 40px; backdrop-filter: blur(10px); }
.mega-panel { width: min(1380px,100%); margin: 0 auto; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(145deg,#1d1f19,#11120f 72%); padding: clamp(26px,3vw,42px); box-shadow: 0 35px 90px rgba(0,0,0,.48); }
.mega-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 2rem; padding-bottom: 1.5rem; }
.mega-panel-head h2 { margin-top: .55rem; font-size: clamp(1.7rem,2.8vw,2.7rem); font-weight: 600; letter-spacing: -.04em; }
.mega-columns { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px; }
.mega-column h3 { margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: .9rem; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mega-column a { display: block; margin-top: .75rem; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.5; transition: .2s; }
.mega-column a:hover { transform: translateX(3px); color: var(--accent); }
.mega-feature { position: relative; min-height: 285px; overflow: hidden; padding: 24px; }
.mega-feature img, .mega-feature > div { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-feature > div { background: linear-gradient(0deg,rgba(0,0,0,.9),rgba(0,0,0,.06)); }
.mega-feature span, .mega-feature h3, .mega-feature svg { position: relative; z-index: 2; }
.mega-feature span { display: block; margin-top: 155px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mega-feature h3 { margin-top: .65rem; font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
.mega-feature svg { position: absolute; right: 22px; bottom: 22px; width: 18px; }
#mobileModal nav a, #mobileModal nav button { display: flex; width: 100%; align-items: center; justify-content: space-between; border: 0; background: none; padding: 1.15rem 0; color: #fff; font-size: 1.2rem; font-weight: 600; text-align: left; }
#mobileModal nav svg { width: 17px; color: var(--accent); }

@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-carousel, .chair-carousel { grid-auto-columns: calc((100% - 24px)/2); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-contact { grid-column: 2/4; }
  .mega-columns { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .mega-feature { min-height: 330px; }
}

@media (max-width: 767px) {
  .page-shell { width: min(100% - 30px,1440px); }
  .hero-section > .page-shell { padding-top: 82px; }
  .section-space { padding-block: 4.5rem; }
  .hero-section { min-height: 760px; }
  .section-heading { display: block; }
  .heading-aside, .product-heading .carousel-actions { margin-top: 1.8rem; }
  .category-grid { grid-template-columns: 1fr; }
  .about-collage { min-height: 390px; }
  .about-main { height: 350px; }
  .experience-card { padding: 18px 20px; }
  .experience-card strong { font-size: 2.4rem; }
  .product-carousel, .chair-carousel { grid-auto-columns: calc((100% - 12px)/2); gap: 12px; }
  .product-carousel .product-media, .chair-carousel .product-media { height: 150px; border-radius: 13px; }
  .product-carousel .vertical-product-card .product-media, .chair-carousel .vertical-product-card .product-media { height: 240px; }
  .product-media-link { padding: 7px; }
  .product-info { padding-top: 12px; }
  .product-info h3 { font-size: .96rem; line-height: 1.25; }
  .product-category,.product-description { font-size: 9px; }
  .product-description { min-height: 4.65em; line-height: 1.55; }
  .product-quote-add { right: 8px; bottom: 8px; width: 32px; height: 32px; }
  .product-color-swatches { left: 8px; bottom: 8px; min-height: 32px; gap: 4px; padding: 6px 7px; }
  .product-color-swatch { width: 14px; height: 14px; }
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-reel.reel-offset { margin-top: 28px; }
  .showroom-points { grid-template-columns: 1fr; }
  .footer-project-cta { display: block; }
  .footer-project-cta .button-primary { margin-top: 1.6rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1/3; }
  .footer-contact { grid-column: 1/3; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .fixed-contact-actions { right: 15px; bottom: 15px; gap: 6px; }
  .whatsapp-button { width: 46px; height: 46px; flex-basis: 46px; }
  .quote-list-button { min-height: 46px; padding: 0 13px; }
  .quote-list-button > span:not(.quote-list-count) { display: none; }
  .quote-drawer-body { padding: 16px 15px; }
  .quote-item { grid-template-columns: 64px minmax(0,1fr) 30px; gap: 9px; }
  .quote-item img { width: 64px; height: 58px; }
  .mega-modal { padding: 90px 12px 20px; }
  .mega-panel { padding: 22px 18px; }
  .mega-columns { grid-template-columns: 1fr; }
  .mega-feature { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

/* V4 shared premium refinements */
.nav-link { font-size: 12px; color: rgba(255,255,255,.78); }
.language-trigger {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 3px 0;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .2s;
}
.language-trigger:hover { color: var(--accent); }
.language-label { font-weight: 700; }
.language-current { color: var(--accent); }
.language-modal { display: grid; place-items: center; overflow: auto; background: rgba(5,6,5,.76); padding: 24px; backdrop-filter: blur(12px); }
.language-modal.hidden { display: none; }
.language-panel { width: min(650px,100%); border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg,#1d1f19,#10110f); padding: clamp(24px,4vw,42px); box-shadow: 0 35px 90px rgba(0,0,0,.45); }
.language-panel-head { display: flex; align-items: start; justify-content: space-between; gap: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1.5rem; }
.language-panel-head h2 { max-width: 450px; margin-top: .65rem; font-size: clamp(1.65rem,3vw,2.5rem); font-weight: 600; line-height: 1.1; letter-spacing: -.04em; }
.language-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 1.6rem; }
.language-option { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.025); padding: 14px 16px; color: #fff; text-align: left; cursor: pointer; transition: .2s; }
.language-option:hover { border-color: rgba(242,229,17,.6); background: rgba(242,229,17,.05); }
.language-option.active { border-color: var(--accent); background: rgba(242,229,17,.08); }
.language-option strong { display: block; font-size: 14px; }
.language-option small { display: block; margin-top: 4px; color: rgba(255,255,255,.42); font-size: 11px; }
.language-option em { color: rgba(255,255,255,.36); font-size: 11px; font-style: normal; font-weight: 700; }
.language-option svg { width: 17px; color: var(--accent); }
.language-status { margin-top: 1.1rem; color: rgba(255,255,255,.45); font-size: 11px; }
.mega-column .mega-group-link { display: flex; align-items: center; justify-content: space-between; gap: .8rem; border-bottom: 1px solid rgba(255,255,255,.14); margin: 0 0 1rem; padding-bottom: .9rem; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: .2s; }
.mega-group-link:hover { color: var(--accent); }
.mega-group-link svg { width: 15px; flex: 0 0 auto; }
.footer-contact-line { display: flex !important; width: auto !important; align-items: flex-start; gap: .7rem; margin-top: .9rem !important; color: rgba(255,255,255,.58) !important; font-size: 12px !important; line-height: 1.65 !important; }
.footer-contact-line svg { width: 15px; flex: 0 0 auto; margin-top: 2px; color: var(--accent); }
.footer-contact-line:hover { transform: none !important; color: #fff !important; }
.footer-hours { color: rgba(255,255,255,.42) !important; }
.footer-bottom { display: grid; grid-template-columns: minmax(180px,1fr) auto minmax(180px,1fr); align-items: center; gap: 2rem; }
.footer-copyright { justify-self: start; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem 1.3rem; color: rgba(255,255,255,.52); }
.footer-legal a { transition: .2s; }
.footer-legal a:hover { color: #fff; }
.agency-credit { display: flex; align-items: center; justify-self: end; }
.agency-credit img { width: 88px; max-height: 34px; object-fit: contain; }

@media (min-width: 1101px) {
  .mega-panel > .grid { grid-template-columns: minmax(0,1fr) 310px !important; align-items: start; }
  .mega-feature { display: flex; aspect-ratio: 1; min-height: 0; flex-direction: column; justify-content: flex-end; }
  .mega-feature span { margin-top: 0; }
}

@media (max-width: 900px) {
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-copyright,.agency-credit { justify-self: center; }
}
@media (max-width: 560px) {
  .language-options { grid-template-columns: 1fr; }
}

select:not([multiple]) {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23171815' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 44px !important;
}
