:root {
  --brand-green: #10b14a;
  --brand-gray: #686868;
  --yellow: var(--brand-green);
  --yellow-light: #28cf62;
  --black: #080b09;
  --graphite: #1d1d1d;
  --white: #ffffff;
  --gray: #d9d9d9;
  --muted: #9d9d9d;
  --line: rgba(255, 255, 255, 0.13);
  --radius: 2px;
  --container: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.035;
  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='.7'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 128px 0; }
.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; left: 16px; top: -60px; z-index: 200;
  background: var(--yellow); color: var(--black); padding: 12px 18px; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(13, 13, 13, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 250ms ease, background 250ms ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(13, 13, 13, 0.96); }
.nav-shell { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0.14em; }
.brand-mark {
  display: grid; place-items: center; width: 36px; height: 36px;
  color: var(--black); background: var(--yellow); font-weight: 950; letter-spacing: -0.08em;
}
.brand-official { width: 124px; height: 64px; overflow: hidden; }
.nav-logo-crop {
  position: relative;
  display: block;
  width: 124px;
  height: 64px;
  overflow: hidden;
  background: transparent;
}
.nav-logo-crop img {
  position: absolute;
  width: 248px;
  max-width: none;
  height: auto;
  left: -62px;
  top: -42px;
  filter: contrast(1.12) saturate(1.08);
}
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.nav-links > a:not(.nav-cta) { color: var(--gray); transition: color 180ms ease; }
.nav-links > a:not(.nav-cta):hover { color: var(--yellow-light); }
.nav-cta { background: var(--white); color: var(--black); padding: 11px 17px; white-space: nowrap; }
.nav-cta:hover { background: var(--yellow-light); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 100dvh; display: grid; align-items: center; overflow: hidden; padding: 100px 0 34px; }
.hero::before {
  content: ""; position: absolute; width: 50vw; height: 50vw; right: -22vw; top: -17vw;
  border: 1px solid rgba(16, 177, 74, 0.16); border-radius: 50%; box-shadow: 0 0 100px rgba(16, 177, 74, 0.05);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.045) 50%, transparent 50.1%);
}
.hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(42px, 7vw, 100px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  margin: 0 0 24px; color: var(--yellow); font-size: 12px; line-height: 1.3;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 2px; background: var(--yellow); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif; text-transform: uppercase; }
h1 { font-size: clamp(48px, 5.3vw, 84px); line-height: .92; letter-spacing: -.055em; margin-bottom: 28px; font-weight: 900; }
h1 strong { color: var(--yellow); font-weight: 900; }
.hero-lead { color: var(--gray); max-width: 590px; font-size: 18px; line-height: 1.65; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: space-between;
  gap: 22px; padding: 0 22px; border: 0; border-radius: var(--radius); font-weight: 900;
  letter-spacing: .02em; cursor: pointer; transition: transform 160ms ease, background 160ms ease;
}
.button:active { transform: translateY(1px) scale(.985); }
.button-primary { background: var(--yellow); color: var(--black); }
.button-primary:hover { background: var(--yellow-light); }
.text-link { color: var(--white); font-size: 14px; font-weight: 800; border-bottom: 1px solid #555; padding-bottom: 4px; }
.text-link:hover { color: var(--yellow-light); border-color: var(--yellow-light); }

.hero-visual { position: relative; z-index: 1; }
.visual-frame { position: relative; overflow: hidden; border: 1px solid var(--line); background: #171717; }
.visual-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(13,13,13,.18), transparent 50%, rgba(16,177,74,.05));
}
.visual-frame img { width: 100%; height: min(64dvh, 560px); object-fit: cover; filter: contrast(1.14) saturate(1.12); }
.hero-spec {
  width: 82%; margin: -1px 0 0 auto; position: relative; z-index: 2;
  display: flex; justify-content: space-between; gap: 14px;
  padding: 15px 18px; background: var(--yellow); color: var(--black);
  font: 900 10px/1.2 Arial, sans-serif; letter-spacing: .13em;
}
.hero-line { position: absolute; left: 0; right: 0; bottom: 34px; height: 1px; background: var(--line); }

