/* RL Karting — marketplace stylesheet.
   Base tokens, nav, drawer and footer are copied verbatim from services.html
   so the marketplace can never drift from the rest of the site's design system.
   Regenerate with .tmp/build_css.py after editing services.html. */

  :root {
    --paper: #f6f4f0; --paper-deep: #eae5db; --ink: #15181c; --ink-soft: #565c63;
    --race: #d62828; --race-bright: #ef4444; --race-deep: #9c1c1c; --gold: #d99a2b; --sand: #646b72;
    --line: rgba(21,24,28,0.12); --r: cubic-bezier(0.16, 1, 0.3, 1);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { background: var(--paper); color: var(--ink); font-family: 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  :focus-visible { outline: 2px solid var(--race); outline-offset: 3px; border-radius: 4px; }

  .atmosphere { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
  .orb { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
  .orb.a { width: 46vw; height: 46vw; background: radial-gradient(circle, var(--race-bright), transparent 65%); top: -12vw; right: -8vw; opacity: 0.18; }
  .orb.b { width: 38vw; height: 38vw; background: radial-gradient(circle, var(--gold), transparent 65%); bottom: -6vw; left: -6vw; opacity: 0.16; }
  .grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"); }

  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 22px clamp(24px, 5vw, 64px); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); background: linear-gradient(to bottom, rgba(246,244,240,0.85), rgba(246,244,240,0)); transition: background 0.4s var(--r), box-shadow 0.4s var(--r); }
  nav.scrolled { background: rgba(246,244,240,0.94); box-shadow: 0 1px 0 var(--line); }
  .brand { display: flex; align-items: center; text-decoration: none; color: var(--ink); }
  .brand-logo { height: 38px; width: auto; display: block; }
  .brand-fallback { display: none; align-items: center; gap: 9px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--race); }
  .brand-fallback em { font-style: normal; font-weight: 400; color: var(--ink-soft); }
  .brand-fallback .seed { width: 11px; height: 11px; border-radius: 50%; background: var(--race); box-shadow: 0 0 0 4px rgba(214,40,40,0.16); }
  .navlinks { display: flex; gap: 34px; }
  .navlinks a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500; position: relative; transition: color 0.25s; padding: 11px 0; }
  .navlinks a.active { color: var(--race); }
  .navlinks a::after { content: ''; position: absolute; left: 0; bottom: 6px; width: 0; height: 1px; background: var(--race); transition: width 0.3s var(--r); }
  .navlinks a:hover { color: var(--ink); }
  .navlinks a:hover::after, .navlinks a.active::after { width: 100%; }
  .nav-cta { font-size: 14px; font-weight: 600; color: var(--paper); background: var(--ink); padding: 10px 20px; border-radius: 100px; text-decoration: none; transition: transform 0.3s var(--r), background 0.3s; }
  .nav-cta:hover { transform: translateY(-2px); background: var(--race); }
  .nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 0; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform 0.3s var(--r), opacity 0.3s var(--r); }
  .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); }
  .mobile-drawer { position: fixed; top: 0; right: 0; width: min(320px, 80vw); height: 100vh; height: 100dvh; background: var(--paper); box-shadow: -20px 0 60px -20px rgba(21,24,28,0.35); z-index: 90; padding: 100px 32px 40px; display: flex; flex-direction: column; gap: 4px; transform: translateX(100%); transition: transform 0.4s var(--r); overflow-y: auto; }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a { color: var(--ink); text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 500; padding: 15px 2px; border-bottom: 1px solid var(--line); }
  .mobile-drawer a.active { color: var(--race); }
  .mobile-drawer .nav-cta { margin-top: 26px; text-align: center; border-bottom: none; padding: 15px 20px; }
  .drawer-overlay { position: fixed; inset: 0; background: rgba(21,24,28,0.4); z-index: 80; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--r); }
  .drawer-overlay.open { opacity: 1; pointer-events: auto; }
  @media (max-width: 820px){ .navlinks { display: none; } nav > .nav-cta { display: none; } .nav-toggle { display: flex; } }
  @media (min-width: 821px) { .mobile-drawer, .drawer-overlay { display: none; } }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--r), transform 1s var(--r); }
  .reveal.in { opacity: 1; transform: none; }
  .section-tag { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sand); font-weight: 600; display: inline-block; }

  .svc-hero { padding: 170px clamp(24px,5vw,64px) 60px; text-align: center; }
  .svc-hero .section-tag { margin-bottom: 24px; color: var(--race); }
  .svc-hero h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 300; font-size: clamp(40px, 7vw, 92px); line-height: 1.0; letter-spacing: -0.025em; max-width: 16ch; margin: 0 auto; text-wrap: balance; }
  .svc-hero h1 em { font-style: italic; color: var(--race); }
  @media (max-width: 860px){ .pillar-grid { grid-template-columns: 1fr; } .pillar-visual { max-width: 420px; margin: 0 auto; } }

  .cta-band { padding: 0 clamp(16px,4vw,48px) clamp(40px,6vw,80px); }
  .cta-inner { padding: clamp(60px,9vh,110px) 24px; border-radius: 32px; text-align: center; background: radial-gradient(120% 140% at 50% 0%, rgba(239,68,68,0.16), transparent 60%), var(--ink); color: var(--paper); position: relative; overflow: hidden; }
  .cta-inner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
  .cta-inner h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 300; font-size: clamp(30px,5vw,60px); letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; text-wrap: balance; position: relative; }
  .cta-inner h2 em { font-style: italic; color: var(--race-bright); }
  .cta-inner p { margin: 22px auto 36px; max-width: 46ch; color: rgba(246,244,240,0.7); font-size: 17px; position: relative; text-wrap: pretty; }
  .cta-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--paper); color: var(--ink); font-weight: 600; font-size: 16px; padding: 16px 32px; border-radius: 100px; text-decoration: none; transition: transform 0.35s var(--r), gap 0.35s var(--r); position: relative; }
  .cta-btn .arr { transition: transform 0.35s var(--r); }
  .cta-btn:hover { transform: translateY(-3px); gap: 18px; }
  .cta-btn:hover .arr { transform: translateX(4px); }

  footer { text-align: center; padding: 40px 24px 60px; color: var(--ink-soft); font-size: 13px; }
  footer a { color: var(--race); text-decoration: none; }
  footer .note { display: block; margin-top: 8px; font-family: 'Space Grotesk', sans-serif; font-style: italic; color: var(--ink); }

  @media (prefers-reduced-motion: reduce) { .reveal { transition: none; } }

  /* ---------- Marketplace ---------- */
  .mkt-hero { padding: 150px clamp(24px,5vw,64px) 40px; text-align: center; }
  .mkt-hero .section-tag { margin-bottom: 24px; color: var(--race); }
  .mkt-hero h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 300; font-size: clamp(40px, 7vw, 88px); line-height: 1.0; letter-spacing: -0.025em; max-width: 15ch; margin: 0 auto; text-wrap: balance; }
  .mkt-hero h1 em { font-style: italic; color: var(--race); }
  .mkt-hero p { margin: 26px auto 0; max-width: 54ch; font-size: clamp(17px,1.7vw,20px); color: var(--ink-soft); text-wrap: pretty; }

  /* Controls */
  .mkt-controls { padding: 26px 0 8px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip { font-family: inherit; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); background: transparent; border: 1px solid var(--line); padding: 9px 17px; border-radius: 100px; cursor: pointer; transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--r); }
  .chip:hover { color: var(--ink); border-color: rgba(21,24,28,0.28); transform: translateY(-1px); }
  .chip[aria-pressed="true"] { color: var(--paper); background: var(--ink); border-color: var(--ink); }
  .mkt-tools { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .toggle { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-soft); cursor: pointer; user-select: none; }
  .toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; left: 0; top: 0; margin: 0; cursor: pointer; }
  .toggle { position: relative; }
  .toggle .track { width: 38px; height: 22px; border-radius: 100px; background: var(--paper-deep); border: 1px solid var(--line); position: relative; transition: background 0.3s var(--r); flex: none; }
  .toggle .track::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); box-shadow: 0 1px 3px rgba(21,24,28,0.25); transition: transform 0.3s var(--r); }
  .toggle input:checked + .track { background: var(--race); border-color: var(--race); }
  .toggle input:checked + .track::after { transform: translateX(16px); }
  .toggle input:focus-visible + .track { outline: 2px solid var(--race); outline-offset: 3px; }
  .sort-wrap { position: relative; display: inline-flex; align-items: center; }
  .sort-wrap select { appearance: none; font-family: inherit; font-size: 13.5px; font-weight: 500; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 100px; padding: 9px 36px 9px 17px; cursor: pointer; transition: border-color 0.25s; }
  .sort-wrap select:hover { border-color: rgba(21,24,28,0.28); }
  .sort-wrap::after { content: ''; position: absolute; right: 15px; width: 7px; height: 7px; border-right: 1.5px solid var(--ink-soft); border-bottom: 1.5px solid var(--ink-soft); transform: translateY(-2px) rotate(45deg); pointer-events: none; }
  .mkt-count { font-size: 13.5px; color: var(--sand); padding: 4px 0 30px; }

  /* Grid + cards */
  .mkt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: clamp(20px, 2.6vw, 32px); padding-bottom: clamp(60px,9vh,110px); }
  .lot { display: flex; flex-direction: column; border-radius: 26px; border: 1px solid var(--line); background: rgba(255,255,255,0.55); overflow: hidden; transition: transform 0.5s var(--r), box-shadow 0.5s var(--r), border-color 0.4s; }
  .lot:hover { transform: translateY(-6px); box-shadow: 0 34px 64px -38px rgba(21,24,28,0.40); border-color: rgba(214,40,40,0.22); }
  .lot.is-sold { opacity: 0.58; }
  .lot.is-sold:hover { transform: none; box-shadow: none; border-color: var(--line); }

  .lot-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--paper-deep); }
  .lot-media img, .lot-media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s var(--r); }
  .lot-media img.on, .lot-media .ph.on { opacity: 1; }
  .lot-media .ph { display: grid; place-items: center; background: linear-gradient(155deg, var(--c1, #2a2f36), var(--c2, #15181c)); }
  .lot-media .ph svg { width: 34%; height: 34%; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
  .lot-media .ph span { position: absolute; bottom: 16px; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; }

  .lot-badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; gap: 8px; z-index: 2; pointer-events: none; }
  .badge { font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 700; padding: 6px 11px; border-radius: 100px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .badge.cond { background: rgba(21,24,28,0.62); color: rgba(246,244,240,0.92); }
  .badge.avail { background: rgba(246,244,240,0.9); color: #1c7c43; }
  .badge.avail.reserved { color: #9a6a12; }
  .badge.avail.sold { background: rgba(21,24,28,0.86); color: rgba(246,244,240,0.9); }

  .lot-dots { position: absolute; bottom: 13px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
  .lot-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(246,244,240,0.45); transition: background 0.3s, width 0.3s var(--r); }
  .lot-dots i.on { background: var(--paper); width: 18px; border-radius: 100px; }
  .lot-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(246,244,240,0.86); color: var(--ink); display: grid; place-items: center; cursor: pointer; opacity: 0; transition: opacity 0.3s, background 0.25s; z-index: 3; font-size: 15px; line-height: 1; }
  .lot:hover .lot-nav, .lot-nav:focus-visible { opacity: 1; }
  .lot-nav:hover { background: var(--paper); }
  .lot-nav.prev { left: 12px; } .lot-nav.next { right: 12px; }

  .lot-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
  .lot-cat { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); font-weight: 600; margin-bottom: 10px; }
  .lot-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 21px; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 14px; text-wrap: balance; }
  .price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
  .price-now { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 27px; letter-spacing: -0.02em; color: var(--ink); }
  .price-now .cur { font-size: 15px; font-weight: 400; color: var(--sand); margin-right: 3px; }
  .price-was { font-size: 15px; color: var(--sand); text-decoration: line-through; text-decoration-thickness: 1.5px; }
  .price-save { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--race); background: rgba(214,40,40,0.10); padding: 5px 10px; border-radius: 100px; }
  .spec-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
  .spec-pills span { font-size: 12px; color: var(--ink-soft); background: var(--paper-deep); border-radius: 8px; padding: 6px 10px; }
  .lot-actions { margin-top: auto; display: flex; gap: 10px; }
  .btn-wa { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--paper); background: var(--ink); border: none; padding: 14px 18px; border-radius: 100px; text-decoration: none; cursor: pointer; transition: background 0.3s, transform 0.3s var(--r); }
  .btn-wa:hover { background: var(--race); transform: translateY(-2px); }
  .btn-wa svg { width: 17px; height: 17px; fill: #25D366; flex: none; }
  .btn-wa:hover svg { fill: var(--paper); }
  .btn-ghost { display: inline-flex; align-items: center; justify-content: center; font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink); background: transparent; border: 1px solid var(--line); padding: 14px 18px; border-radius: 100px; cursor: pointer; transition: border-color 0.25s, background 0.25s; }
  .btn-ghost:hover { border-color: rgba(21,24,28,0.3); background: rgba(255,255,255,0.6); }
  .lot.is-sold .btn-wa { background: var(--paper-deep); color: var(--sand); pointer-events: none; }
  .lot.is-sold .btn-wa svg { fill: var(--sand); }

  .mkt-empty { text-align: center; padding: 70px 20px 100px; color: var(--ink-soft); }
  .mkt-empty h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 400; font-size: 24px; color: var(--ink); margin-bottom: 10px; }

  /* Detail modal */
  .sheet { position: fixed; inset: 0; z-index: 120; display: none; }
  .sheet.open { display: block; }
  .sheet-veil { position: absolute; inset: 0; background: rgba(21,24,28,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.4s var(--r); }
  .sheet.open .sheet-veil { opacity: 1; }
  .sheet-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(0.98); width: min(1000px, calc(100vw - 32px)); max-height: min(88vh, 900px); overflow-y: auto; background: var(--paper); border-radius: 30px; box-shadow: 0 50px 110px -40px rgba(21,24,28,0.6); opacity: 0; transition: opacity 0.45s var(--r), transform 0.45s var(--r); }
  .sheet.open .sheet-panel { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .sheet-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(246,244,240,0.9); backdrop-filter: blur(8px); color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; z-index: 4; transition: background 0.25s, transform 0.3s var(--r); }
  .sheet-close:hover { background: var(--paper-deep); transform: rotate(90deg); }
  .sheet-grid { display: grid; grid-template-columns: 1.05fr 1fr; }
  .sheet-grid { align-items: start; }
  /* The media column is sticky and so shorter than the info column. Paint the
     photo column's background onto the panel itself so no bare gap shows below it.
     51.22% is the 1.05fr of the 1.05fr/1fr grid above; keep them in sync. */
  .sheet-panel { background: linear-gradient(to right, var(--paper-deep) 0 51.22%, var(--paper) 51.22% 100%); }
  /* Sticky so the photo and its thumbnails stay in view while the spec list scrolls.
     Stretching this column instead pushed the thumbnails below the panel cutoff. */
  .sheet-media { position: sticky; top: 0; align-self: start; background: var(--paper-deep); display: flex; flex-direction: column; }
  .sheet-stage { position: relative; flex: none; aspect-ratio: 1/1; overflow: hidden; }
  .sheet-stage img, .sheet-stage .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.45s var(--r); }
  .sheet-stage img.on, .sheet-stage .ph.on { opacity: 1; }
  .sheet-stage .ph { display: grid; place-items: center; background: linear-gradient(155deg, var(--c1, #2a2f36), var(--c2, #15181c)); }
  .sheet-stage .ph svg { width: 30%; height: 30%; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
  .sheet-thumbs { display: flex; gap: 8px; padding: 12px; flex-wrap: wrap; flex: none; }
  .sheet-thumbs:empty { display: none; }
  .sheet-thumbs button { width: 58px; height: 58px; border-radius: 12px; border: 1.5px solid transparent; overflow: hidden; padding: 0; cursor: pointer; background: var(--paper); transition: border-color 0.25s, transform 0.25s var(--r); position: relative; }
  .sheet-thumbs button:hover { transform: translateY(-2px); }
  .sheet-thumbs button[aria-current="true"] { border-color: var(--race); }
  .sheet-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .sheet-thumbs .tph { width: 100%; height: 100%; background: linear-gradient(155deg, var(--c1, #2a2f36), var(--c2, #15181c)); }

  .sheet-info { padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; }
  .sheet-info .lot-cat { margin-bottom: 12px; }
  .sheet-info h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 400; font-size: clamp(25px, 2.7vw, 33px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 6px; text-wrap: balance; }
  .sheet-ref { font-size: 12.5px; color: var(--sand); letter-spacing: 0.06em; margin-bottom: 20px; }
  .sheet-info .price-row { margin-bottom: 18px; }
  .sheet-info .price-now { font-size: 34px; }
  .sheet-avail { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px; }
  .sheet-avail .dot { width: 8px; height: 8px; border-radius: 50%; background: #1c7c43; box-shadow: 0 0 0 4px rgba(28,124,67,0.15); }
  .sheet-avail.reserved .dot { background: #b8830f; box-shadow: 0 0 0 4px rgba(184,131,15,0.15); }
  .sheet-avail.sold .dot { background: var(--sand); box-shadow: 0 0 0 4px rgba(100,107,114,0.15); }
  .sheet-desc { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 26px; text-wrap: pretty; }
  .sheet-specs { border-top: 1px solid var(--line); margin-bottom: 28px; }
  .sheet-specs div { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
  .sheet-specs dt { color: var(--sand); font-weight: 500; }
  .sheet-specs dd { color: var(--ink); }
  .sheet-cta { margin-top: auto; position: sticky; bottom: 0; background: linear-gradient(to bottom, rgba(246,244,240,0), var(--paper) 22%); padding-top: 24px; padding-bottom: 4px; }
  .sheet-cta .btn-wa { width: 100%; background: #25D366; color: #06301a; font-size: 15.5px; padding: 17px 20px; }
  .sheet-cta .btn-wa svg { fill: #06301a; }
  .sheet-cta .btn-wa:hover { background: #1eb955; color: #06301a; transform: translateY(-2px); }
  .sheet-cta .btn-wa:hover svg { fill: #06301a; }
  .sheet-cta .fine { display: block; text-align: center; font-size: 12.5px; color: var(--sand); margin-top: 12px; }

  @media (max-width: 820px){
    .sheet-grid { grid-template-columns: 1fr; }
    .sheet-panel { background: var(--paper); }
    .sheet-media { position: static; }
    .sheet-panel { width: calc(100vw - 20px); max-height: 92vh; border-radius: 24px; }
    .sheet-stage { aspect-ratio: 4/3; }
    .mkt-controls { flex-direction: column; align-items: stretch; }
    .mkt-tools { justify-content: space-between; }
  }
  @media (prefers-reduced-motion: reduce){
    .lot, .lot:hover, .sheet-panel, .sheet-veil, .btn-wa, .chip { transition: none !important; transform: none !important; }
  }
  .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
