:root {
  --ink: #241812;
  --ink-soft: #443229;
  --brown: #4a3022;
  --brown-deep: #1d120d;
  --gold: #b77a2d;
  --gold-bright: #d8ad69;
  --cream: #f4ede3;
  --paper: #fcfaf6;
  --white: #fff;
  --muted: #74645b;
  --green: #187844;
  --line: rgba(60, 40, 28, .14);
  --line-light: rgba(255, 255, 255, .16);
  --shadow-sm: 0 12px 32px rgba(40, 25, 16, .08);
  --shadow-lg: 0 30px 80px rgba(31, 19, 12, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1240px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }

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

button,
input,
textarea { font: inherit; }

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

button { color: inherit; cursor: pointer; }

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

[hidden] { display: none !important; }

h1,
h2,
h3,
p { text-wrap: pretty; }

::selection { background: var(--gold-bright); color: var(--ink); }

:focus-visible {
  outline: 3px solid #2878b7;
  outline-offset: 4px;
}

.container { width: var(--container); margin-inline: auto; }

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.topbar {
  position: relative;
  z-index: 102;
  background: var(--brown-deep);
  color: #e8d8c3;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.topbar span { display: inline-flex; align-items: center; gap: 12px; }
.topbar span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-bright); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(252, 250, 246, .9);
  backdrop-filter: blur(18px) saturate(135%);
  transition: box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(35, 22, 14, .06); }

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 198px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 68px;
  height: 42px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand > span { display: flex; flex-direction: column; line-height: .9; letter-spacing: .12em; }
.brand strong { font-family: var(--serif); font-size: 1.05rem; }
.brand small { margin-top: 7px; font-size: .68rem; letter-spacing: .26em; }

.nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: clamp(17px, 2vw, 30px); }
.nav a { position: relative; padding-block: 12px; color: #533f34; font-size: .86rem; font-weight: 750; }
.nav a::after { content: ""; position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; transform: scaleX(0); background: var(--gold); transition: transform .25s ease; }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}

.button--sm { min-height: 42px; padding: 10px 17px; font-size: .8rem; }
.button--gold { background: var(--gold); color: var(--white); box-shadow: 0 9px 24px rgba(183, 122, 45, .22); }
.button--dark { background: var(--ink); color: var(--white); }
.button--ghost { border-color: rgba(255, 255, 255, .46); background: rgba(255, 255, 255, .05); color: var(--white); }
.button--whatsapp { background: var(--green); color: var(--white); box-shadow: 0 10px 28px rgba(24, 120, 68, .2); }
.button--full { width: 100%; }
.button--arrow span { font-size: 1.05rem; transition: transform .25s ease; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow--light { color: var(--gold-bright); }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 13%, rgba(183, 122, 45, .14), transparent 28%),
    linear-gradient(135deg, #1e130e 0%, #382419 58%, #1d120d 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -6vw;
  bottom: -15vw;
  width: 45vw;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 173, 105, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(216, 173, 105, .025), 0 0 0 12vw rgba(216, 173, 105, .02);
}

.hero__glow { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.045) 50%, transparent 50.2%); pointer-events: none; }

.hero__grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  padding-block: 64px;
}

.hero__content { position: relative; z-index: 2; max-width: 630px; }
.hero h1 { max-width: 620px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 4.15vw, 4.9rem); font-weight: 500; letter-spacing: -.018em; line-height: 1.01; }
.hero h1 em { display: block; color: var(--gold-bright); font-weight: 400; }
.hero__lead { max-width: 590px; margin: 24px 0 0; color: #dfd2c3; font-size: clamp(.96rem, 1.15vw, 1.1rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 30px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0; padding: 0; list-style: none; color: #cdbfb0; font-size: .78rem; font-weight: 650; }
.hero__proof li { display: flex; align-items: center; gap: 8px; }
.hero__proof li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-bright); }

.hero-carousel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: #291a12;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .36);
}

.hero-carousel__slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity .75s ease, visibility .75s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(22, 13, 9, .88) 100%); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 7s cubic-bezier(.2,.6,.2,1); }
.hero-slide.is-active img { transform: scale(1.045); }
.hero-slide figcaption { position: absolute; z-index: 2; right: 28px; bottom: 76px; left: 28px; }
.hero-slide figcaption b,
.hero-slide figcaption span { display: block; }
.hero-slide figcaption b { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.hero-slide figcaption span { max-width: 430px; margin-top: 3px; color: #d7c8b7; font-size: .8rem; }
.hero-carousel__bar { position: absolute; z-index: 3; right: 24px; bottom: 20px; left: 28px; display: flex; justify-content: space-between; align-items: center; }
.hero-carousel__dots { display: flex; gap: 7px; }
.carousel-dot { width: 24px; height: 3px; padding: 0; border: 0; border-radius: 3px; background: rgba(255,255,255,.32); transition: width .25s ease, background-color .25s ease; }
.carousel-dot.is-active { width: 42px; background: var(--gold-bright); }
.carousel-actions { display: flex; gap: 9px; }
.icon-button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 1rem; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.icon-button--light { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: var(--white); backdrop-filter: blur(10px); }

.metrics { border-bottom: 1px solid var(--line); background: var(--white); }
.metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metrics article { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 22px 34px; border-right: 1px solid var(--line); }
.metrics article:first-child { border-left: 1px solid var(--line); }
.metrics strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.metrics span { margin-top: 6px; color: var(--muted); font-size: .73rem; font-weight: 650; }

.section { padding-block: clamp(86px, 9vw, 132px); }
.section--models { overflow: hidden; }
.section--soft { background: var(--cream); }
.section--dark { background: var(--brown-deep); color: var(--white); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 42px; }
.section-heading h2,
.section h2,
.contact-cta h2,
.catalog-help h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.05rem, 3.1vw, 3.35rem); font-weight: 500; letter-spacing: -.022em; line-height: 1.06; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); font-size: .95rem; }
.section-heading--center { justify-content: center; text-align: center; }
.section-heading--center > div { max-width: 720px; }
.section-heading--collection { display: block; margin-bottom: 34px; }
.section-heading--collection > div { max-width: 690px; }
.section-heading--collection h2 { font-size: clamp(2rem, 2.8vw, 3rem); }

