:root {
  --bg: #0d0f0e;
  --bg-deep: #080908;
  --surface: #171a18;
  --surface-2: #1d211e;
  --surface-3: #242923;
  --text: #f4f3ee;
  --muted: #b8bbb4;
  --gold: #c8a85b;
  --gold-light: #e3c77e;
  --olive: #697557;
  --blue: #1d9ee8;
  --red: #e3423d;
  --yellow: #f0d000;
  --line: rgba(255, 255, 255, 0.11);
  --line-gold: rgba(200, 168, 91, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-sm: 13px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--gold); color: #111; }

.site-container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.narrow { width: min(820px, 100%); }
.section { padding: 96px 0; }
.section--compact { padding-top: 60px; }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.section--lifted { position: relative; z-index: 3; margin-top: -52px; padding-top: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 7vw, 6rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 4rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1.2em; }
.lead, .hero__lead { color: #d7d8d2; font-size: clamp(1.08rem, 2vw, 1.3rem); max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 42px;
}
.section-heading > p { max-width: 560px; color: var(--muted); margin-bottom: 4px; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 820;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button--primary { background: var(--gold); color: #111; }
.button--primary:hover { background: var(--gold-light); }
.button--secondary { background: rgba(255, 255, 255, 0.07); border-color: var(--line); color: #fff; }
.button--secondary:hover { background: rgba(255, 255, 255, 0.11); }
.button--outline { background: transparent; border-color: var(--line-gold); color: var(--gold-light); }
.button--whatsapp { background: #1f8f4d; color: #fff; width: 100%; margin-top: 14px; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-light); font-weight: 820; }
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }

.topbar { height: 38px; display: flex; align-items: center; background: var(--bg-deep); border-bottom: 1px solid var(--line); color: #cfd1ca; font-size: 0.78rem; }
.topbar__inner { display: flex; justify-content: center; gap: 28px; white-space: nowrap; overflow: hidden; }
.topbar span { display: flex; align-items: center; gap: 7px; }
.topbar svg { width: 16px; height: 16px; color: var(--gold); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13, 15, 14, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header__inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-branding .custom-logo-link { display: block; }
.site-branding .custom-logo { width: 174px; height: auto; filter: invert(1); }
.desktop-navigation { display: flex; align-items: center; gap: 8px; }
.menu { display: flex; align-items: center; gap: 3px; margin: 0; padding: 0; list-style: none; }
.menu a { display: block; padding: 10px 11px; border-radius: 10px; color: #c8cbc4; font-size: 0.91rem; font-weight: 760; }
.menu a:hover, .menu .current-menu-item > a, .menu .current_page_item > a { background: rgba(255,255,255,.07); color: #fff; }
.header-cta { margin-left: 7px; min-height: 46px; padding-inline: 17px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.06); color: #fff; place-items: center; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 4px auto; background: currentColor; border-radius: 99px; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-navigation { display: none; border-top: 1px solid var(--line); max-height: calc(100svh - 114px); overflow-y: auto; }
.mobile-navigation.is-open { display: block; }
.mobile-navigation .site-container { padding: 12px 0 20px; }
.mobile-navigation .menu { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.mobile-navigation .menu a { background: rgba(255,255,255,.05); padding: 13px; }
.mobile-navigation__cta { width: 100%; margin-top: 10px; }

.hero { position: relative; min-height: calc(100svh - 114px); display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(6,7,6,.98) 0%, rgba(6,7,6,.84) 43%, rgba(6,7,6,.25) 74%), linear-gradient(0deg, var(--bg) 0%, transparent 32%, rgba(0,0,0,.25) 100%); }
.hero__content { padding: 88px 0 104px; }
.hero__content h1 { max-width: 870px; }
.hero__lead { margin: 25px 0 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(8,9,8,.64); color: #e7e8e2; font-size: .85rem; backdrop-filter: blur(10px); }
.hero-trust svg { width: 17px; color: var(--gold); }

.quick-links__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 19px; }
.feature-card { position: relative; min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(31,35,31,.98), rgba(16,19,17,.98)); overflow: hidden; box-shadow: var(--shadow); }
.feature-card--wide { display: flex; flex-direction: column; justify-content: space-between; }
.feature-card--wide::after { content: ""; position: absolute; right: -100px; bottom: -150px; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,91,.2), transparent 67%); }
.feature-card h2 { font-size: clamp(1.65rem, 3.2vw, 2.55rem); max-width: 650px; margin-bottom: 14px; }
.feature-card p { max-width: 610px; color: var(--muted); }
.feature-card--image { padding: 0; }
.feature-card--image img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 28px; background: linear-gradient(0deg, rgba(6,7,6,.95), rgba(6,7,6,.05) 75%); }
.feature-card__overlay h2 { color: #fff; }

.card-grid { display: grid; gap: 18px; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .benefit-card, .value-card { position: relative; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.service-card { min-height: 225px; }
.service-card::after { content: ""; position: absolute; top: -80px; right: -80px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,91,.11), transparent 67%); }
.service-card__number { display: block; color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .14em; margin-bottom: 44px; }
.service-card h3, .benefit-card h3, .value-card h3 { margin-bottom: 11px; }
.service-card p, .benefit-card p, .value-card p { margin: 0; color: var(--muted); }
.service-card--detail { min-height: 350px; }
.service-card--detail ul { margin: 23px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; color: #d6d7d1; }
.service-card--detail li { margin: 7px 0; }
.service-card--detail li::before { content: "✓"; margin-right: 8px; color: var(--gold); font-weight: 900; }
.icon-tile { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 14px; background: rgba(200,168,91,.13); color: var(--gold-light); font-weight: 900; }

.split-layout { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.split-layout--reverse .split-layout__content { order: 1; }
.split-layout--reverse > :last-child { order: 2; }
.split-layout__content h2 { margin-bottom: 22px; }
.split-layout__content .lead { margin-bottom: 24px; }
.image-button { position: relative; display: block; width: 100%; padding: 0; border: 0; border-radius: var(--radius-lg); background: #111; color: #fff; overflow: hidden; cursor: zoom-in; text-align: left; }
.image-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.image-button:hover img { transform: scale(1.018); }
.image-button > span { position: absolute; left: 16px; bottom: 16px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 11px; background: rgba(8,9,8,.78); font-size: .78rem; backdrop-filter: blur(8px); }
.split-layout__media .image-button { aspect-ratio: 4 / 3; border: 1px solid var(--line); box-shadow: var(--shadow); }
.check-list { margin: 22px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin: 11px 0; color: #d6d8d2; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(200,168,91,.14); color: var(--gold-light); font-size: .75rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; counter-reset: step; }
.process-step { position: relative; min-height: 230px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, var(--surface-2), var(--surface)); }
.process-step > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 45px; border-radius: 50%; border: 1px solid var(--line-gold); color: var(--gold-light); font-weight: 900; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { margin: 0; color: var(--muted); }
.local-section { padding: 72px 0; background: linear-gradient(115deg, rgba(200,168,91,.13), rgba(105,117,87,.12)); border-block: 1px solid var(--line-gold); }
.local-section__inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px; }
.local-section h2 { margin-bottom: 18px; }
.local-section p { color: #d5d7d0; max-width: 660px; }
.city-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.city-cloud span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.06); color: #e0e2dc; font-size: .85rem; }
.cta-section { padding-top: 50px; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: 42px; border: 1px solid var(--line-gold); border-radius: var(--radius-lg); background: radial-gradient(circle at 80% 20%, rgba(200,168,91,.16), transparent 35%), linear-gradient(145deg, #20241f, #131613); box-shadow: var(--shadow); }
.cta-card h2 { margin-bottom: 12px; }
.cta-card p { color: var(--muted); max-width: 710px; margin: 0; }
.cta-card .button { flex: 0 0 auto; }

.page-hero { padding: 104px 0 76px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 75% 25%, rgba(200,168,91,.14), transparent 30%), linear-gradient(145deg, #151815, #0d0f0e); }
.page-hero::after { content: ""; position: absolute; inset: auto -10% -40% 35%; height: 400px; background: linear-gradient(transparent 49%, rgba(255,255,255,.035) 50%), linear-gradient(90deg, transparent 49%, rgba(255,255,255,.035) 50%); background-size: 50px 50px; transform: perspective(450px) rotateX(58deg); mask-image: linear-gradient(to bottom, transparent, #000); pointer-events: none; }
.page-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 60px; position: relative; z-index: 1; }
.page-hero__narrow { position: relative; z-index: 1; }
.page-hero__narrow h1 { max-width: 950px; }
.page-hero .hero__lead { margin: 24px 0 28px; }
.print-visual { min-height: 410px; position: relative; display: grid; place-items: center; }
.print-grid { position: absolute; inset: 7% 3% 0; background: linear-gradient(rgba(200,168,91,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(200,168,91,.13) 1px, transparent 1px); background-size: 35px 35px; transform: perspective(600px) rotateX(61deg); mask-image: radial-gradient(ellipse, #000 20%, transparent 70%); }
.print-cube { width: 190px; height: 190px; position: relative; z-index: 2; transform: rotate(30deg) skewY(-10deg); border: 3px solid var(--gold); filter: drop-shadow(0 25px 25px rgba(0,0,0,.45)); }
.print-cube::before, .print-cube::after, .print-cube span { content: ""; position: absolute; border: 3px solid var(--gold); }
.print-cube::before { inset: 22px; }
.print-cube::after { left: 50%; top: -3px; height: calc(100% + 6px); }
.print-cube span:nth-child(1) { top: 50%; left: -3px; width: calc(100% + 6px); }
.print-cube span:nth-child(2) { inset: 50px; border-color: rgba(227,199,126,.7); }
.print-cube span:nth-child(3) { width: 18px; height: 18px; border-radius: 50%; left: calc(50% - 9px); top: calc(50% - 9px); background: var(--gold); }
.measurement-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-2); }
.measurement-card__part { position: relative; aspect-ratio: 4 / 2.6; margin-bottom: 25px; border: 3px solid var(--gold); border-radius: 28px 9px 28px 9px; background: linear-gradient(135deg, rgba(200,168,91,.1), rgba(200,168,91,.02)); }
.measure { position: absolute; padding: 3px 7px; background: var(--surface-2); color: var(--gold-light); font-size: .78rem; font-weight: 850; }
.measure--w { left: 50%; bottom: -14px; transform: translateX(-50%); }
.measure--h { right: -30px; top: 50%; transform: rotate(90deg); }
.hole { position: absolute; top: 50%; width: 30px; height: 30px; border-radius: 50%; border: 3px solid var(--gold); transform: translateY(-50%); }
.hole--1 { left: 20%; }.hole--2 { right: 20%; }
.measurement-card p { margin: 0; color: var(--muted); }
.material-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.material-grid article { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.material-grid strong { display: block; margin-bottom: 9px; color: var(--gold-light); font-size: 1.25rem; }
.material-grid span { color: var(--muted); }

.product-hero { padding: 76px 0 48px; background: radial-gradient(circle at 18% 15%, rgba(200,168,91,.12), transparent 30%); }
.product-hero__grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 48px; }
.product-hero__copy h1 { font-size: clamp(2.75rem, 6vw, 5.35rem); }
.product-hero__copy .hero__lead { margin: 24px 0; }
.product-note { margin: 24px 0; padding: 15px 16px; border: 1px solid var(--line-gold); border-radius: 14px; background: rgba(200,168,91,.08); color: #e4dcc7; }
.product-hero__image { aspect-ratio: 3 / 2; border: 1px solid var(--line); box-shadow: var(--shadow); }
.product-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.product-stats > div { padding: 18px 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); text-align: center; }
.product-stats strong { display: block; color: var(--gold-light); font-size: 1.6rem; line-height: 1.1; }
.product-stats span { display: block; margin-top: 7px; color: var(--muted); font-size: .77rem; }
.product-gallery { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.gallery-item { border: 1px solid var(--line); min-height: 420px; }
.gallery-item--poster { grid-row: span 2; min-height: 858px; }
.gallery-item--wide { aspect-ratio: 3 / 2; }
.marker-list { display: grid; gap: 12px; margin-top: 28px; }
.marker-list article { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.marker-list h3 { margin-bottom: 5px; }
.marker-list p { color: var(--muted); margin: 0; }
.marker-swatch { width: 42px; height: 42px; display: block; border: 4px solid #111; border-radius: 10px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.24); }
.marker-swatch--blue { background: var(--blue); clip-path: polygon(50% 0, 95% 22%, 95% 78%, 50% 100%, 5% 78%, 5% 22%); }
.marker-swatch--gray { background: #4c5151; clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%); }
.marker-swatch--red { background: var(--red); }
.marker-swatch--yellow { background: var(--yellow); height: 24px; margin-top: 8px; border-radius: 4px; }
.definition-card { padding: 30px; border: 1px solid var(--line-gold); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(200,168,91,.1), var(--surface)); }
.definition-card h3 { font-size: 1.7rem; margin-bottom: 20px; }
.definition-card dl { margin: 0; }
.definition-card dl > div { padding: 16px 0; border-top: 1px solid var(--line); }
.definition-card dt { color: var(--gold-light); font-weight: 900; font-size: 1.2rem; }
.definition-card dd { margin: 4px 0 0; color: var(--muted); }
.benefit-card { min-height: 210px; background: var(--surface-2); }

.faq-section h2 { margin-bottom: 30px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); overflow: hidden; }
.faq-list summary { position: relative; padding: 19px 56px 19px 20px; cursor: pointer; font-weight: 820; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.07); color: var(--gold-light); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 20px 20px; margin: 0; color: var(--muted); }

.reference-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.reference-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; }
.reference-card--large { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr .7fr; }
.reference-card .image-button { border-radius: 0; height: 100%; min-height: 340px; }
.reference-card__body { padding: 27px; }
.reference-card__body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 10px 0 13px; }
.reference-card__body p { margin: 0; color: var(--muted); }
.tag { display: inline-block; padding: 6px 9px; border-radius: 999px; background: rgba(200,168,91,.12); color: var(--gold-light); font-size: .75rem; font-weight: 850; }
.placeholder-visual { min-height: 300px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(200,168,91,.1), rgba(255,255,255,.025)); }
.placeholder-visual span { display: grid; place-items: center; width: 70px; height: 70px; border: 1px dashed var(--line-gold); border-radius: 50%; color: var(--gold-light); font-size: 2.2rem; }
.tip-card { padding: 32px; border: 1px solid var(--line-gold); border-radius: var(--radius-lg); background: rgba(200,168,91,.08); }
.tip-card h3 { margin-bottom: 12px; font-size: 1.8rem; }
.tip-card p { margin: 0; color: var(--muted); }

.about-logo-card { min-height: 390px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at center, rgba(200,168,91,.11), transparent 55%), var(--surface); }
.about-logo-card .custom-logo { width: min(420px, 90%); filter: invert(1); }
.about-logo-card span { color: var(--gold-light); letter-spacing: .19em; text-transform: uppercase; font-size: .8rem; }
.value-card { min-height: 230px; }
.value-card > span { display: block; margin-bottom: 45px; color: var(--gold); font-weight: 900; }

.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; align-items: start; }
.contact-sidebar { position: sticky; top: calc(var(--header-height) + 24px); display: grid; gap: 18px; }
.contact-card, .contact-hint, .request-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.contact-card { padding: 28px; }
.contact-card h2 { font-size: 2rem; margin-bottom: 22px; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { display: grid; gap: 3px; padding: 13px 0; border-top: 1px solid var(--line); }
.contact-list span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-list a, .contact-list strong { font-weight: 760; word-break: break-word; }
.contact-list a:hover { color: var(--gold-light); }
.contact-hint { padding: 24px; background: linear-gradient(145deg, rgba(200,168,91,.09), var(--surface)); }
.contact-hint h3 { margin-bottom: 8px; }
.contact-hint .check-list { margin-bottom: 0; }
.request-panel { padding: 32px; }
.request-panel h2 { margin-bottom: 24px; }
.request-form { display: grid; gap: 16px; }
.form-grid { display: grid; gap: 14px; }
.form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.request-form label { display: grid; gap: 7px; }
.request-form label > span { color: #e2e3dd; font-size: .87rem; font-weight: 760; }
.request-form input, .request-form select, .request-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: #101310; color: #fff; outline: none; padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.request-form input, .request-form select { min-height: 50px; }
.request-form textarea { resize: vertical; min-height: 160px; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,91,.13); }
.upload-field { position: relative; padding: 22px; border: 1px dashed rgba(200,168,91,.48); border-radius: 16px; background: rgba(200,168,91,.055); text-align: center; cursor: pointer; }
.upload-field input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload-field strong { display: inline-flex; align-items: center; justify-content: center; min-height: 43px; padding: 0 16px; border-radius: 12px; background: rgba(255,255,255,.08); }
.upload-field small { color: var(--muted); }
.selected-files { color: var(--gold-light); font-size: .82rem; font-style: normal; word-break: break-word; }
.privacy-hint { margin: 0; color: var(--muted); font-size: .78rem; }
.privacy-hint a { color: var(--gold-light); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 20px; padding: 14px 15px; border-radius: 13px; font-weight: 760; }
.form-alert--success { border: 1px solid rgba(62,181,103,.42); background: rgba(62,181,103,.12); color: #c8f1d5; }
.form-alert--error { border: 1px solid rgba(220,77,70,.42); background: rgba(220,77,70,.12); color: #ffd4d1; }

.editor-content .prose { width: min(820px, calc(100% - 40px)); }
.prose { color: #d8dad3; }
.prose h2, .prose h3, .prose h4 { color: #fff; margin: 1.5em 0 .65em; }
.prose h2 { font-size: clamp(2rem, 4vw, 3rem); }
.prose h3 { font-size: 1.55rem; }
.prose a { color: var(--gold-light); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose img, .featured-image img { border-radius: var(--radius); }
.post-grid { display: grid; gap: 22px; }
.post-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.post-card img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; border-radius: 14px; }
.post-card time { color: var(--gold-light); font-size: .78rem; }
.post-card h2 { font-size: 2rem; margin: 8px 0 13px; }
.post-card p { color: var(--muted); }

.site-footer { padding: 74px 0 25px; border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr 1fr .7fr; gap: 42px; }
.footer-brand .custom-logo { width: 200px; filter: invert(1); }
.footer-brand p { max-width: 360px; margin-top: 20px; color: var(--muted); }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { padding: 8px 11px; border: 1px solid var(--line); border-radius: 10px; color: #e2e3de; font-size: .82rem; }
.footer-title { margin-bottom: 18px; font-size: .92rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.footer-links { margin: 0; padding: 0; list-style: none; color: var(--muted); }
.footer-links li { margin: 10px 0; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); color: #888d85; font-size: .78rem; }
.bottom-navigation { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 70px 20px 20px; background: rgba(0,0,0,.92); backdrop-filter: blur(8px); }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1400px, 96vw); max-height: 88vh; border-radius: 14px; box-shadow: 0 25px 80px rgba(0,0,0,.6); }
.lightbox__close { position: fixed; top: 15px; right: 18px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }

@media (max-width: 1080px) {
  .desktop-navigation .menu { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .product-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  body { padding-bottom: 67px; }
  .site-container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .topbar { display: none; }
  .header__inner { height: var(--header-height); }
  .site-branding .custom-logo { width: 146px; }
  .hero { min-height: calc(100svh - var(--header-height)); }
  .hero__overlay { background: linear-gradient(0deg, rgba(6,7,6,.98) 0%, rgba(6,7,6,.77) 57%, rgba(6,7,6,.25) 100%); }
  .hero__media img { object-position: 66% center; }
  .hero__content { padding: 90px 0 80px; }
  .hero__content h1 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  .section--lifted { margin-top: -32px; }
  .quick-links__grid, .split-layout, .page-hero__grid, .product-hero__grid, .local-section__inner, .contact-layout { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; padding: 24px; }
  .feature-card--image { min-height: 350px; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: start; flex-direction: column; gap: 17px; }
  .split-layout { gap: 34px; }
  .split-layout--reverse .split-layout__content, .split-layout--reverse > :last-child { order: initial; }
  .page-hero { padding: 76px 0 60px; }
  .page-hero__visual { display: none; }
  .product-hero { padding-top: 52px; }
  .product-hero__image { order: -1; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item--poster { grid-row: auto; min-height: 0; aspect-ratio: auto; }
  .gallery-item--poster img { max-height: none; }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
  .reference-card--large { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: auto; }
  .bottom-navigation { position: fixed; left: 0; right: 0; bottom: 0; z-index: 500; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 67px; padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--line); background: rgba(10,12,10,.94); backdrop-filter: blur(16px); }
  .bottom-navigation a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #bfc2bb; font-size: .67rem; }
  .bottom-navigation a:hover { color: var(--gold-light); }
  .bottom-navigation svg { width: 21px; height: 21px; }
  .cta-card { align-items: flex-start; flex-direction: column; padding: 30px; }
  .cta-card .button { width: 100%; }
}

@media (max-width: 560px) {
  .site-container { width: min(var(--container), calc(100% - 22px)); }
  h2 { font-size: clamp(1.95rem, 10vw, 2.75rem); }
  .section { padding: 62px 0; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button-row .button { width: 100%; }
  .hero__content { padding-bottom: 68px; }
  .hero-trust { display: grid; grid-template-columns: 1fr; }
  .hero-trust span { width: fit-content; }
  .mobile-navigation .menu { grid-template-columns: 1fr; }
  .quick-links__grid, .card-grid--3, .card-grid--4, .process-grid, .material-grid, .reference-grid, .form-grid--2, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card__number { margin-bottom: 28px; }
  .process-step { min-height: auto; }
  .process-step > span { margin-bottom: 26px; }
  .product-stats { grid-template-columns: repeat(2, 1fr); }
  .product-hero__copy h1 { font-size: clamp(2.55rem, 13vw, 3.9rem); }
  .reference-card--large { grid-column: auto; }
  .request-panel, .contact-card { padding: 23px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .lightbox { padding-inline: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.reference-meta { margin-top: 15px !important; padding-top: 14px; border-top: 1px solid var(--line); color: var(--gold-light) !important; font-size: .9rem; font-weight: 700; }
.empty-reference-state { grid-column: 1 / -1; padding: 48px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
