/* ============================================================
   ZYNA GRILLS — Design System v2 (polished, reviewed)
   Brand: #E35628 (fire) · #F08020 (amber) · #B7B7B6 (silver)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── TOKENS ──────────────────────────── */
:root {
  --fire:    #E35628;
  --amber:   #F08020;
  --silver:  #B7B7B6;
  --grad:    linear-gradient(135deg, #E35628, #F08020);
  --c0: #0C0C0C; --c1: #141414; --c2: #1C1C1C;
  --c3: #2A2A2A; --c4: #383838; --c5: #585858;
  --c6: #888888; --c7: #C0C0C0; --c8: #E8E8E8; --cW: #F6F6F6;
  --ff-h: 'Barlow Condensed', sans-serif;
  --ff-b: 'Barlow', sans-serif;
  --ff-m: 'JetBrains Mono', monospace;
  --r: 2px;
  --ann: 36px;
  --nav: 68px;
  --top: calc(var(--nav) + var(--ann));
  --mw: 1360px;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --spring: cubic-bezier(.16,1,.3,1);
}

/* ── RESET ───────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--ff-b); background: var(--c0); color: var(--c6); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--fire); color: #fff; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c1); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 2px; }

/* ── TYPOGRAPHY ──────────────────────── */
.overline { font-family: var(--ff-m); font-size: .63rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--fire); }
.page-title { font-family: var(--ff-h); font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 4.5rem); color: var(--cW); line-height: .95; letter-spacing: -.01em; }
.sec-title { font-family: var(--ff-h); font-weight: 700; font-size: clamp(1.6rem, 3.2vw, 2.6rem); color: var(--cW); line-height: 1.05; }
.sub-title { font-family: var(--ff-h); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.65rem); color: var(--cW); line-height: 1.15; }
.lead { font-size: 1.05rem; font-weight: 300; color: var(--c7); line-height: 1.7; }
.t-fire { color: var(--fire); } .t-amber { color: var(--amber); } .t-white { color: var(--cW); }

/* ── LAYOUT ──────────────────────────── */
.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 clamp(.875rem, 3.5vw, 2.25rem); }
.sec { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.sec-sm { padding: clamp(2rem, 4vw, 3.5rem) 0; }
hr.div { border: none; border-top: 1px solid var(--c3); margin: 0; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.g2-60 { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.sh { margin-bottom: 2.5rem; }
.sh .overline { display: block; margin-bottom: .65rem; }
.sh-bar { width: 40px; height: 3px; background: var(--grad); border-radius: 2px; margin: .75rem 0; }
.sh.center { text-align: center; }
.sh.center .sh-bar { margin: .75rem auto; }

/* ── BUTTONS ─────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ff-h); font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .75rem 1.6rem; border-radius: var(--r); transition: all .22s; cursor: pointer; white-space: nowrap; }
.btn-fire { background: var(--grad); color: #fff; box-shadow: 0 4px 16px rgba(227,86,40,.25); }
.btn-fire:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(227,86,40,.38); }
.btn-out { border: 1.5px solid var(--fire); color: var(--fire); background: transparent; }
.btn-out:hover { background: var(--fire); color: #fff; }
.btn-ghost { border: 1.5px solid var(--c4); color: var(--c7); background: transparent; }
.btn-ghost:hover { border-color: var(--fire); color: var(--fire); }
.btn-sm { padding: .55rem 1.15rem; font-size: .72rem; }
.btn-lg { padding: .95rem 2.4rem; font-size: .85rem; }

/* ── ANNOUNCE BAR ────────────────────── */
.announce { height: var(--ann); background: var(--grad); display: flex; align-items: center; justify-content: center; font-family: var(--ff-m); font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #fff; position: relative; z-index: 999; }

/* ── NAVBAR ──────────────────────────── */
.nav { position: fixed; top: var(--ann); left: 0; right: 0; z-index: 1000; height: var(--nav); border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, height .3s, top .3s; }
.nav.scrolled { background: rgba(12,12,12,.97); backdrop-filter: blur(20px) saturate(1.4); border-bottom-color: var(--c3); height: 56px; top: 0; }
.nav-inner { display: flex; align-items: center; height: 100%; }

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 1.75rem; }
.nav-logo img { height: 44px; transition: height .3s; object-fit: contain; }
.nav.scrolled .nav-logo img { height: 36px; }

/* Links */
.nav-list { display: flex; align-items: center; flex: 1; }
.nav-item { position: relative; }
.nav-a { display: flex; align-items: center; gap: .28rem; font-family: var(--ff-h); font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--c6); padding: .45rem .8rem; cursor: pointer; user-select: none; transition: color .2s; }
.nav-a:hover, .nav-a.on { color: var(--cW); }
.arr { font-size: .48rem; opacity: .7; transition: transform .25s; }
.nav-item:hover > .nav-a .arr, .nav-item:hover > span .arr { transform: rotate(180deg); }
.nav-item.cur > a.nav-a { color: var(--fire); }

/* Dropdown */
.nav-drop { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--c1); border: 1px solid var(--c3); min-width: 210px; box-shadow: 0 12px 40px rgba(0,0,0,.6); opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), visibility .22s, top .22s; pointer-events: none; }
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; pointer-events: auto; top: calc(100% + 2px); }
.nav-drop-link { display: flex; align-items: center; justify-content: space-between; padding: .58rem 1rem; font-family: var(--ff-h); font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c6); border-bottom: 1px solid var(--c3); transition: all .18s; }
.nav-drop-link:last-child { border-bottom: none; }
.nav-drop-link:hover { color: var(--cW); background: var(--c2); padding-left: 1.3rem; }
.sarr { font-size: .45rem; color: var(--c5); }