.carousel-shell { position: relative; }
.showcase-card { flex: 0 0 min(330px, 82vw); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.showcase-card--wide { flex-basis: min(400px, 86vw); }
.shade-stage { position: relative; height: 310px; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.shade-stage::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid rgba(60,40,28,.09); border-radius: 50%; }
.shade-stage::after { content: ""; position: absolute; z-index: -1; right: -50px; bottom: -70px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.28); filter: blur(2px); }
.stage--cream { background: #eee3d5; }
.stage--charcoal { background: #312b28; }
.stage--cool { background: #e4e7e6; }
.stage--rose { background: #9d5042; }
.stage--warm { background: #e9deca; }
.stage--stone { background: #d3d0cb; }
.visual-label { position: absolute; right: 16px; bottom: 15px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.72); color: var(--ink); font-size: .68rem; font-weight: 800; backdrop-filter: blur(10px); }
.visual-label--light { background: rgba(35,24,18,.7); color: var(--white); }
.showcase-card__body { padding: 22px 24px 24px; }
.showcase-card__body > span { display: block; color: var(--muted); font-size: .71rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.showcase-card__body strong { display: block; margin: 7px 0 19px; font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.showcase-card__body small { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid var(--line); color: var(--gold); font-size: .76rem; font-weight: 850; }
.carousel-footer { display: flex; justify-content: space-between; align-items: center; }
.carousel-footer p { margin: 0; color: var(--muted); font-size: .75rem; }
.center-action { display: flex; justify-content: center; margin-top: 48px; }

.shade-art {
  --shade: #d7c3a7;
  --shade-highlight: #efe4d3;
  --shape-width: 178px;
  --shape-height: 154px;
  --top-width: 44%;
  position: relative;
  width: var(--shape-width);
  height: var(--shape-height);
  filter: drop-shadow(0 22px 16px rgba(40, 27, 18, .2));
  transform: translateZ(0);
}

.shade-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 13%, rgba(255,255,255,.22) 27%, transparent 42%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, rgba(0,0,0,.025) 1px 3px),
    linear-gradient(135deg, var(--shade-highlight), var(--shade));
  clip-path: polygon(calc((100% - var(--top-width)) / 2) 3%, calc((100% + var(--top-width)) / 2) 3%, 98% 94%, 2% 94%);
  box-shadow: inset 0 -8px 18px rgba(55, 35, 22, .12);
}

.shade-art::after { content: ""; position: absolute; right: 7%; bottom: 2%; left: 7%; height: 7px; border-radius: 50%; background: rgba(40,25,16,.16); filter: blur(4px); }
.shade-art > span { position: absolute; z-index: 2; top: 1%; left: 50%; width: var(--top-width); height: 9px; transform: translateX(-50%); border: 2px solid rgba(65,45,32,.3); border-radius: 50%; background: rgba(255,255,255,.13); }
.shade-art--round::before { border-radius: 44% 44% 12% 12% / 6% 6% 5% 5%; }
.shade-art--square { filter: drop-shadow(13px 20px 13px rgba(40, 27, 18, .21)); }
.shade-art--square::before { clip-path: polygon(calc((100% - var(--top-width)) / 2) 3%, calc((100% + var(--top-width)) / 2) 3%, 98% 93%, 2% 93%); }
.shade-art--square > span { height: 5px; border-radius: 1px; }
.tone--black { --shade: #1e1e1d; --shade-highlight: #4b4946; }
.tone--white { --shade: #f4f1ea; --shade-highlight: #fff; }
.tone--beige { --shade: #c9b18f; --shade-highlight: #e7d8c3; }
.tone--offwhite { --shade: #e3ddce; --shade-highlight: #f7f2e8; }
.tone--ice { --shade: #d9ddda; --shade-highlight: #f0f2ef; }
.tone--gray { --shade: #8c8b87; --shade-highlight: #b8b7b2; }
.tone--terracotta { --shade: #a74f3f; --shade-highlight: #d77b68; }
.tone--blue { --shade: #376b7d; --shade-highlight: #65a1b3; }
.tone--green { --shade: #456a53; --shade-highlight: #74967e; }
.tone--gold { --shade: #a8712e; --shade-highlight: #d8ab68; }
.proportion--0 { --shape-width: 150px; --shape-height: 145px; --top-width: 48%; }
.proportion--1 { --shape-width: 185px; --shape-height: 125px; --top-width: 58%; }
.proportion--2 { --shape-width: 190px; --shape-height: 160px; --top-width: 45%; }
.proportion--3 { --shape-width: 210px; --shape-height: 145px; --top-width: 36%; }
.proportion--4 { --shape-width: 184px; --shape-height: 182px; --top-width: 54%; }

.capability-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(380px, .75fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.capability-copy > p:not(.eyebrow) { max-width: 610px; color: #cabbac; }
.feature-list { margin: 42px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-light); }
.feature-list li:last-child { border-bottom: 1px solid var(--line-light); }
.feature-list > li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(216,173,105,.5); border-radius: 50%; color: var(--gold-bright); font-size: .7rem; font-weight: 850; }
.feature-list b { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; }
.feature-list p { margin: 4px 0 0; color: #af9f90; font-size: .84rem; }
.spec-visual { position: relative; min-height: 540px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: #eee7dd; }
.spec-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 64%, rgba(27,16,11,.68)); }
.spec-visual img { width: 100%; height: 540px; object-fit: cover; }
.spec-visual figcaption { position: absolute; z-index: 2; right: 26px; bottom: 24px; left: 26px; color: var(--white); }
.spec-visual figcaption span,
.spec-visual figcaption b { display: block; }
.spec-visual figcaption span { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.spec-visual figcaption b { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }

.section--process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; counter-reset: process; list-style: none; }
.process-grid li { position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.process-grid li::after { content: ""; position: absolute; right: -62px; bottom: -92px; width: 180px; height: 180px; border: 1px solid rgba(183,122,45,.18); border-radius: 50%; box-shadow: 0 0 0 24px rgba(183,122,45,.035); }
.process-grid > li > span { color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.process-grid h3 { margin: 78px 0 10px; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1.15; }
.process-grid p { max-width: 310px; margin: 0; color: var(--muted); font-size: .86rem; }
.commercial-note { max-width: 850px; margin: 34px auto 0; color: var(--muted); font-size: .78rem; text-align: center; }

.about-layout { display: grid; grid-template-columns: 370px 1fr; align-items: center; gap: clamp(55px, 9vw, 130px); }
.about-layout > div:last-child > p:not(.eyebrow) { max-width: 740px; color: var(--muted); font-size: 1rem; }
.about-emblem { position: relative; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); box-shadow: var(--shadow-lg); }
.about-emblem::after { content: ""; position: absolute; inset: 17px; border: 1px solid rgba(216,173,105,.32); border-radius: 50%; }
.about-emblem svg { position: absolute; width: 68%; fill: none; stroke: rgba(216,173,105,.28); stroke-width: 1.4; }
.about-emblem span { position: relative; z-index: 2; font-family: var(--serif); font-size: 2.25rem; line-height: .95; text-align: center; }
.value-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.value-row span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.65); font-size: .75rem; font-weight: 800; }

.contact-cta { padding-block: clamp(74px, 8vw, 110px); background: linear-gradient(135deg, #d2a25d 0%, #edcf9f 100%); }
.contact-cta__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.contact-cta .eyebrow { color: #654319; }
.contact-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.footer { padding: 68px 0 22px; background: #190f0b; color: #cdbeb0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.brand--footer { color: var(--white); }
.footer__brand p { max-width: 300px; margin-top: 20px; color: #a99b90; font-size: .84rem; }
.footer h3 { margin: 0 0 17px; color: var(--white); font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; }
.footer__grid > div:not(.footer__brand) a { display: block; width: fit-content; margin: 9px 0; color: #c4b5a8; font-size: .82rem; transition: color .2s ease; }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8e8178; font-size: .7rem; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: var(--green); color: var(--white); box-shadow: 0 16px 38px rgba(16,70,40,.32); transition: transform .25s ease, box-shadow .25s ease; }
.floating-whatsapp svg { width: 29px; height: 29px; fill: currentColor; }

/* Catálogo */
.catalog-page { background: #f8f5ef; }
.catalog-hero { position: relative; overflow: hidden; background: var(--brown-deep); color: var(--white); }
.catalog-hero::after { content: ""; position: absolute; right: -120px; bottom: -270px; width: 580px; height: 580px; border: 1px solid rgba(216,173,105,.16); border-radius: 50%; box-shadow: 0 0 0 76px rgba(216,173,105,.025), 0 0 0 152px rgba(216,173,105,.018); }
.catalog-hero__line { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.045) 50%, transparent 50.1%); }
.catalog-hero__grid { min-height: 480px; display: grid; grid-template-columns: 1.2fr .55fr; align-items: center; gap: 90px; padding-block: 64px; }
.breadcrumb { width: fit-content; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 48px; color: #c8b8a7; font-size: .74rem; font-weight: 750; }
.catalog-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 4.2vw, 4.5rem); font-weight: 500; letter-spacing: -.022em; line-height: 1; }
.catalog-hero h1 em { color: var(--gold-bright); font-weight: 400; }
.catalog-hero__grid > div:first-child > p:last-child { max-width: 680px; margin: 26px 0 0; color: #cdbdae; }
.catalog-hero__aside { position: relative; z-index: 2; padding: 30px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-md); background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.catalog-hero__aside div { display: flex; align-items: end; gap: 13px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.14); }
.catalog-hero__aside strong { color: var(--gold-bright); font-family: var(--serif); font-size: 4.6rem; font-weight: 500; line-height: .8; }
.catalog-hero__aside span { color: #ddcdbc; font-size: .74rem; font-weight: 800; }
.catalog-hero__aside p { margin: 21px 0 0; color: #b5a494; font-size: .76rem; }

.catalog-section { padding-block: 90px 120px; }
.catalog-intro { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 40px; }
.catalog-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 3vw, 3.2rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.05; }
.catalog-intro > p { max-width: 520px; margin: 0; color: var(--muted); font-size: .88rem; }
.catalog-toolbar { position: relative; z-index: 5; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 12px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); }
.filter-group { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-button { min-height: 44px; padding: 9px 16px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: var(--muted); font-size: .76rem; font-weight: 800; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.filter-button.is-active { background: var(--ink); color: var(--white); }
.search-field { width: min(330px, 100%); min-height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: #faf7f2; }
.search-field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(183,122,45,.12); }
.search-field svg { width: 19px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.search-field input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .8rem; }
.search-field input::placeholder { color: #96877c; }
.catalog-status { display: flex; justify-content: space-between; gap: 20px; margin: 20px 2px 18px; color: var(--muted); font-size: .72rem; font-weight: 700; }
.catalog-status p { margin: 0; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 18px; }
.model-card { width: 100%; overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 8px 26px rgba(40,25,16,.05); text-align: left; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.model-card[hidden] { display: none; }
.model-card__visual { position: relative; height: 230px; display: grid; place-items: center; overflow: hidden; background: var(--card-bg, #ece4d8); }
.model-card__visual::before { content: attr(data-reference); position: absolute; top: 13px; left: 15px; color: rgba(35,23,17,.25); font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.model-card__visual::after { content: ""; position: absolute; bottom: 24px; left: 50%; width: 120px; height: 17px; transform: translateX(-50%); border-radius: 50%; background: rgba(42,27,18,.12); filter: blur(9px); }
.model-card__visual .shade-art { z-index: 2; transform: scale(.82); }
.model-card__body { padding: 18px 19px 19px; }
.model-card__format { display: flex; justify-content: space-between; align-items: center; gap: 10px; color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.model-card__format span:last-child { color: var(--gold); }
.model-card__body strong { display: block; margin: 10px 0 15px; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.model-card__link { display: flex; justify-content: space-between; align-items: center; padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink); font-size: .72rem; font-weight: 800; }
.model-card__link span { color: var(--gold); font-size: 1rem; }
.empty-state { max-width: 550px; margin: 70px auto 0; text-align: center; }
.empty-state > span { width: 68px; height: 68px; display: grid; place-items: center; margin: auto; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 2rem; }
.empty-state h3 { margin: 18px 0 4px; font-family: var(--serif); font-size: 1.7rem; }
.empty-state p { margin: 0 0 12px; color: var(--muted); }
.text-button { padding: 8px; border: 0; background: transparent; color: var(--gold); font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }
.noscript-note { padding: 20px; border: 1px solid #d8b977; border-radius: 14px; background: #fff7df; }
.catalog-help { padding-block: 78px; background: linear-gradient(135deg, #d5a863, #edcf9e); }
.catalog-help__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.catalog-help__grid > div:last-child { justify-self: end; max-width: 500px; }
.catalog-help__grid > div:last-child p { margin-top: 0; color: #5d442b; }

.configurator {
  width: min(1080px, calc(100% - 30px));
  max-height: min(880px, calc(100dvh - 30px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 35px 120px rgba(18,11,7,.36);
}

.configurator::backdrop { background: rgba(20,12,8,.72); backdrop-filter: blur(9px); }
.configurator__shell { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; min-height: 650px; }
.dialog-close { position: absolute; top: 18px; right: 18px; z-index: 4; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.88); font-size: 1.55rem; line-height: 1; backdrop-filter: blur(8px); }
.configurator__visual { min-height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 44px; overflow: hidden; background: #e8dfd4; }
.configurator__preview { width: 100%; min-height: 400px; display: grid; place-items: center; }
.configurator__preview .shade-art { transform: scale(1.42); }
.configurator__visual > p { margin: 0; color: var(--muted); font-size: .65rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.configurator__form { padding: 50px clamp(28px, 5vw, 62px) 38px; }
.configurator__form h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.configurator__form > p:nth-of-type(2) { margin: 12px 0 24px; color: var(--muted); font-size: .8rem; }
.selected-model { display: grid; grid-template-columns: 1fr auto; gap: 3px 18px; padding: 15px 17px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #faf7f2; }
.selected-model span { color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.selected-model strong { grid-row: 1 / 3; grid-column: 2; align-self: center; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.selected-model b { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.color-fieldset { margin: 24px 0 20px; padding: 0; border: 0; }
.color-fieldset legend,
.form-field > span { margin-bottom: 10px; color: var(--ink); font-size: .74rem; font-weight: 850; }
.color-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.color-options label { position: relative; min-width: 0; cursor: pointer; }
.color-options input { position: absolute; opacity: 0; pointer-events: none; }
.color-options label > b { min-height: 54px; display: flex; justify-content: center; align-items: center; padding: 8px 6px 8px 26px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); font-size: .61rem; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.color-options input:checked ~ b { border-color: var(--gold); background: #fffaf1; box-shadow: 0 0 0 2px rgba(183,122,45,.12); }
.color-options input:focus-visible ~ b { outline: 3px solid #2878b7; outline-offset: 2px; }
.color-swatch { position: absolute; z-index: 2; top: 50%; left: 9px; width: 14px; height: 14px; transform: translateY(-50%); border: 1px solid rgba(36,24,18,.18); border-radius: 50%; }
.swatch--black { background: #232323; }
.swatch--white { background: #fff; }
.swatch--beige { background: #cbb797; }
.swatch--offwhite { background: #ece6d8; }
.swatch--ice { background: #dce1df; }
.swatch--gray { background: #8d8d8b; }
.swatch--colorful { background: conic-gradient(#9e443a, #c4973c, #467762, #3b6983, #9e443a); }
.form-field { display: flex; flex-direction: column; margin-bottom: 17px; }
.form-field small { color: var(--muted); font-weight: 650; }
.form-field input,
.form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: #faf8f4; color: var(--ink); }
.form-field input { min-height: 46px; padding: 10px 13px; }
.form-field textarea { min-height: 88px; padding: 12px 13px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(183,122,45,.12); }
.config-summary { margin: 20px 0; padding: 17px; border-radius: var(--radius-sm); background: var(--ink); color: var(--white); }
.config-summary > p { margin: 0 0 10px; color: var(--gold-bright); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.config-summary dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 18px; margin: 0; }
.config-summary dl div { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.config-summary dt { color: #b7a89b; font-size: .68rem; }
.config-summary dd { margin: 0; font-size: .7rem; font-weight: 800; text-align: right; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .65rem; line-height: 1.45; text-align: center; }

/* Scroll reveal */
.reveal-ready [data-reveal] { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .75s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal-ready [data-reveal="left"] { transform: translate3d(-42px, 0, 0); }
.reveal-ready [data-reveal="right"] { transform: translate3d(42px, 0, 0); }
.reveal-ready [data-reveal="scale"] { transform: scale(.965); }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }
.reveal-ready .media-reveal img { filter: blur(10px); transform: scale(1.055); transition: filter 1s cubic-bezier(.2,.65,.25,1), transform 1.2s cubic-bezier(.2,.65,.25,1); }
.reveal-ready .media-reveal.is-visible img { filter: blur(0); transform: scale(1); }
.reveal-ready .hero-carousel.media-reveal.is-visible .hero-slide.is-active img { transform: scale(1.045); }

/* V3 — esteira contínua da coleção */
.product-viewport {
  width: 100%;
  min-width: 0;
  overflow: clip;
  padding: 10px 2px 26px;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.product-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.product-track {
  width: max-content;
  max-width: none;
  display: flex;
  gap: 0;
  overflow: visible;
  padding: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  cursor: inherit;
}

.product-track__set {
  flex: 0 0 auto;
  display: flex;
  gap: 22px;
  padding-right: 22px;
}

.product-track__set .showcase-card {
  flex: 0 0 330px;
}

.product-track__set .showcase-card--wide {
  flex-basis: 400px;
}

/* Catálogo de medidas com suporte a fotografia exclusiva por referência */
.catalog-toolbar {
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.search-field {
  width: min(470px, 100%);
  min-height: 52px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 22px;
}

.model-card {
  min-height: 360px;
  border-radius: 20px;
}

.model-card::before {
  right: 0;
  left: 0;
  width: auto;
  height: 3px;
  background: var(--gold);
}

.model-card__main {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  cursor: pointer;
}

.model-card__media.model-card__media--pending {
  position: relative;
  min-height: 190px;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 28%, rgba(255,255,255,.92), transparent 34%),
    linear-gradient(135deg, rgba(183, 122, 45, .12), transparent 58%),
    #eee6da;
}

.model-card__media.model-card__media--pending::before {
  content: attr(data-reference);
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 20px;
  color: rgba(63, 39, 25, .13);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.model-card__media.model-card__media--pending::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -66px;
  width: 176px;
  height: 176px;
  border: 1px solid rgba(122, 79, 42, .14);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.reference-placeholder {
  position: absolute;
  bottom: 31px;
  left: 24px;
  width: 118px;
  height: 62px;
}

.reference-placeholder i {
  position: absolute;
  display: block;
  opacity: .86;
}

.reference-placeholder i:nth-child(1) {
  top: 0;
  left: 0;
  width: 68px;
  border-top: 2px solid var(--gold);
}

.reference-placeholder i:nth-child(2) {
  bottom: 0;
  left: 0;
  width: 118px;
  border-top: 2px solid var(--gold);
}

.reference-placeholder i:nth-child(3) {
  top: 0;
  right: 0;
  height: 62px;
  border-right: 2px solid var(--gold);
}

.model-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.model-card__eyebrow {
  color: var(--gold);
  font-size: .7rem;
}

.model-card__body strong {
  margin: 10px 0 4px;
  font-size: clamp(1.45rem, 2.2vw, 1.72rem);
  overflow-wrap: normal;
  white-space: nowrap;
}

.model-card__body strong small {
  text-transform: none;
}

.model-card__order {
  font-size: .66rem;
}

.model-card__link {
  margin-top: auto;
  padding-top: 22px;
}

@media (max-width: 700px) {
  .product-track__set .showcase-card,
  .product-track__set .showcase-card--wide {
    flex-basis: 82vw;
  }

  .catalog-toolbar {
    padding: 0;
    border-radius: 0;
  }

  .catalog-status {
    gap: 5px;
  }

  .model-card {
    min-height: 170px;
    display: block;
  }

  .model-card__main {
    min-height: 170px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .model-card__media {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .model-card__media.model-card__media--pending::before {
    top: 14px;
    right: 12px;
    font-size: 2.4rem;
  }

  .reference-placeholder {
    bottom: 22px;
    left: 14px;
    transform: scale(.76);
    transform-origin: left bottom;
  }

  .model-card__body {
    padding: 18px;
  }

  .model-card__body strong {
    font-size: clamp(1.22rem, 5.7vw, 1.5rem);
  }

  .model-card__link {
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-track {
    will-change: auto;
  }
}

@media (hover: hover) {
  .button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(39,25,16,.2); }
  .button--arrow:hover span { transform: translate(2px, -2px); }
  .icon-button:hover { transform: translateY(-2px); border-color: var(--gold); }
  .showcase-card:hover,
  .model-card:hover { transform: translateY(-7px); border-color: rgba(183,122,45,.38); box-shadow: var(--shadow-lg); }
  .showcase-card:hover .shade-art,
  .model-card:hover .shade-art { transform: scale(1.04); }
  .model-card:hover .shade-art { transform: scale(.86); }
  .showcase-card .shade-art,
  .model-card .shade-art { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
  .floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 44px rgba(16,70,40,.4); }
  .footer__grid a:hover { color: var(--gold-bright) !important; }
}

@media (max-width: 1100px) {
  .header__cta { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr); gap: 40px; }
  .hero h1 { font-size: clamp(2.9rem, 5.2vw, 4.2rem); }
  .hero-carousel { min-height: 490px; }
  .capability-layout { gap: 55px; }
  .catalog-hero__grid { gap: 50px; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 36px, 1240px); }
  .topbar__inner span:nth-child(2) { display: none; }
  .header__inner { min-height: 74px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s, transform .2s ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 11px 9px; }
  .nav a::after { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 46px; padding-block: 70px; }
  .hero__content { max-width: 760px; }
  .hero-carousel { min-height: 550px; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .metrics article:nth-child(3) { border-left: 1px solid var(--line); }
  .metrics article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .capability-layout,
  .about-layout,
  .contact-cta__grid,
  .catalog-hero__grid,
  .catalog-help__grid { grid-template-columns: 1fr; }
  .spec-visual { min-height: 480px; }
  .spec-visual img { height: 480px; }
  .about-emblem { width: min(330px, 80vw); }
  .contact-cta__actions { justify-content: flex-start; }
  .catalog-hero__grid { gap: 40px; padding-block: 54px 68px; }
  .catalog-hero__aside { max-width: 500px; }
  .catalog-intro { display: block; }
  .catalog-intro > p { margin-top: 16px; }
  .catalog-help__grid { gap: 30px; }
  .catalog-help__grid > div:last-child { justify-self: start; }
  .configurator__shell { grid-template-columns: 1fr; }
  .configurator__visual { min-height: 310px; padding: 30px; }
  .configurator__preview { min-height: 260px; }
  .configurator__preview .shade-art { transform: scale(1.05); }
  .configurator__form { padding-top: 38px; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1240px); }
  .topbar { display: none; }
  .brand { min-width: auto; }
  .brand__mark { width: 55px; }
  .brand strong { font-size: .92rem; }
  .brand small { font-size: .59rem; }
  .hero__grid { padding-block: 54px; }
  .hero h1 { font-size: clamp(2.55rem, 11.5vw, 3.4rem); line-height: 1.03; }
  .hero h1 em { display: inline; }
  .hero__lead { margin-top: 22px; font-size: .94rem; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; gap: 8px; }
  .hero-carousel { min-height: 430px; border-radius: 24px; }
  .hero-slide figcaption { right: 20px; bottom: 72px; left: 20px; }
  .hero-slide figcaption b { font-size: 1.35rem; }
  .hero-slide figcaption span { font-size: .7rem; }
  .hero-carousel__bar { right: 17px; left: 20px; }
  .metrics article { min-height: 96px; padding: 18px; }
  .metrics strong { font-size: 1.7rem; }
  .metrics span { font-size: .66rem; }
  .section { padding-block: 78px; }
  .section-heading h2,
  .section h2,
  .contact-cta h2,
  .catalog-help h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .showcase-card { flex-basis: 82vw; }
  .shade-stage { height: 280px; }
  .carousel-footer p { display: none; }
  .carousel-footer { justify-content: flex-end; }
  .capability-layout { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .feature-list li { grid-template-columns: 42px 1fr; gap: 14px; }
  .spec-visual { min-height: 380px; border-radius: 24px; }
  .spec-visual img { height: 380px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 235px; }
  .process-grid h3 { margin-top: 54px; }
  .about-layout { gap: 42px; }
  .contact-cta__grid { gap: 34px; }
  .contact-cta__actions .button { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { display: block; }
  .footer__bottom span { display: block; margin-top: 5px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .catalog-hero__grid { min-height: auto; padding-block: 45px 64px; }
  .breadcrumb { margin-bottom: 36px; }
  .catalog-hero h1 { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .catalog-hero__aside strong { font-size: 3.6rem; }
  .catalog-section { padding-block: 70px 90px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; padding: 10px; border-radius: 18px; }
  .filter-group { display: grid; grid-template-columns: repeat(2, 1fr); }
  .filter-button:first-child { grid-column: 1 / -1; }
  .filter-button { min-height: 42px; padding: 8px 10px; font-size: .66rem; }
  .search-field { width: 100%; }
  .catalog-status { font-size: .65rem; }
  .catalog-grid { grid-template-columns: 1fr; }
  .model-card { display: grid; grid-template-columns: 42% 58%; min-height: 180px; }
  .model-card[hidden] { display: none; }
  .model-card__visual { height: 100%; min-height: 180px; }
  .model-card__visual::before { top: 11px; left: 11px; font-size: 1.8rem; }
  .model-card__visual .shade-art { transform: scale(.62); }
  .model-card__body { display: flex; flex-direction: column; justify-content: center; padding: 16px; }
  .model-card__body strong { font-size: 1.18rem; }
  .configurator { width: 100%; max-width: none; max-height: 100dvh; margin: 0; border-radius: 0; }
  .configurator__visual { min-height: 250px; }
  .configurator__preview { min-height: 205px; }
  .configurator__preview .shade-art { transform: scale(.85); }
  .configurator__form { padding: 34px 20px 30px; }
  .dialog-close { position: fixed; top: 12px; right: 12px; }
  .color-options { grid-template-columns: repeat(2, 1fr); }
  .color-options label:last-child { grid-column: 1 / -1; }
  .config-summary dl { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
  .reveal-ready .media-reveal img { filter: none; transform: none; }
  .hero-slide.is-active img { transform: none; }
}


/* Center V2 - revisão de catálogo e interações */
.metrics strong {
  max-width: 230px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.08;
}

.metrics span {
  max-width: 230px;
  line-height: 1.35;
}

.product-track {
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.hero-carousel { touch-action: pan-y pinch-zoom; }

.product-track:active { cursor: grabbing; }

.catalog-page main,
.catalog-page section,
.catalog-page .container { min-width: 0; }

.catalog-hero__aside {
  display: block;
  overflow: hidden;
}

.catalog-hero__aside .catalog-hero__kicker {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.catalog-hero__aside > strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: .98;
}

.catalog-hero__aside > p:not(.catalog-hero__kicker) {
  margin: 20px 0 22px;
  color: #cbbbab;
  font-size: .82rem;
}

.catalog-hero__aside > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-size: .76rem;
  font-weight: 850;
}

.measure-guide {
  padding-block: clamp(78px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.measure-guide__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.measure-guide h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.1vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.04;
}

.measure-guide__copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.measure-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.measure-legend div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.measure-legend dt {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--serif);
}

.measure-legend dd {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
}

.measure-guide__note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.58);
  font-size: .82rem;
}

.measure-diagram {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 38px 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.9), transparent 42%),
    #ddd0bd;
  box-shadow: var(--shadow-sm);
}

.measure-diagram__canvas {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1.28;
  margin: auto;
}

.measure-diagram__shade {
  position: absolute;
  top: 25%;
  right: 19%;
  bottom: 18%;
  left: 19%;
  filter: drop-shadow(0 22px 17px rgba(52,34,21,.22));
}

.measure-diagram__shade::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(29% 0, 71% 0, 100% 100%, 0 100%);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 1px, rgba(75,49,30,.04) 1px 4px),
    linear-gradient(135deg, #ddc8aa, #b89568);
  box-shadow: inset 0 -12px 22px rgba(60,39,24,.12);
}

.measure-diagram__shade::after {
  content: "";
  position: absolute;
  right: -1%;
  bottom: -4px;
  left: -1%;
  height: 11px;
  border: 2px solid rgba(56,36,24,.42);
  border-radius: 50%;
  background: rgba(124,83,49,.18);
}

.measure-diagram__shade span {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: 29%;
  width: 42%;
  height: 11px;
  border: 2px solid rgba(56,36,24,.46);
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.measure-axis {
  position: absolute;
  z-index: 2;
  display: block;
  border-color: var(--ink);
  color: var(--ink);
}

.measure-axis::before,
.measure-axis::after {
  content: "";
  position: absolute;
  border-color: inherit;
}

.measure-axis b {
  position: absolute;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--serif);
  font-size: .86rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(36,24,18,.18);
}

.measure-axis--top,
.measure-axis--bottom {
  height: 0;
  border-top: 2px solid;
}

.measure-axis--top::before,
.measure-axis--top::after,
.measure-axis--bottom::before,
.measure-axis--bottom::after {
  top: -6px;
  height: 12px;
  border-left: 2px solid;
}

.measure-axis--top::before,
.measure-axis--bottom::before { left: 0; }

.measure-axis--top::after,
.measure-axis--bottom::after { right: 0; }

.measure-axis--top {
  top: 15%;
  left: 36%;
  width: 28%;
}

.measure-axis--top b,
.measure-axis--bottom b { top: -15px; left: 50%; transform: translateX(-50%); }

.measure-axis--bottom {
  right: 14%;
  bottom: 9%;
  left: 14%;
}

.measure-axis--height {
  top: 20%;
  right: 7%;
  height: 68%;
  border-right: 2px solid;
}

.measure-axis--height::before,
.measure-axis--height::after {
  right: -6px;
  width: 12px;
  border-top: 2px solid;
}

.measure-axis--height::before { top: 0; }
.measure-axis--height::after { bottom: 0; }
.measure-axis--height b { top: 50%; right: -15px; transform: translateY(-50%); }

.measure-diagram figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

.catalog-section {
  padding-block: clamp(82px, 8vw, 120px);
}

.catalog-toolbar {
  align-items: center;
}

.filter-group {
  flex-wrap: nowrap;
  max-width: 100%;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 22px;
}

.model-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
}

.model-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--selected-color, var(--gold));
  transition: background-color .25s ease;
}

.model-card__main {
  width: 100%;
  min-width: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.model-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #e9e1d7;
}

.model-card__media::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: var(--selected-color, var(--gold));
  box-shadow: 0 3px 10px rgba(30,19,12,.2);
}

.model-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.model-card__provisional,
.model-card__ref {
  position: absolute;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.model-card__provisional {
  right: 12px;
  top: 12px;
  background: rgba(34,23,17,.72);
  color: var(--white);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.model-card__ref {
  left: 12px;
  bottom: 12px;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font-family: var(--serif);
  font-size: .9rem;
}

.model-card__body {
  display: block;
  padding: 20px 20px 18px;
}

.model-card__eyebrow {
  display: block;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.model-card__body strong {
  display: block;
  margin: 8px 0 3px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.model-card__body strong small {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-card__order {
  display: block;
  color: var(--muted);
  font-size: .64rem;
}

.model-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .73rem;
  font-weight: 850;
}

.model-card__link span { color: var(--gold); }

.quick-config {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.quick-config summary {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.quick-config summary::-webkit-details-marker { display: none; }

.quick-config summary span {
  font-size: 1.15rem;
  transition: transform .2s ease;
}

.quick-config[open] summary span { transform: rotate(45deg); }

.quick-config__panel {
  padding: 4px 18px 18px;
}

.quick-config label,
.select-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quick-config label > span,
.select-field > span,
.custom-measures label > span {
  color: var(--muted);
  font-size: .63rem;
  font-weight: 800;
}

.quick-config select,
.select-field select,
.custom-measures input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 9px 34px 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background-color: #faf8f4;
  color: var(--ink);
  font-size: .72rem;
}

.quick-config select:focus,
.select-field select:focus,
.custom-measures input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183,122,45,.12);
}

.quick-config select:disabled {
  opacity: .58;
  cursor: not-allowed;
}

.quick-config__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.quick-config__status {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0;
  color: var(--muted);
}

.quick-config__status span {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(36,24,18,.18);
  border-radius: 50%;
}

.quick-config__status b {
  min-width: 0;
  font-size: .65rem;
  overflow-wrap: anywhere;
}

.builder-section {
  padding-block: clamp(82px, 9vw, 128px);
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 10%, rgba(183,122,45,.16), transparent 30%),
    var(--brown-deep);
  color: var(--white);
}

.builder-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}

.builder-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -.024em;
  line-height: 1.02;
}

.builder-heading > p {
  max-width: 560px;
  margin: 0;
  color: #c7b7a8;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(340px, .76fr) minmax(0, 1.24fr);
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

.product-preview {
  min-width: 0;
  background: #ded3c5;
}

.product-preview--page {
  position: sticky;
  top: 110px;
  padding: 32px;
}

.product-preview--dialog {
  min-height: 100%;
  padding: 32px;
}

.product-preview__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: #cfc3b5;
  box-shadow: var(--shadow-sm);
}

.product-preview__media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: var(--selected-color, #b9925e);
  transition: background-color .25s ease;
}

.product-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity .2s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}

.product-preview__media > span {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(33,22,16,.72);
  color: var(--white);
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-preview__meta {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.product-preview__meta span {
  min-width: 0;
  font-size: .73rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.product-preview__meta span:last-child {
  color: var(--muted);
  text-align: right;
}

.product-preview > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .66rem;
}

.configurator-host {
  min-width: 0;
  background: var(--white);
  color: var(--ink);
}

.configuration-form {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
}

.configuration-form__heading {
  margin-bottom: 30px;
}

.configuration-form__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.04;
}

.configuration-form__heading > p:last-child {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.config-step {
  min-width: 0;
  margin: 0;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.config-step legend {
  margin-bottom: 16px;
  padding: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
}

.config-step legend span,
.config-summary > p span {
  margin-right: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.segmented-options,
.measure-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.segmented-options label,
.measure-mode label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.segmented-options input,
.measure-mode input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-options label > span,
.measure-mode label > span {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf8f4;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.measure-mode label > span {
  min-height: 50px;
  align-items: center;
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
}

.segmented-options b {
  font-size: .76rem;
}

.segmented-options small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .63rem;
}

.segmented-options input:checked + span,
.measure-mode input:checked + span {
  border-color: var(--gold);
  background: #fffaf1;
  box-shadow: 0 0 0 2px rgba(183,122,45,.13);
}

.segmented-options input:focus-visible + span,
.measure-mode input:focus-visible + span {
  outline: 3px solid #2878b7;
  outline-offset: 2px;
}

.material-note,
.field-help {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: .66rem;
}

.juta-color {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(183,122,45,.34);
  border-radius: 12px;
  background:
    repeating-linear-gradient(95deg, rgba(117,80,41,.04) 0 1px, transparent 1px 4px),
    #f7eee1;
  font-size: .74rem;
}

.color-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.color-options label > b {
  min-width: 0;
  overflow-wrap: anywhere;
}

.swatch--preto { background: #292827; }
.swatch--branco { background: #f8f6f0; }
.swatch--bege { background: #cbb797; }
.swatch--offwhite { background: #ece6d8; }
.swatch--gelo { background: #dce1df; }
.swatch--cinza { background: #8d8d8b; }
.swatch--colorido { background: conic-gradient(#9e443a, #c4973c, #467762, #3b6983, #9e443a); }
.swatch--natural-juta { background: #b9925e; }

.select-field {
  width: 100%;
}

.custom-format-field,
.custom-color-field {
  margin-top: 12px;
  margin-bottom: 0;
}

.measure-mode {
  margin-bottom: 13px;
}

.custom-measures {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.custom-measures:not([hidden]) { display: grid; }

.custom-measures label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-measures small { font-weight: 650; }

.config-step .form-field:last-child { margin-bottom: 0; }

.config-summary {
  margin: 22px 0 18px;
  padding: 20px;
}

.config-summary > p {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.config-summary dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.config-summary dl div {
  min-width: 0;
  padding-bottom: 5px;
}

.config-summary dt,
.config-summary dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

.config-summary .summary-observations {
  grid-column: 1 / -1;
}

.viability-notice {
  margin: 0 0 15px;
  padding: 14px 16px;
  border: 1px solid #dbc18e;
  border-radius: 12px;
  background: #fff8e9;
  color: #63481f;
  font-size: .7rem;
  line-height: 1.5;
}

.configurator {
  width: min(1180px, calc(100% - 30px));
}

.configurator__shell {
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
}

.configurator-host--dialog {
  min-height: 650px;
}

@media (hover: hover) {
  .model-card:hover .model-card__media img,
  .model-card__main:hover .model-card__media img {
    transform: scale(1.035);
  }

  .model-card__main:hover .model-card__link {
    color: var(--gold);
  }

  .catalog-hero__aside > a:hover {
    color: var(--white);
  }
}

@media (max-width: 1100px) {
  .measure-guide__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr);
    gap: 48px;
  }

  .builder-layout {
    grid-template-columns: minmax(310px, .68fr) minmax(0, 1.32fr);
  }

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

@media (max-width: 900px) {
  .measure-guide__grid,
  .builder-layout {
    grid-template-columns: 1fr;
  }

  .measure-diagram {
    min-height: 390px;
  }

  .product-preview--page {
    position: static;
  }

  .builder-heading {
    display: block;
  }

  .builder-heading > p {
    margin-top: 18px;
  }

  .configurator__shell {
    grid-template-columns: 1fr;
  }

  .product-preview--dialog {
    min-height: 0;
  }

  .product-preview--dialog .product-preview__media {
    max-height: 330px;
  }

  .product-preview--dialog .product-preview__media img {
    object-position: center 44%;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 32px, 1240px);
  }

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

  .metrics article,
  .metrics article:first-child,
  .metrics article:nth-child(3) {
    min-height: 94px;
    padding: 16px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .metrics article:nth-child(even) { border-left: 0; }
  .metrics article:nth-last-child(-n+2) { border-bottom: 0; }

  .catalog-hero__aside {
    padding: 22px;
  }

  .measure-guide {
    padding-block: 68px;
  }

  .measure-guide h2 {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
    overflow-wrap: anywhere;
  }

  .measure-guide__grid {
    gap: 38px;
  }

  .measure-legend {
    display: grid;
    grid-template-columns: 1fr;
  }

  .measure-legend div {
    width: 100%;
  }

  .measure-diagram {
    min-height: 330px;
    padding: 30px 18px;
    border-radius: 24px;
  }

  .measure-diagram__canvas {
    width: 100%;
    aspect-ratio: 1.18;
  }

  .catalog-intro > p {
    font-size: .82rem;
  }

  .catalog-toolbar {
    gap: 10px;
    padding: 10px;
  }

  .filter-group {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

  .filter-button,
  .filter-button:first-child {
    min-height: 42px;
    grid-column: auto;
    flex: 0 0 auto;
    padding-inline: 13px;
    font-size: .66rem;
  }

  .catalog-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

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

  .model-card {
    display: flex;
    min-height: 0;
  }

  .model-card__main {
    display: block;
    min-height: 0;
  }

  .model-card__media {
    min-height: 0;
    height: auto;
  }

  .model-card__body {
    padding: 18px;
  }

  .model-card__body strong {
    font-size: 1.5rem;
  }

  .quick-config__row {
    grid-template-columns: 1fr;
  }

  .builder-section {
    padding-block: 72px;
  }

  .builder-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .builder-layout {
    border-radius: 22px;
  }

  .product-preview--page {
    padding: 18px;
  }

  .configuration-form {
    padding: 28px 18px;
  }

  .configuration-form__heading h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .config-step {
    padding-block: 21px;
  }

  .segmented-options,
  .measure-mode {
    grid-template-columns: 1fr;
  }

  .segmented-options label > span,
  .measure-mode label > span {
    min-height: 52px;
  }

  .color-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-measures:not([hidden]) {
    grid-template-columns: 1fr;
  }

  .config-summary dl {
    grid-template-columns: 1fr;
  }

  .config-summary .summary-observations {
    grid-column: auto;
  }

  .configurator {
    width: 100%;
    max-height: 96dvh;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .configurator__shell {
    display: block;
    min-height: 0;
  }

  .product-preview--dialog {
    padding: 16px;
  }

  .product-preview--dialog .product-preview__media {
    height: 190px;
    aspect-ratio: auto;
  }

  .product-preview--dialog > p {
    display: none;
  }

  .product-preview__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .product-preview__meta span:last-child {
    text-align: left;
  }

  .configurator-host--dialog {
    min-height: 0;
  }

  .dialog-close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 360px) {
  .catalog-hero h1 {
    font-size: 2.4rem;
  }

  .catalog-hero__aside > strong {
    font-size: 1.9rem;
  }

  .measure-guide h2 {
    font-size: 2.05rem;
  }

  .measure-diagram {
    min-height: 300px;
  }

  .measure-diagram__canvas {
    aspect-ratio: 1.12;
  }

  .model-card__body,
  .quick-config__panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .color-options label > b {
    min-height: 52px;
    padding-right: 4px;
    padding-left: 25px;
    font-size: .58rem;
  }

  .configuration-form {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .model-card__media img,
  .product-preview__media img,
  .quick-config summary span {
    transition: none;
  }

  .product-track {
    scroll-behavior: auto;
  }
}

.shade-stage--image {
  height: 350px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .42), transparent 58%),
    #e7dccf;
}

.shade-stage--image::before { display: none; }

.shade-stage--image::after {
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(26, 17, 12, .26));
  filter: none;
}

.shade-stage--image img {
  position: absolute;
  z-index: 0;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.shade-stage--image .visual-label { z-index: 2; }

@media (hover: hover) {
  .showcase-card:hover .shade-stage--image img {
    transform: none;
  }
}

@media (max-width: 700px) {
  .shade-stage--image {
    height: 320px;
  }

  .shade-stage--image img {
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }
}

.catalog-page .model-card__body strong small {
  text-transform: none;
}

.product-viewport {
  touch-action: pan-y pinch-zoom;
}

@media (max-width: 360px) {
  .model-card__main {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .model-card__media.model-card__media--pending::before {
    font-size: 2rem;
  }

  .reference-placeholder {
    left: 10px;
    transform: scale(.58);
  }

  .model-card__body {
    padding: 14px;
  }

  .model-card__body strong {
    font-size: 1.18rem;
  }
}

/* V5 refinement: balanced hero, production section and guided configurator */
.nav {
  gap: clamp(22px, 2.45vw, 38px);
}

.hero__grid {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.hero__content {
  max-width: 580px;
}

.hero h1 {
  max-width: 570px;
  font-size: clamp(2.7rem, 3.3vw, 3.85rem);
  letter-spacing: -.012em;
  line-height: 1.055;
}

.hero-slide--ambient img {
  object-position: 50% 46%;
}

.hero-slide--diamond {
  background: #f2eee8;
}

.hero-slide--diamond img {
  object-fit: contain;
  object-position: center;
}

.hero-slide--scene img {
  object-fit: cover;
}

.hero-slide--workshop img {
  object-position: 44% 50%;
}

.hero-slide--showroom img {
  object-position: 48% 50%;
}

.hero-slide--product {
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.9), transparent 36%),
    #e8dfd4;
}

.hero-slide--product::after {
  background: linear-gradient(180deg, transparent 55%, rgba(25, 16, 11, .84) 100%);
}

.hero-slide--product img {
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  padding: 24px 34px 112px;
}

.hero-slide--product.is-active img,
.reveal-ready .hero-carousel.media-reveal.is-visible .hero-slide--product.is-active img {
  transform: scale(1.018);
}

.spec-visual--ambient img {
  object-position: 50% center;
}

.process-grid li {
  min-height: 216px;
  padding: 27px 28px;
}

.process-grid h3 {
  margin: 32px 0 8px;
}

.about-layout {
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 7vw, 104px);
}

.about-production-media {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(216,173,105,.14), transparent 48%),
    var(--ink);
  box-shadow: var(--shadow-lg);
}

.about-production-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
}

.about-production-media::before,
.about-production-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-production-media::before {
  inset: 20px;
  border: 1px solid rgba(216,173,105,.25);
  border-radius: 20px;
}

.about-production-media::after {
  right: -54px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(216,173,105,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(216,173,105,.035);
}

.about-production-media__placeholder {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(34px, 5vw, 56px);
  color: var(--white);
}

.about-production-media__placeholder span {
  color: var(--gold-bright);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-production-media__placeholder strong {
  max-width: 300px;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}

.model-card {
  border: 1px solid rgba(64, 42, 28, .08);
  box-shadow: 0 14px 34px rgba(42, 27, 18, .055);
}

.model-card__media.model-card__media--pending {
  min-height: 176px;
  background:
    linear-gradient(rgba(124, 83, 46, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 83, 46, .055) 1px, transparent 1px),
    radial-gradient(circle at 76% 27%, rgba(255,255,255,.92), transparent 34%),
    #eee6da;
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.model-card__media {
  aspect-ratio: 16 / 9;
}

.model-card__media::after {
  display: none;
}

.model-card__media img {
  object-fit: cover;
}

.model-card__body {
  padding: 20px;
}

.model-card__link {
  margin-top: 15px;
  justify-content: flex-end;
  color: var(--gold);
  font-size: 1rem;
}

.builder-heading {
  margin-bottom: 34px;
}

.builder-layout {
  grid-template-columns: minmax(330px, .74fr) minmax(0, 1.26fr);
}

.product-preview--page,
.product-preview--dialog {
  padding: clamp(22px, 3vw, 34px);
}

.product-preview__media {
  aspect-ratio: 4 / 5;
  background: #d7ccbe;
}

.configuration-form {
  padding: clamp(26px, 3.6vw, 48px);
}

.configuration-form__heading {
  margin-bottom: 24px;
}

.configuration-form__heading h2 {
  font-size: clamp(1.9rem, 2.65vw, 2.85rem);
}

.config-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.config-progress::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: var(--line);
}

.config-progress li {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #91877f;
  text-align: center;
}

.config-progress li span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: .66rem;
  font-weight: 850;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.config-progress li b {
  max-width: 110px;
  font-size: .61rem;
  line-height: 1.2;
}

.config-progress li.is-current,
.config-progress li.is-complete {
  color: var(--ink);
}

.config-progress li.is-current span,
.config-progress li.is-complete span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.configuration-wizard [hidden] {
  display: none !important;
}

.config-panels {
  min-height: 478px;
}

.config-panel > fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.config-panel legend,
.config-summary__heading h3 {
  margin: 0 0 22px;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 550;
  line-height: 1.12;
}

.config-panel legend > span,
.config-summary__heading > span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.format-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.format-choice,
.material-options label,
.measure-mode label,
.color-choice {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.format-choice > input,
.material-options input,
.measure-mode input,
.color-choice > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.format-choice__card {
  min-height: 76px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 7px 12px 7px 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #faf8f4;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.format-choice__card img {
  width: 66px;
  height: 62px;
  display: block;
  border-radius: 10px;
  background: #e8dfd4;
  object-fit: contain;
}

.format-choice__card b {
  min-width: 0;
  font-size: .69rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.format-choice input:checked + .format-choice__card,
.material-options input:checked + span,
.measure-mode input:checked + span,
.color-choice input:checked + span {
  border-color: var(--gold);
  background: #fffaf1;
  box-shadow: 0 0 0 2px rgba(183,122,45,.14);
}

.format-choice input:focus-visible + .format-choice__card,
.material-options input:focus-visible + span,
.measure-mode input:focus-visible + span,
.color-choice input:focus-visible + span {
  outline: 3px solid #2878b7;
  outline-offset: 2px;
}

.material-options,
.measure-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.material-options label > span,
.measure-mode label > span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #faf8f4;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.material-options b,
.measure-mode b {
  font-size: .76rem;
}

.material-options small,
.measure-mode small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.3;
}

.material-note {
  margin: 13px 0;
}

.juta-color {
  position: relative;
  padding-left: 42px;
}

.juta-color .color-swatch {
  left: 14px;
}

.color-options:not([hidden]) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.color-choice > span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.color-choice .color-swatch {
  position: static;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  transform: none;
}

.color-choice b {
  min-width: 0;
  font-size: .61rem;
  overflow-wrap: anywhere;
}

.custom-format-field,
.custom-color-field,
.observations-field {
  margin: 14px 0 0;
}

.measure-mode {
  margin-bottom: 15px;
}

.measure-mode label > span {
  align-items: flex-start;
  text-align: left;
}

.field-help {
  margin-top: 12px;
}

.measure-help__toggle {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  margin-left: 5px;
  padding: 0;
  transform: translateY(-1px);
  border: 1px solid rgba(183,122,45,.55);
  border-radius: 50%;
  background: #fffaf1;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .86rem;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.measure-help__toggle:hover,
.measure-help__toggle[aria-expanded="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.measure-help__toggle:focus-visible,
.measure-help__header button:focus-visible {
  outline: 3px solid #2878b7;
  outline-offset: 2px;
}

.measure-help {
  margin: -8px 0 16px;
  padding: 15px 16px;
  border: 1px solid #dbc18e;
  border-radius: 13px;
  background: #fffaf1;
  color: var(--ink);
  font-family: var(--sans);
  box-shadow: 0 10px 24px rgba(69,44,25,.08);
}

.measure-help__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.measure-help__header strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.measure-help__header button {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(183,122,45,.12);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.measure-help dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.measure-help dl div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
}

.measure-help dt {
  color: var(--ink);
  font-size: .68rem;
  font-weight: 850;
}

.measure-help dd,
.measure-help > p {
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.45;
}

.measure-help > p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(183,122,45,.22);
  font-weight: 750;
}

.config-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-left: 3px solid #a94435;
  border-radius: 6px;
  background: #fff1ee;
  color: #7b2c21;
  font-size: .7rem;
}

.configuration-wizard [aria-invalid="true"] {
  border-color: #a94435 !important;
  box-shadow: 0 0 0 3px rgba(169,68,53,.12) !important;
}

.config-summary {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.config-summary__heading h3 {
  margin-top: 0;
  color: var(--ink);
}

.config-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.config-summary dl div {
  min-width: 0;
  padding: 14px 15px;
  background: var(--white);
}

.config-summary dt {
  color: var(--muted);
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.config-summary dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 750;
  line-height: 1.35;
}

.config-summary .summary-observations {
  grid-column: 1 / -1;
}

.config-summary .viability-notice {
  margin: 16px 0 0;
  color: #63481f;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  text-transform: none;
}

.config-navigation {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.config-navigation > span {
  color: var(--muted);
  font-size: .64rem;
  font-weight: 800;
  text-align: center;
}

.config-navigation .button {
  min-height: 47px;
}

.button--secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.config-navigation [data-step-submit] {
  grid-column: 3;
}

.configurator__shell {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
}

.configurator-host--dialog {
  min-height: 680px;
}

@media (hover: hover) {
  .format-choice:hover .format-choice__card {
    border-color: rgba(183,122,45,.5);
    transform: translateY(-1px);
  }

  .model-card:hover {
    box-shadow: 0 20px 48px rgba(42,27,18,.1);
  }
}

@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 660px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.75rem, 6vw, 3.7rem);
  }

  .hero-carousel {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .about-layout {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 44px;
  }

  .builder-layout,
  .configurator__shell {
    grid-template-columns: minmax(270px, .64fr) minmax(0, 1.36fr);
  }
}

@media (max-width: 820px) {
  .about-layout,
  .builder-layout,
  .configurator__shell {
    grid-template-columns: 1fr;
  }

  .about-production-media {
    width: min(580px, 100%);
  }

  .product-preview--page,
  .product-preview--dialog {
    position: static;
    min-height: 0;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .product-preview__media {
    width: 150px;
    aspect-ratio: 1;
  }

  .product-preview__meta {
    flex-direction: column;
    margin: 0;
  }

  .product-preview__meta span:last-child {
    text-align: left;
  }

  .configurator-host--dialog {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    max-width: 520px;
    font-size: clamp(2.35rem, 10.7vw, 3rem);
    line-height: 1.06;
  }

  .hero h1 em {
    display: inline;
  }

  .hero-carousel {
    aspect-ratio: 4 / 3;
  }

  .hero-slide--product img {
    padding: 20px 20px 105px;
  }

  .hero-slide--workshop img {
    object-position: 42% 50%;
  }

  .hero-slide--showroom img {
    object-position: 46% 50%;
  }

  .model-card__main {
    display: block;
    min-height: 0;
  }

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

  .model-card {
    border-radius: 17px;
  }

  .model-card__media,
  .model-card__media.model-card__media--pending {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .model-card__media img {
    image-rendering: auto;
  }

  .model-card__body {
    padding: 11px 12px 12px;
  }

  .model-card__eyebrow {
    font-size: .58rem;
  }

  .model-card__body strong {
    margin: 5px 0 2px;
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.15;
  }

  .model-card__order {
    font-size: .55rem;
    line-height: 1.35;
  }

  .model-card__link {
    min-height: 22px;
    margin-top: 8px;
    padding-top: 6px;
    font-size: .95rem;
  }

  .process-grid li {
    min-height: 0;
    padding: 24px;
  }

  .process-grid h3 {
    margin-top: 24px;
  }

  .about-production-media {
    border-radius: 24px;
  }

  .format-options {
    grid-template-columns: 1fr;
  }

  .config-panels {
    min-height: 0;
  }

  .config-navigation {
    grid-template-columns: 1fr 1fr;
  }

  .config-navigation > span {
    grid-row: 1;
    grid-column: 1 / -1;
  }

  .config-navigation .button {
    width: 100%;
  }

  .config-navigation [data-step-submit] {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(2.2rem, 10.4vw, 2.65rem);
  }

  .product-preview--page,
  .product-preview--dialog {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .product-preview__media {
    width: 104px;
  }

  .configuration-form {
    padding: 22px 16px;
  }

  .config-progress {
    margin-bottom: 25px;
  }

  .config-progress li b {
    font-size: .55rem;
  }

  .material-options,
  .measure-mode,
  .custom-measures,
  .config-summary dl {
    grid-template-columns: 1fr;
  }

  .color-options:not([hidden]) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .config-summary .summary-observations {
    grid-column: auto;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 2.08rem;
  }

  .config-progress li b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .config-progress {
    margin-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide--product.is-active img,
  .reveal-ready .hero-carousel.media-reveal.is-visible .hero-slide--product.is-active img,
  .format-choice__card {
    transform: none;
    transition: none;
  }
}

/* Mobile spacing and the same continuous collection engine at every width. */
@media (max-width: 700px) {
  .hero__grid { padding-block: 42px; gap: 34px; }
  .hero__actions { margin-block: 26px 24px; }
  #capacidade { padding-block: 66px; }
  #capacidade .capability-layout { gap: 34px; }
  #capacidade .feature-list { margin-top: 32px; }
  #capacidade .feature-list li { padding-block: 18px; }

  .carousel-shell { display: flex; flex-direction: column; }
  .carousel-footer { order: -1; margin-bottom: 8px; }
  .carousel-footer .icon-button { width: 38px; height: 38px; font-size: 1rem; }

  .product-viewport {
    --mobile-carousel-card: min(72vw, 290px);
    padding: 8px 0 18px;
  }

  .product-track__set {
    gap: 14px;
    padding-right: 14px;
  }

  .product-track__set .showcase-card,
  .product-track__set .showcase-card--wide {
    flex: 0 0 var(--mobile-carousel-card);
  }

  .shade-stage--image { height: clamp(190px, 52vw, 220px); }
  .shade-stage--image img {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .showcase-card__body { padding: 16px 17px 18px; }
  .showcase-card__body > span { font-size: .63rem; }
  .showcase-card__body strong {
    margin: 5px 0 12px;
    font-size: 1.32rem;
  }
  .showcase-card__body small { padding-top: 11px; }

  /* More compact catalog introduction on phones. */
  .catalog-hero__grid {
    gap: 24px;
    padding-block: 30px 38px;
  }

  .breadcrumb { margin-bottom: 20px; }

  .catalog-hero__grid > div:first-child > p:last-child {
    margin-top: 16px;
    font-size: .86rem;
    line-height: 1.5;
  }

  .catalog-hero__aside {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .catalog-hero__aside .catalog-hero__kicker { margin-bottom: 7px; }
  .catalog-hero__aside > strong {
    font-size: 1.55rem;
    line-height: 1.05;
  }
  .catalog-hero__aside > p:not(.catalog-hero__kicker) {
    margin: 8px 0 10px;
    font-size: .72rem;
    line-height: 1.45;
  }
  .catalog-hero__aside > a { font-size: .72rem; }

  .builder-section { padding-block: 56px; }

  /* Keep the format picker compact enough to avoid a very long first step. */
  .format-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .format-choice__card {
    min-height: 66px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px;
    padding: 6px 8px 6px 6px;
  }

  .format-choice__card img {
    width: 52px;
    height: 50px;
  }

  .format-choice__card b {
    font-size: .67rem;
    line-height: 1.18;
  }

  /* Smaller floating action so it does not cover catalog cards. */
  .floating-whatsapp {
    right: 11px;
    bottom: 11px;
    width: 46px;
    height: 46px;
  }
  .floating-whatsapp svg { width: 23px; height: 23px; }
}

@media (max-width: 350px) {
  .format-options { grid-template-columns: 1fr; }
}