.intro { background: var(--graphite); }
.intro-grid { display: grid; grid-template-columns: .36fr 1fr; gap: 9vw; align-items: start; }
.intro-index { color: transparent; font: 900 clamp(104px, 14vw, 210px)/.67 "Arial Narrow", Arial, sans-serif; letter-spacing: -.09em; -webkit-text-stroke: 1px rgba(16,177,74,.45); }
.intro-copy h2, .section-heading h2, .benefits-title h2, .structure-heading h2, .commitment-copy h2, .contact-copy h2 {
  font-size: clamp(40px, 5vw, 70px); line-height: .96; letter-spacing: -.045em; margin-bottom: 48px;
}
.intro-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.intro-columns p { color: var(--gray); margin: 0; }

.process { background: var(--black); }
.section-heading { max-width: 820px; margin-bottom: 66px; }
.process-list { border-top: 1px solid var(--line); }
.process-item {
  display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; gap: 34px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}
.process-item:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.025); }
.process-number { color: var(--yellow); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.process-item h3 { font-size: clamp(24px, 2.5vw, 35px); letter-spacing: -.025em; margin-bottom: 10px; }
.process-item p { color: var(--muted); max-width: 680px; margin: 0; }
.process-tag { align-self: center; color: #777; font-size: 10px; font-weight: 900; letter-spacing: .18em; }

.benefits { background: var(--yellow); color: var(--black); }
.benefits-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; align-items: start; }
.benefits .section-kicker { color: var(--black); }
.benefits-title { position: sticky; top: 120px; }
.benefits-title h2 { margin-bottom: 28px; }
.benefits-title > p:last-child { max-width: 500px; font-weight: 600; }
.benefits-list { border-top: 2px solid var(--black); }
.benefits-list div { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid rgba(13,13,13,.3); }
.benefits-list span { font-size: 11px; font-weight: 900; }
.benefits-list strong { font-size: clamp(17px, 2vw, 24px); line-height: 1.25; text-transform: uppercase; }

.portfolio { background: var(--black); }
.portfolio-heading { max-width: 820px; margin-bottom: 62px; }
.portfolio-heading h2 { font-size: clamp(40px, 5vw, 70px); line-height: .96; letter-spacing: -.045em; margin-bottom: 26px; }
.portfolio-heading > p:last-child { color: var(--gray); max-width: 650px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.portfolio-item { grid-column: span 4; margin: 0; overflow: hidden; background: #151515; }
.portfolio-item.portfolio-wide { grid-column: span 8; }
.portfolio-item.portfolio-tall { grid-row: span 2; }
.portfolio-item img { width: 100%; height: 360px; object-fit: cover; transition: transform 650ms cubic-bezier(.2,.8,.2,1), filter 350ms ease; }
.portfolio-item.portfolio-tall img { height: 786px; }
.portfolio-item:hover img { transform: scale(1.025); filter: contrast(1.05) saturate(1.05); }
.portfolio-item figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 16px 18px; color: var(--white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.portfolio-item figcaption span { color: var(--yellow); text-align: right; }

.structure { background: var(--graphite); }
.structure-heading { max-width: 850px; margin-bottom: 70px; }
.structure-heading h2 { margin-bottom: 26px; }
.structure-heading > p:last-child { color: var(--gray); max-width: 650px; }
.ovens { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; align-items: stretch; }
.oven { grid-column: span 4; min-height: 330px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); background: #151515; }
.oven-featured { background: #222; }
.oven-top { display: flex; justify-content: space-between; gap: 18px; font-weight: 900; letter-spacing: .13em; }
.oven-top small { color: var(--yellow); font-size: 9px; }
.oven strong { display: block; color: var(--white); font: 900 clamp(28px, 3.2vw, 47px)/.98 "Arial Narrow", Arial, sans-serif; letter-spacing: -.04em; }
.oven p { color: var(--muted); margin-bottom: 0; font-size: 12px; }

.commitment { position: relative; overflow: hidden; }
.commitment::after {
  content: ""; position: absolute; width: 36vw; height: 36vw; min-width: 380px; min-height: 380px;
  right: -8vw; top: 50%; transform: translateY(-50%); border: 1px solid rgba(16,177,74,.2); border-radius: 50%;
}
.commitment-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; align-items: center; }
.commitment-mark { color: var(--yellow); font: 900 clamp(160px, 24vw, 340px)/.7 "Arial Narrow", Arial, sans-serif; letter-spacing: -.13em; }
.commitment-copy { position: relative; z-index: 2; }
.commitment-copy h2 { margin-bottom: 30px; }
.commitment-copy > p:last-child { color: var(--gray); max-width: 640px; font-size: 18px; }

.contact { background: var(--graphite); padding-bottom: 70px; }
.contact-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; padding: 70px; border: 1px solid rgba(16,177,74,.35); background: #111; }
.contact-copy h2 { font-size: clamp(36px, 4.2vw, 62px); margin-bottom: 26px; }
.contact-copy > p:last-child { color: var(--gray); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 18px; align-content: start; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label span { color: var(--gray); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-form input, .contact-form textarea {
  width: 100%; color: var(--white); background: #191919; border: 1px solid #454545;
  border-radius: var(--radius); padding: 14px 15px; outline: none; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #8b8b8b; opacity: 1; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 2px rgba(16,177,74,.22); }
.full-field { grid-column: 1 / -1; }
.form-status { min-height: 24px; margin: -10px 0 0; color: var(--yellow-light); font-size: 13px; }
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: flex; align-items: center; gap: 12px; min-height: 52px; padding: 10px 16px;
  color: var(--black); background: var(--yellow); border: 1px solid rgba(13,13,13,.25);
  box-shadow: 0 14px 36px rgba(0,0,0,.38); font-size: 11px; line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: var(--yellow-light); }
.whatsapp-float span { font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.whatsapp-float strong { padding-left: 12px; border-left: 1px solid rgba(13,13,13,.3); white-space: nowrap; }

.site-footer { padding: 62px 0 26px; background: #080808; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: end; padding-bottom: 55px; }
.footer-brand { margin-bottom: 12px; }
.footer-brand { width: 148px; height: 76px; }
.footer-brand .nav-logo-crop { width: 148px; height: 76px; }
.footer-brand .nav-logo-crop img { width: 296px; left: -74px; top: -50px; }
.footer-grid p { color: var(--muted); margin-bottom: 0; max-width: 450px; }
.footer-grid a:last-child { font-size: 13px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #737373; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--yellow-light); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 760px); }
  .section { padding: 92px 0; }
  .menu-toggle { display: grid; gap: 7px; width: 42px; height: 42px; place-content: center; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--white); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .nav-links {
    display: none; position: absolute; left: 16px; right: 16px; top: 76px; padding: 24px;
    flex-direction: column; align-items: stretch; gap: 18px; background: #121212; border: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 120px; }
  .hero-grid, .intro-grid, .benefits-grid, .commitment-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { max-width: 690px; }
  .intro-index { display: none; }
  .benefits-title { position: static; }
  .oven { grid-column: span 12; min-height: 220px; }
  .portfolio-item, .portfolio-item.portfolio-wide { grid-column: span 6; }
  .portfolio-item.portfolio-tall { grid-row: auto; }
  .portfolio-item img, .portfolio-item.portfolio-tall img { height: 430px; }
  .contact-shell { padding: 44px; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > a { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 32px); }
  .section { padding: 74px 0; }
  .nav-shell { height: 68px; }
  .nav-links { top: 68px; }
  .hero { padding: 104px 0 50px; min-height: auto; }
  .hero::after, .hero-line { display: none; }
  h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .text-link { width: max-content; }
  .hero-spec { width: 100%; }
  .visual-frame img { height: auto; aspect-ratio: 1.2 / 1; }
  .intro-copy h2, .section-heading h2, .benefits-title h2, .structure-heading h2, .commitment-copy h2, .contact-copy h2 { margin-bottom: 30px; }
  .intro-columns { grid-template-columns: 1fr; gap: 18px; }
  .section-heading, .structure-heading { margin-bottom: 42px; }
  .process-item { grid-template-columns: 46px 1fr; gap: 18px; padding: 27px 0; }
  .process-tag { display: none; }
  .process-item:hover { padding-left: 0; padding-right: 0; }
  .benefits-grid { gap: 42px; }
  .benefits-list div { grid-template-columns: 36px 1fr; gap: 12px; }
  .portfolio-heading { margin-bottom: 38px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
  .portfolio-item, .portfolio-item.portfolio-wide { grid-column: 1; }
  .portfolio-item img, .portfolio-item.portfolio-tall img { height: 420px; }
  .portfolio-item figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .oven { padding: 23px; }
  .commitment-mark { font-size: 170px; }
  .contact-shell { padding: 28px 20px; gap: 35px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .contact-form .full-field { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .footer-grid > a { grid-column: 1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; }
  .whatsapp-float strong { display: none; }
}

.coating-demo { min-width: 0; background: #111; border: 1px solid #ffffff18; }
.coating-caption { display: flex; justify-content: space-between; gap: 12px; padding: 20px; font-size: 10px; letter-spacing: .1em; color: var(--gray); }
.coating-caption span:last-child { color: var(--yellow); letter-spacing: 0; }
#coating-canvas { display: block; width: 100%; height: clamp(280px, 48dvh, 430px); }
.coating-controls { display: flex; align-items: center; gap: 8px; padding: 16px 20px; border-top: 1px solid var(--line); }
.coating-controls button { cursor: pointer; border: 1px solid #ffffff30; color: var(--white); background: #222; min-height: 44px; padding: 8px 12px; font-size: 12px; }
.coating-controls button:hover { border-color: var(--yellow); }
.coating-colors { display: flex; gap: 3px; margin-right: auto; }
.coating-colors button { width: 36px; min-height: 44px; padding: 8px; background: transparent; border-color: transparent; }
.coating-colors button::before { content: ''; display: block; height: 22px; width: 18px; background: var(--swatch); }
.coating-colors button[aria-pressed="true"] { border-color: var(--yellow); }
.coating-note { color: #aaa; font-size: 11px; padding: 0 20px 16px; margin: 0; }
.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: 50px; }
.hero h1 { font-size: clamp(42px, 4.2vw, 66px); line-height: 1.02; }
.hero-actions { flex-wrap: wrap; gap: 18px; }
.hero-copy.reveal { opacity: 1; transform: none; }
section[id] { scroll-margin-top: 82px; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .coating-caption, .coating-controls { padding: 12px; }
  .coating-controls { flex-wrap: wrap; }
  .coating-note { padding: 0 12px 14px; }
  .hero h1 { font-size: clamp(40px, 10vw, 54px); }
}

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

/* PDF identity: green #10B14A, charcoal #1D1D1D, grey #686868, white. */
.brand-official, .footer-brand { width: 148px; height: 68px; }
.nav-logo-crop, .footer-brand .nav-logo-crop { width: 148px; height: 68px; overflow: visible; }
.nav-logo-crop img, .footer-brand .nav-logo-crop img { width: 148px; height: 68px; object-fit: contain; inset: 0; filter: none; }
.hero { background: radial-gradient(ellipse at 77% 48%, #10361f 0%, #080b09 54%); }
.hero::before { border-color: #10b14a28; box-shadow: none; }
.hero h1 { font-size: clamp(38px, 3.85vw, 62px); }
.hero-lead { font-size: 17px; }
.brand-experience { min-width: 0; }
.brand-stage { height: clamp(330px, 54dvh, 540px); perspective: 950px; display: grid; place-items: center; position: relative; touch-action: pan-y; cursor: grab; }
.brand-stage:active { cursor: grabbing; }
.brand-model { position: relative; width: 100%; max-width: 620px; aspect-ratio: 680 / 480; transform-style: preserve-3d; will-change: transform; pointer-events: none; }
.brand-model img { position: absolute; inset: 0; width: 100%; height: 100%; backface-visibility: visible; }
.brand-face { transform: translateZ(1px); filter: drop-shadow(0 20px 24px #0007); }
.brand-orbit { position: absolute; bottom: 4%; width: 74%; height: 32px; border-radius: 50%; background: #10b14a22; filter: blur(24px); }
.benefits { background: #0c1c12; color: white; }
.benefits .section-kicker { color: var(--brand-green); }
.benefits-list { border-color: #10b14a; }
.benefits-list div { border-color: #ffffff20; }
.benefits-list span { color: #10b14a; }
.finish-section { background: #111713; border-top: 1px solid #10b14a24; }
.finish-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.finish-copy h2 { font-size: clamp(36px, 4vw, 58px); line-height: 1.02; letter-spacing: -.035em; }
.finish-copy p:not(.section-kicker) { color: #c7cec9; margin-bottom: 28px; }
.intro-index { -webkit-text-stroke-color: #10b14a55; }
.whatsapp-float { box-shadow: 0 10px 30px #0005; }
@media (max-width:980px) {
  .brand-stage { height: 420px; }
  .finish-layout { grid-template-columns: 1fr; gap: 35px; }
  .brand-model { max-width: 560px; }
}
@media (max-width:640px) {
  .brand-stage { height: 300px; }
  .hero h1 { font-size: 40px; }
  .brand-official, .nav-logo-crop, .nav-logo-crop img { width: 120px; }
}

.brand-official { perspective: 500px; overflow: visible; }
.brand-official .nav-logo-crop { transform-style: preserve-3d; pointer-events: none; }
.brand-official .brand-face { transform: translateZ(1px); }
.brand-official .brand-depth { backface-visibility: visible; }