/* Sub-dropdown */
.nav-sub-wrap { position: relative; }
.nav-sub { position: absolute; left: 100%; top: 0; background: var(--c2); border: 1px solid var(--c3); min-width: 200px; box-shadow: 0 8px 30px rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: all .18s; pointer-events: none; }
.nav-sub-wrap:hover .nav-sub { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-sub a { display: block; padding: .52rem .95rem; font-family: var(--ff-h); font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c6); border-bottom: 1px solid var(--c3); transition: all .18s; }
.nav-sub a:last-child { border-bottom: none; }
.nav-sub a:hover { color: var(--fire); padding-left: 1.25rem; }

/* Right actions */
.nav-right { display: flex; align-items: center; gap: .875rem; margin-left: auto; flex-shrink: 0; }
.nav-tel { font-family: var(--ff-m); font-size: .68rem; color: var(--c5); display: flex; align-items: center; gap: .38rem; transition: color .2s; }
.nav-tel::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--fire); flex-shrink: 0; animation: pulse 2.2s infinite; }
.nav-tel:hover { color: var(--fire); }
@keyframes pulse { 0%,100%{opacity:1} 55%{opacity:.35} }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--c8); transition: all .3s; border-radius: 1px; }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.mob { position: fixed; top: var(--top); left: 0; right: 0; bottom: 0; background: rgba(12,12,12,.98); backdrop-filter: blur(16px); z-index: 999; overflow-y: auto; padding: 1.25rem 1.5rem 3rem; flex-direction: column; gap: .1rem; display: none; }
.mob.open { display: flex; }
.mob-a { display: block; font-family: var(--ff-h); font-size: .88rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--c7); padding: .825rem .5rem; border-bottom: 1px solid var(--c3); transition: color .2s; }
.mob-a:hover { color: var(--fire); }
.mob-sec { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--fire); padding: 1rem .5rem .32rem; border-top: 1px solid var(--c3); margin-top: .5rem; }
.mob-sub .mob-a { font-size: .78rem; color: var(--c5); padding: .68rem .5rem .68rem 1.15rem; }
.mob-sub .mob-a:hover { color: var(--cW); }
.mob-cta { margin-top: 1.75rem; display: flex; justify-content: center; border-bottom: none; width: 100%; }

/* ── HERO BANNER ─────────────────────── */
.hero-wrap { width: 100%; overflow: hidden; background: var(--c0); }
.hero-iframe { display: block; width: 100%; height: calc(100vh - var(--top)); border: none; min-height: 400px; }
@media(max-width:900px) { .hero-iframe { height: 70vw; min-height: 320px; } }
@media(max-width:600px) { .hero-iframe { height: 82vw; min-height: 260px; } }

/* ── MARQUEE ─────────────────────────── */
.mq { overflow: hidden; background: var(--c1); border-top: 1px solid var(--c3); border-bottom: 1px solid var(--c3); padding: .8rem 0; }
.mq-track { display: flex; gap: 3rem; white-space: nowrap; animation: mscroll 28s linear infinite; }
.mq-track:hover { animation-play-state: paused; }
.mq-item { font-family: var(--ff-m); font-size: .61rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c5); flex-shrink: 0; display: flex; align-items: center; gap: .85rem; }
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fire); flex-shrink: 0; }
@keyframes mscroll { to { transform: translateX(-50%); } }

/* ── PAGE HERO ───────────────────────── */
.p-hero { padding: calc(var(--top) + 3rem) 0 2.75rem; background: var(--c1); border-bottom: 1px solid var(--c3); position: relative; overflow: hidden; }
.p-hero::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: linear-gradient(to left, rgba(227,86,40,.04), transparent); pointer-events: none; }
.p-hero .overline { margin-bottom: .55rem; }
.p-hero .sh-bar { margin: .65rem 0 1.1rem; }
.breadcrumb { display: flex; align-items: center; gap: .42rem; font-family: var(--ff-m); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c5); margin-bottom: 1.4rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--fire); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .7; }
.bsep { color: var(--c4); font-size: .45rem; }

/* ── PRODUCT CARD ────────────────────── */
.prod-card { background: var(--c1); border: 1px solid var(--c3); display: flex; flex-direction: column; overflow: hidden; transition: border-color .3s, transform .32s, box-shadow .32s; position: relative; }
.prod-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--spring); }
.prod-card:hover { border-color: var(--fire); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(227,86,40,.12); }
.prod-card:hover::after { transform: scaleX(1); }
.card-img { background: var(--c2); overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 1.75rem; position: relative; }
.card-img img { max-width: 100%; max-height: 200px; object-fit: contain; transition: transform .5s var(--spring); filter: drop-shadow(0 8px 20px rgba(0,0,0,.55)); }
.prod-card:hover .card-img img { transform: scale(1.07); }
.card-badge { position: absolute; top: 0; left: 0; background: var(--grad); color: #fff; font-family: var(--ff-m); font-size: .56rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .26rem .68rem; }
.card-model { position: absolute; bottom: .6rem; right: .6rem; font-family: var(--ff-m); font-size: .54rem; letter-spacing: .1em; color: var(--c5); background: rgba(12,12,12,.88); border: 1px solid var(--c3); padding: .17rem .48rem; }
.card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fire); margin-bottom: .32rem; }
.card-name { font-family: var(--ff-h); font-size: 1rem; font-weight: 700; color: var(--cW); line-height: 1.22; margin-bottom: .6rem; }
.card-desc { font-size: .82rem; color: var(--c5); line-height: 1.65; flex: 1; margin-bottom: 1.15rem; }
.card-foot { border-top: 1px solid var(--c3); padding-top: 1.05rem; display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }

/* ── SPEC TABLE ──────────────────────── */
.stbl { width: 100%; border-collapse: collapse; }
.stbl tr { border-bottom: 1px solid var(--c3); }
.stbl tr:last-child { border-bottom: none; }
.stbl tr:hover td { background: var(--c2); }
.stbl td { padding: .7rem .875rem; font-size: .84rem; vertical-align: top; }
.stbl .sk { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fire); width: 38%; font-weight: 500; }
.stbl .sv { color: var(--c7); }

/* ── DIMENSION TABLE ─────────────────── */
.dtbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dtbl { width: 100%; border-collapse: collapse; min-width: 580px; }
.dtbl thead th { background: var(--c2); font-family: var(--ff-m); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fire); font-weight: 600; padding: .7rem .95rem; text-align: left; border-bottom: 2px solid var(--fire); }
.dtbl tbody td { padding: .62rem .95rem; font-size: .82rem; color: var(--c6); border-bottom: 1px solid var(--c3); }
.dtbl tbody tr:hover td { background: var(--c2); color: var(--cW); }
.dtbl .dprod { color: var(--c7); font-weight: 500; }
.dtbl tbody tr td:first-child { color: var(--c7); }
.dtbl-group td { background: rgba(227,86,40,.06); font-family: var(--ff-m); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fire); padding: .52rem .95rem; }
.dtbl a { color: var(--fire); font-family: var(--ff-m); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; transition: opacity .2s; }
.dtbl a:hover { opacity: .72; text-decoration: underline; }

/* ── STATS ───────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--c1); border: 1px solid var(--c3); }
.stat { padding: 2.4rem 1.5rem; text-align: center; border-right: 1px solid var(--c3); position: relative; overflow: hidden; }
.stat:last-child { border-right: none; }
.stat::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 32px; height: 2px; background: var(--grad); }
.stat-n { display: block; font-family: var(--ff-h); font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 800; color: var(--fire); line-height: 1; margin-bottom: .4rem; }
.stat-l { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c5); }

/* ── FEATURE LIST ────────────────────── */
.feat-list { display: flex; flex-direction: column; }
.feat-item { display: grid; grid-template-columns: 38px 1fr; gap: .85rem; padding: 1.1rem 0; border-bottom: 1px solid var(--c3); }
.feat-item:last-child { border-bottom: none; }
.feat-num { font-family: var(--ff-m); font-size: .6rem; color: var(--fire); padding-top: .18rem; font-weight: 500; }
.feat-title { font-family: var(--ff-h); font-weight: 600; font-size: .93rem; color: var(--cW); margin-bottom: .22rem; }
.feat-body { font-size: .82rem; color: var(--c5); line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────── */
.tcard { background: var(--c1); border: 1px solid var(--c3); padding: 1.875rem; display: flex; flex-direction: column; gap: 1.15rem; transition: border-color .3s; }
.tcard:hover { border-color: var(--fire); }
.tc-stars { color: var(--fire); letter-spacing: 2px; font-size: .82rem; }
.tc-quote { font-style: italic; color: var(--c7); font-size: .875rem; line-height: 1.82; flex: 1; }
.tc-author { display: flex; align-items: center; gap: .82rem; border-top: 1px solid var(--c3); padding-top: 1rem; }
.tc-av { width: 38px; height: 38px; background: var(--c3); border: 2px solid var(--fire); display: flex; align-items: center; justify-content: center; font-family: var(--ff-h); font-size: .95rem; font-weight: 700; color: var(--fire); flex-shrink: 0; }
.tc-name { font-family: var(--ff-h); font-weight: 600; font-size: .82rem; color: var(--cW); }
.tc-loc { font-size: .74rem; color: var(--c5); margin-top: .1rem; }

/* ── FAQ ─────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--c3); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.15rem 0; cursor: pointer; font-family: var(--ff-h); font-weight: 600; font-size: .92rem; color: var(--c8); transition: color .2s; user-select: none; }
.faq-q:hover { color: var(--fire); }
.faq-ico { width: 20px; height: 20px; border: 1.5px solid var(--c4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--fire); font-size: .82rem; transition: all .28s; border-radius: 50%; }
.faq-item.open .faq-ico { transform: rotate(45deg); border-color: var(--fire); background: rgba(227,86,40,.08); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .42s var(--spring); }
.faq-item.open .faq-body { max-height: 500px; }
.faq-ans { padding-bottom: 1.2rem; font-size: .86rem; color: var(--c5); line-height: 1.82; }

/* ── FORM ────────────────────────────── */
.fg { margin-bottom: 1.15rem; }
.fl { display: block; font-family: var(--ff-m); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c6); margin-bottom: .45rem; }
.fi { width: 100%; background: var(--c2); border: 1px solid var(--c4); color: var(--cW); padding: .78rem .95rem; font-size: .875rem; border-radius: var(--r); outline: none; transition: border-color .22s, box-shadow .22s; }
.fi:focus { border-color: var(--fire); box-shadow: 0 0 0 3px rgba(227,86,40,.1); }
.fi::placeholder { color: var(--c4); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
textarea.fi { min-height: 115px; resize: vertical; }
select.fi { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23585858'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .875rem center; padding-right: 2rem; }

/* ── IMAGE FRAME ─────────────────────── */
.img-frame { background: var(--c2); border: 1px solid var(--c3); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 2.25rem; }
.img-frame img { max-width: 100%; object-fit: contain; filter: drop-shadow(0 10px 28px rgba(0,0,0,.65)); transition: transform .5s var(--spring); }
.img-frame:hover img { transform: scale(1.04); }

/* ── GALLERY ─────────────────────────── */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c3); border: 1px solid var(--c3); }
.gal-item { overflow: hidden; position: relative; background: var(--c2); cursor: pointer; }
.gal-item img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 1.4rem; transition: transform .5s var(--spring); background: var(--c2); }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,12,12,.88) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity .3s; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-lbl { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fire); }

/* ── CTA BAND ────────────────────────── */
.cta-band { background: var(--c1); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 90% at 50% 100%, rgba(227,86,40,.08), transparent 55%); pointer-events: none; }
.cta-band .wrap { position: relative; z-index: 1; text-align: center; }

/* ── PRODUCT ROW (detail pages) ──────── */
.prow { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; padding: 3rem 0; border-bottom: 1px solid var(--c3); }
.prow:first-child { padding-top: 0; }
.prow:last-child { border-bottom: none; }
.prow.alt { grid-template-columns: 1fr 300px; }
.prow.alt .prow-img { order: 2; }
.prow.alt .prow-info { order: 1; }
.prow-img { background: var(--c2); border: 1px solid var(--c3); display: flex; align-items: center; justify-content: center; padding: 1.75rem; aspect-ratio: 1; overflow: hidden; }
.prow-img img { max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 22px rgba(0,0,0,.65)); transition: transform .5s var(--spring); }
.prow-img:hover img { transform: scale(1.05); }
.prow-model { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--c4); margin-bottom: .45rem; }
.prow-name { font-family: var(--ff-h); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; color: var(--cW); margin-bottom: .85rem; line-height: 1.1; }
.prow-desc { font-size: .875rem; color: var(--c6); line-height: 1.75; margin-bottom: 1.35rem; }
.prow-btns { display: flex; gap: .82rem; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────── */
.footer { background: var(--c1); border-top: 1px solid var(--c3); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 3rem; padding: 3.75rem 0 2.75rem; }
.fg-brand { }
.footer-logo { height: 40px; width: auto; object-fit: contain; display: block; margin-bottom: .95rem; }
.footer-about { font-size: .82rem; color: var(--c5); line-height: 1.75; margin-bottom: 1.25rem; max-width: 265px; }
.footer-socials { display: flex; gap: .6rem; }
.soc-btn { width: 30px; height: 30px; border: 1px solid var(--c4); display: flex; align-items: center; justify-content: center; font-size: .68rem; font-family: var(--ff-m); font-weight: 600; color: var(--c5); transition: all .2s; cursor: pointer; }
.soc-btn:hover { border-color: var(--fire); color: var(--fire); background: rgba(227,86,40,.08); }
.footer-col-h { font-family: var(--ff-h); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cW); margin-bottom: .95rem; padding-bottom: .45rem; border-bottom: 2px solid var(--fire); display: inline-block; }
.footer-link { display: block; font-size: .82rem; color: var(--c5); margin-bottom: .5rem; transition: all .2s; }
.footer-link:hover { color: var(--fire); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.fc-row { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--c5); line-height: 1.55; }
.fc-row a { color: var(--c5); transition: color .2s; }
.fc-row a:hover { color: var(--fire); }
.fc-lbl { color: var(--fire); font-family: var(--ff-m); font-size: .65rem; font-weight: 500; min-width: 14px; margin-top: .1rem; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--c3); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; flex-wrap: wrap; font-family: var(--ff-m); font-size: .58rem; letter-spacing: .1em; color: var(--c4); }

/* ── WHATSAPP / CHAT ─────────────────── */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900; }
.wa-btn { width: 50px; height: 50px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,.33); transition: all .3s; }
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 26px rgba(37,211,102,.48); }
.chat-wrap { position: fixed; bottom: 6rem; right: 1.75rem; z-index: 900; }
.chat-btn { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(227,86,40,.32); transition: transform .3s; }
.chat-btn:hover { transform: scale(1.08); }
.chat-window { display: none; flex-direction: column; position: fixed; bottom: 9.8rem; right: 1.75rem; z-index: 899; width: 310px; height: 385px; background: var(--c1); border: 1px solid var(--c3); box-shadow: 0 14px 48px rgba(0,0,0,.7); }
.chat-window.open { display: flex; }
.chat-head { padding: .82rem 1.05rem; background: var(--c2); border-bottom: 1px solid var(--c3); display: flex; justify-content: space-between; align-items: center; }
.chat-title { font-family: var(--ff-h); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cW); }
.chat-online { font-family: var(--ff-m); font-size: .56rem; color: #25D366; margin-top: .1rem; }
.chat-close { background: none; border: none; color: var(--c5); cursor: pointer; font-size: 1.1rem; line-height: 1; transition: color .2s; }
.chat-close:hover { color: var(--cW); }
.chat-messages { flex: 1; overflow-y: auto; padding: .82rem; display: flex; flex-direction: column; gap: .48rem; }
.chat-form { padding: .7rem; border-top: 1px solid var(--c3); display: flex; gap: .48rem; }
.chat-input { flex: 1; background: var(--c2); border: 1px solid var(--c4); color: var(--cW); padding: .58rem .82rem; font-size: .8rem; outline: none; border-radius: 2px; }
.chat-input:focus { border-color: var(--fire); }
.chat-send { background: var(--grad); border: none; color: #fff; cursor: pointer; padding: .58rem .82rem; font-family: var(--ff-m); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; transition: filter .2s; white-space: nowrap; }
.chat-send:hover { filter: brightness(1.1); }

/* ── LOADER ──────────────────────────── */
.loader { position: fixed; inset: 0; z-index: 9999; background: var(--c0); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; transition: opacity .55s, visibility .55s; }
.loader.done { opacity: 0; visibility: hidden; }
.loader-name { font-family: var(--ff-h); font-size: 1.65rem; font-weight: 800; letter-spacing: .05em; color: var(--cW); }
.loader-name span { color: var(--fire); }
.loader-bar { width: 130px; height: 2px; background: var(--c3); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--grad); animation: lfill 1.2s var(--ease) forwards; }
@keyframes lfill { from{width:0} to{width:100%} }

/* ── SCROLL REVEAL ───────────────────── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--spring), transform .65s var(--spring); }
.rv-l { opacity: 0; transform: translateX(-20px); transition: opacity .65s var(--spring), transform .65s var(--spring); }
.rv-r { opacity: 0; transform: translateX(20px); transition: opacity .65s var(--spring), transform .65s var(--spring); }
.rv.in, .rv-l.in, .rv-r.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s}
@media (prefers-reduced-motion: reduce) {
  .rv, .rv-l, .rv-r { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── RESPONSIVE ──────────────────────── */
@media(max-width:1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--c3); }
  .stat:nth-child(4) { border-top: 1px solid var(--c3); }
  .g4 { grid-template-columns: 1fr 1fr; }
}
@media(max-width:1024px) {
  .g3 { grid-template-columns: 1fr 1fr; }
  .gal { grid-template-columns: 1fr 1fr; }
  .prow, .prow.alt { grid-template-columns: 1fr; gap: 2rem; }
  .prow.alt .prow-img, .prow.alt .prow-info { order: unset; }
}
@media(max-width:960px) {
  :root { --nav: 58px; }
  .nav-list, .nav-right .btn, .nav-right .nav-tel { display: none; }
  .ham { display: flex; }
  .g2, .g2-60 { grid-template-columns: 1fr; }
  .f2 { grid-template-columns: 1fr; gap: 0; }
}
@media(max-width:768px) {
  .g3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: .4rem; }
  .footer-about { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  :root { --ann: 30px; }
  .announce { font-size: .55rem; letter-spacing: .1em; }
  .gal { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--c3); }
  .stat:nth-child(n) { border-top: none; }
  .stat:last-child { border-bottom: none; }
  .chat-window { width: calc(100vw - 2rem); right: 1rem; bottom: 9rem; }
}
