/* =====================================================================
   Trusted Traders Resin — bespoke design system
   Signature: hexagonal resin-aggregate texture + brushed metallic type
   ===================================================================== */

:root {
  /* Brand metals */
  --gold-1: #b8862b;
  --gold-2: #e6c558;
  --gold-3: #f7e7a8;
  --gold-deep: #8a5f1c;
  --silver-1: #c9cdd4;
  --silver-2: #eef1f5;
  --silver-deep: #7d828c;

  /* Dark theme (default) */
  --bg:        #0a0a0e;
  --bg-2:      #101017;
  --bg-3:      #16161f;
  --surface:   rgba(255,255,255,0.035);
  --surface-2: rgba(255,255,255,0.06);
  --border:    rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.16);
  --ink:       #f3f1ec;
  --ink-soft:  #b9b8b2;
  --ink-faint: #7d7c79;
  --glass-blur: 18px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
  --ring: rgba(230,197,88,0.55);

  --grad-gold: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-1) 22%, var(--gold-3) 50%, var(--gold-2) 70%, var(--gold-deep) 100%);
  --grad-steel: linear-gradient(135deg, var(--silver-deep) 0%, var(--silver-2) 48%, var(--silver-1) 70%, var(--silver-deep) 100%);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1240px;
}

html.light {
  --bg:        #f5f3ee;
  --bg-2:      #ffffff;
  --bg-3:      #efece4;
  --surface:   rgba(20,18,12,0.035);
  --surface-2: rgba(20,18,12,0.06);
  --border:    rgba(20,18,12,0.1);
  --border-strong: rgba(20,18,12,0.18);
  --ink:       #14130f;
  --ink-soft:  #4a473f;
  --ink-faint: #837f73;
  --shadow: 0 24px 50px -24px rgba(40,30,0,0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .5s ease, color .5s ease;
}

::selection { background: var(--gold-2); color: #0a0a0e; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Ambient hexagon field painted on the page background */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M28 0L52 14V42L28 56L4 42V14Z'/%3E%3Cpath d='M28 56L52 70V98L28 112'/%3E%3Cpath d='M28 56L4 70V98'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 35%, transparent 85%);
}
html.light body::before { filter: invert(1); opacity: .5; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex; align-items: center; gap: .6em;
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--grad-gold); }

h1,h2,h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; margin: 0; }

.metal-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: sheen 7s linear infinite;
}
.metal-steel {
  background: var(--grad-steel);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
@keyframes sheen { to { background-position: 200% 50%; } }

.section { padding: 120px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --b: 1px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: var(--b) solid transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .6em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, filter .25s, background .25s;
  position: relative;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-gold {
  background: var(--grad-gold);
  background-size: 180% 180%;
  color: #1a1304;
  box-shadow: 0 10px 30px -8px rgba(230,197,88,.5);
}
.btn-gold:hover { transform: translateY(-3px); filter: brightness(1.06); box-shadow: 0 18px 40px -10px rgba(230,197,88,.6); animation: sheen 3s linear infinite; }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Glass card ---------- */
.glass {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.hairline-gold { position: relative; }
.hairline-gold::before {
  content:""; position:absolute; inset:0; border-radius:inherit; padding:1px;
  background: linear-gradient(180deg, rgba(230,197,88,.55), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events:none;
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  transition: padding .3s, background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand small { display:block; font-family: var(--font-mono); font-size:.58rem; letter-spacing:.32em; color: var(--gold-2); font-weight:500; margin-top:2px; }
.brand b { font-size: 1.02rem; line-height:1; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .92rem; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--grad-gold); transition: width .25s; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink); font-weight: 600; font-size: 14px;
  letter-spacing: .2px; white-space: nowrap;
  transition: border-color .25s, color .25s, background .25s;
}
.nav-call svg { color: var(--gold-2); flex: none; }
.nav-call:hover { border-color: var(--gold-2); color: var(--gold-2); }
@media (max-width: 880px) { .nav-call span { display: none; } .nav-call { padding: 9px; } }

.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  transition: transform .3s, border-color .25s, background .25s;
}
.theme-toggle:hover { transform: rotate(20deg); border-color: var(--gold-2); color: var(--gold-2); }
.theme-toggle .moon { display: none; }
html.light .theme-toggle .moon { display: block; }
html.light .theme-toggle .sun { display: none; }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink); cursor: pointer; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; }
.mobile-menu .close { position: absolute; top: 20px; right: 22px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink); cursor: pointer; font-size: 1.4rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 120px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: .5; filter: saturate(1.04) contrast(1.03);
}
.hero-video-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,14,.58) 0%, rgba(10,10,14,.5) 45%, rgba(10,10,14,.86) 100%),
    radial-gradient(120% 90% at 72% 28%, rgba(184,134,43,.10), transparent 60%);
}
html.light .hero-video { opacity: .32; }
html.light .hero-video-veil {
  background:
    linear-gradient(180deg, rgba(245,243,238,.62) 0%, rgba(245,243,238,.5) 45%, rgba(245,243,238,.85) 100%),
    radial-gradient(120% 90% at 72% 28%, rgba(184,134,43,.10), transparent 60%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-glow.g1 { width: 560px; height: 560px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(230,197,88,.4), transparent 70%); }
.hero-glow.g2 { width: 520px; height: 520px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(150,160,175,.28), transparent 70%); animation-delay: -6s; }
@keyframes drift { to { transform: translate(40px, 30px) scale(1.1); } }

#pebble-field { position: absolute; inset: 0; z-index: 0; opacity: .9; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; width: 100%; }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5.4rem); }
.hero .sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 560px; margin: 26px 0 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-display); font-size: 1.9rem; display: block; }
.hero-stats .stat span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); }

.hero-card {
  padding: 8px; border-radius: var(--radius-lg);
  transform: rotate(1.4deg);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: rotate(1.4deg) translateY(-12px); } }
.hero-card canvas { width: 100%; border-radius: 20px; display: block; }
.hero-card .tag {
  position: absolute; left: 18px; top: 18px; z-index: 3;
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  background: rgba(10,10,14,.6); border: 1px solid var(--border-strong); color: var(--gold-2);
  padding: 7px 12px; border-radius: 999px; backdrop-filter: blur(6px);
}

/* ── Animated logo hero card ── */
.hero-logo-card { padding: 0; overflow: hidden; background: radial-gradient(ellipse at 50% 40%, rgba(185,145,50,.12) 0%, rgba(5,5,8,.95) 70%); }
.logo-anim-wrap { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; padding: 40px 32px; min-height: 380px; }
.logo-anim-img {
  position: relative; z-index: 2;
  width: 82%; max-width: 360px;
  border-radius: 12px;
  filter: drop-shadow(0 0 28px rgba(185,145,50,.55)) drop-shadow(0 0 60px rgba(185,145,50,.25));
  animation: logoFloat 7s ease-in-out infinite, logoPulse 4s ease-in-out infinite;
}
.logo-glow-ring {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(185,145,50,.18) 0%, transparent 68%);
  animation: ringPulse 4s ease-in-out infinite;
}
.logo-shimmer {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmerPass 3.5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(185,145,50,.55)) drop-shadow(0 0 60px rgba(185,145,50,.25)); }
  50%       { filter: drop-shadow(0 0 44px rgba(185,145,50,.85)) drop-shadow(0 0 90px rgba(185,145,50,.45)); }
}
@keyframes ringPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.08); }
}
@keyframes shimmerPass {
  0%   { background-position: -100% 0; }
  60%  { background-position: 200% 0; }
  100% { background-position: 200% 0; }
}

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-faint); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; }
.scroll-hint .mouse { width: 22px; height: 36px; border: 1.5px solid var(--ink-faint); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content:""; position:absolute; left:50%; top:7px; width:3px; height:7px; border-radius:2px; background: var(--gold-2); transform: translateX(-50%); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 50% { transform: translate(-50%, 8px); opacity:.3; } }

.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; background: var(--bg-2); position: relative; z-index: 1; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marq 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink-faint); display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: "◆"; color: var(--gold-2); font-size: .8rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* =====================================================================
   AI DESIGN STUDIO
   ===================================================================== */
#studio { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.studio-shell { display: grid; grid-template-columns: 420px 1fr; gap: 22px; }
.studio-controls { padding: 26px; }
.studio-stage { padding: 18px; position: relative; overflow: hidden; min-height: 540px; display: flex; flex-direction: column; }

.prompt-wrap { position: relative; }
.prompt-wrap textarea {
  width: 100%; min-height: 96px; resize: vertical;
  background: var(--bg-3); color: var(--ink);
  border: 1px solid var(--border-strong); border-radius: 14px;
  padding: 14px 16px; font-family: var(--font-body); font-size: .98rem;
  transition: border-color .2s, box-shadow .2s;
}
.prompt-wrap textarea:focus { outline: none; border-color: var(--gold-2); box-shadow: 0 0 0 4px rgba(230,197,88,.14); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 6px; }
.chip {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink-soft);
  transition: all .2s;
}
.chip:hover { border-color: var(--gold-2); color: var(--gold-2); transform: translateY(-1px); }

.ctrl-label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin: 22px 0 10px; }

.mode-switch { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; background: var(--bg-3); padding: 5px; border-radius: 14px; border: 1px solid var(--border); }
.mode-switch button { font-family: var(--font-display); font-weight: 600; font-size: .82rem; padding: 10px 6px; border-radius: 10px; border: none; background: transparent; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.mode-switch button.active { background: var(--grad-gold); color: #1a1304; }

.swatches { display: flex; flex-wrap: wrap; gap: 8px; max-height: 220px; overflow-y: auto; padding-right: 4px; }
.swatches::-webkit-scrollbar { width: 4px; }
.swatches::-webkit-scrollbar-track { background: transparent; }
.swatches::-webkit-scrollbar-thumb { background: var(--gold-1); border-radius: 2px; }
/* Full-width Vuba Selection layout */
.vuba-selection-wrap { max-width: 960px; margin: 0 auto; }
.swatches-full { max-height: none; overflow-y: visible; gap: 12px; justify-content: center; padding-right: 0; }
.swatches-full .swatch { width: 130px; height: 130px; }
.swatches-full .swatch-name { font-size: .72rem; }
.swatch { width: 52px; height: 52px; border-radius: 8px; cursor: pointer; border: 2px solid transparent; position: relative; transition: transform .18s, border-color .18s; overflow: hidden; flex-shrink: 0; }
.swatch:hover { transform: scale(1.1); border-color: rgba(230,197,88,0.5); }
.swatch.active { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(230,197,88,.25); }
.swatch span { position:absolute; bottom:0; left:0; right:0; background: rgba(0,0,0,0.72); font-family:var(--font-mono); font-size:.52rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; color:#fff; padding: 2px 3px; text-align:center; opacity:0; transition:opacity .2s; }
.swatch:hover span { opacity:1; }

/* Photo upload zone */
.photo-upload-zone { border-radius: 12px; overflow: hidden; }
.photo-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 18px 12px; border: 1.5px dashed var(--border-strong);
  border-radius: 12px; cursor: pointer; text-align: center; color: var(--ink-soft);
  font-size: .85rem; transition: border-color .2s, background .2s;
}
.photo-drop:hover { border-color: var(--gold-2); background: rgba(230,197,88,.04); }
.photo-drop.dragover { border-color: var(--gold-2); background: rgba(230,197,88,.08); }
.upload-sub { font-size: .72rem; color: var(--ink-faint); font-family: var(--font-mono); }
.photo-preview { display: none; align-items: center; gap: 12px; padding: 10px 12px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; }
.photo-preview.visible { display: flex; }
.photo-preview img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; border: 1px solid var(--border-strong); }
.photo-preview-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.photo-preview-info span { font-size: .78rem; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.photo-preview-info button { background: none; border: 1px solid var(--border-strong); color: var(--ink-faint); border-radius: 6px; padding: 3px 8px; font-size: .72rem; cursor: pointer; align-self: flex-start; transition: all .2s; }
.photo-preview-info button:hover { border-color: #c0392b; color: #e74c3c; }

/* Brush bar (photo mode) */
.brush-bar { display: none; align-items: center; gap: 12px; padding: 10px 14px; margin-bottom: 10px; background: rgba(230,197,88,.07); border: 1px solid rgba(230,197,88,.25); border-radius: 12px; flex-wrap: wrap; }
.brush-bar.active { display: flex; }
.brush-hint { display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); flex: 1; min-width: 180px; }
.brush-size-row { display: flex; align-items: center; gap: 8px; }
.brush-size-row label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.brush-size-row input[type=range] { width: 90px; accent-color: var(--gold-2); }

/* Paint prompt — shown over canvas before first stroke */
.paint-prompt { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 12px; pointer-events: none; z-index: 3; }
.paint-prompt.active { display: flex; }
.paint-prompt span { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); text-align: center; line-height: 1.7; text-shadow: 0 1px 6px rgba(0,0,0,.8); }
.paint-prompt-default { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.paint-prompt-status { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(230,197,88,.9); background: rgba(0,0,0,.55); padding: 10px 20px; border-radius: 8px; text-shadow: 0 1px 6px rgba(0,0,0,.8); backdrop-filter: blur(6px); }

/* Painting cursor on canvas */
#stageCanvas.paint-mode { cursor: none; }

.opt-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.opt {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
  font-size: .88rem; transition: all .2s; user-select: none;
}
.opt:hover { border-color: var(--border-strong); }
.opt.on { border-color: var(--gold-2); background: rgba(230,197,88,.07); color: var(--ink); }
.opt .dot { width: 16px; height: 16px; border-radius: 5px; border: 1.5px solid var(--border-strong); flex:none; display:grid; place-items:center; transition: all .2s; }
.opt.on .dot { background: var(--grad-gold); border-color: transparent; }
.opt.on .dot::after { content:"✓"; font-size:.62rem; color:#1a1304; font-weight:900; }

.stage-canvas-wrap { flex: 1; border-radius: 18px; overflow: hidden; position: relative; background: var(--bg-3); border: 1px solid var(--border); min-height: 360px; }
.stage-canvas-wrap canvas { width: 100%; height: 100%; display: block; }
.stage-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.stage-meta .read { font-size: .9rem; color: var(--ink-soft); max-width: 70%; }
.gen-badge { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); display: inline-flex; align-items: center; gap: 8px; }
.gen-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 0 rgba(230,197,88,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(230,197,88,0);} 100% { box-shadow:0 0 0 0 rgba(230,197,88,0);} }

.stage-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: color-mix(in srgb, var(--bg-3) 78%, transparent); backdrop-filter: blur(4px);
  z-index: 4; transition: opacity .4s; text-align: center;
}
.stage-overlay.hide { opacity: 0; pointer-events: none; }
.loader-hex { width: 54px; height: 54px; margin: 0 auto 16px; animation: spin 1.1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.stage-footer { display: flex; gap: 10px; margin-top: 16px; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  padding: 30px; position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s;
}
.svc:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.svc .ic { width: 56px; height: 56px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 22px; color: var(--gold-2); }
.svc h3 { font-size: 1.4rem; margin-bottom: 12px; }
.svc p { color: var(--ink-soft); font-size: .96rem; }
.svc ul { list-style: none; padding: 0; margin: 18px 0 0; }
.svc li { display: flex; gap: 10px; align-items: center; padding: 6px 0; font-size: .9rem; color: var(--ink-soft); }
.svc li::before { content:""; width: 6px; height: 6px; border-radius: 2px; background: var(--grad-gold); transform: rotate(45deg); flex:none; }
.svc.featured { background: linear-gradient(180deg, rgba(230,197,88,.1), var(--surface)); }
.svc-badge { position: absolute; top: 22px; right: -34px; transform: rotate(45deg); background: var(--grad-gold); color: #1a1304; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .2em; font-weight: 700; padding: 5px 40px; }
.svc-glow { position:absolute; width:200px; height:200px; border-radius:50%; filter: blur(60px); background: radial-gradient(circle, rgba(230,197,88,.35), transparent 70%); top:-60px; right:-40px; opacity:0; transition:opacity .4s; }
.svc:hover .svc-glow { opacity:1; }

/* =====================================================================
   WHY / TRUST
   ===================================================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.trust-badges { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 32px; }
.tb { padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.tb .ic { color: var(--gold-2); flex: none; margin-top: 2px; }
.tb b { display:block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 3px; }
.tb span { font-size: .85rem; color: var(--ink-soft); }

/* Before / after slider */
.ba {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--border); user-select: none; cursor: ew-resize; box-shadow: var(--shadow);
}
.ba .layer { position: absolute; inset: 0; }
.ba .layer img { width: 100%; height: 100%; display:block; object-fit:cover; object-position:center; user-select:none; pointer-events:none; }
.ba .after { clip-path: inset(0 0 0 50%); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold-2); z-index: 5; transform: translateX(-1px); }
.ba .knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #1a1304; box-shadow: 0 6px 20px rgba(0,0,0,.4); z-index: 6; }
.ba .lbl { position: absolute; bottom: 14px; z-index: 5; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(10,10,14,.6); border: 1px solid var(--border-strong); backdrop-filter: blur(5px); }
.ba .lbl.b { left: 14px; } .ba .lbl.a { right: 14px; color: var(--gold-2); }

/* Team showcase — themed photo */
.team-showcase {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; isolation: isolate;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), 0 0 0 1px rgba(230,197,88,.12), 0 0 60px -18px rgba(230,197,88,.35);
  background: var(--bg-3);
}
.team-showcase img {
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 22%;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  transform: scale(1.02);
}
.team-showcase:hover img { transform: scale(1.07); filter: saturate(1.12) contrast(1.07); }
/* Gradient blend + gold tint so the photo melts into the dark theme */
.team-showcase::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(10,10,14,.25) 100%),
    linear-gradient(180deg, rgba(10,10,14,.10) 0%, transparent 26%, transparent 52%, rgba(10,10,14,.82) 100%),
    linear-gradient(115deg, rgba(184,134,43,.16) 0%, transparent 38%, transparent 70%, rgba(138,95,28,.18) 100%);
  mix-blend-mode: normal;
}
/* Inner gold frame line */
.team-showcase::after {
  content: ""; position: absolute; inset: 10px; z-index: 3; pointer-events: none;
  border-radius: calc(var(--radius-lg) - 12px);
  border: 1px solid rgba(230,197,88,.28);
  box-shadow: inset 0 0 40px -14px rgba(230,197,88,.4);
}
/* Sweeping shimmer */
.team-showcase .ts-sheen {
  position: absolute; inset: 0; z-index: 4; pointer-events: none; overflow: hidden;
}
.team-showcase .ts-sheen::before {
  content: ""; position: absolute; top: -60%; left: -30%; width: 40%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(247,231,168,.16), transparent);
  transform: rotate(8deg); filter: blur(6px);
  animation: tsSheen 6.5s ease-in-out infinite;
}
.team-showcase figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; pointer-events: none;
  padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 6px;
}
.team-showcase .ts-eyebrow {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-2);
}
.team-showcase .ts-title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  line-height: 1.18; color: var(--ink); text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.team-showcase .ts-title em {
  font-style: normal;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes tsSheen {
  0% { left: -35%; opacity: 0; }
  18% { opacity: 1; }
  55% { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}

/* =====================================================================
   BUILD-UP / LAYERS
   ===================================================================== */
.buildup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.buildup-figure {
  margin: 0; position: relative; display: flex; justify-content: center; isolation: isolate;
}
.buildup-figure::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 55% at 50% 45%, rgba(230,197,88,.18), transparent 70%);
  filter: blur(10px);
}
.buildup-figure img {
  width: 100%; max-width: 460px; height: auto; display: block;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.55));
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.buildup-figure:hover img { transform: translateY(-6px) scale(1.02); }
.layer-list { list-style: none; display: flex; flex-direction: column; gap: 12px; counter-reset: layer; }
.layer-item {
  display: flex; gap: 18px; align-items: flex-start; padding: 16px 20px;
  transition: transform .25s ease, border-color .25s ease;
}
.layer-item:hover { transform: translateX(6px); border-color: rgba(230,197,88,.4); }
.layer-num {
  font-family: var(--font-mono); font-size: 1.05rem; font-weight: 700; flex: none;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  min-width: 28px;
}
.layer-item b { display: block; font-family: var(--font-display); font-size: 1.02rem; margin-bottom: 4px; }
.layer-item span { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; padding: 9px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--ink-soft); cursor: pointer; transition: all .25s; }
.filter-btn:hover { border-color: var(--border-strong); color: var(--ink); }
.filter-btn.active { background: var(--grad-gold); color: #1a1304; border-color: transparent; }

.masonry { columns: 3; column-gap: 18px; }
.tile { break-inside: avoid; margin-bottom: 18px; border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--border); transition: transform .4s, opacity .4s; }
.tile.hidden { display: none; }
.tile canvas { width: 100%; display: block; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.tile:hover canvas { transform: scale(1.06); }
.tile .cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; background: linear-gradient(0deg, rgba(8,8,12,.82), transparent 55%); opacity: 0; transition: opacity .3s; }
.tile:hover .cap { opacity: 1; }
.tile .cap b { font-family: var(--font-display); font-size: 1.05rem; }
.tile .cap span { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }

.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(5,5,8,.92); backdrop-filter: blur(14px); display: none; place-items: center; padding: 30px; }
.lightbox.open { display: grid; animation: fade .3s; }
@keyframes fade { from { opacity: 0; } }
.lightbox .frame { max-width: 820px; width: 100%; }
.lightbox img { width: 100%; border-radius: 18px; border: 1px solid var(--border-strong); display: block; object-fit: cover; max-height: 500px; }
.lightbox .x { position: absolute; top: 24px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border-strong); color: var(--ink); font-size: 1.3rem; cursor: pointer; }
.lightbox .meta { margin-top: 16px; text-align: center; }
.lightbox .meta b { font-family: var(--font-display); font-size: 1.3rem; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.tcard .stars { color: var(--gold-2); letter-spacing: 3px; }
.tcard p { color: var(--ink); font-size: 1.02rem; line-height: 1.65; margin: 0; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #1a1304; font-family: var(--font-display); font-weight: 800; }
.tcard .who b { display: block; font-size: .94rem; } .tcard .who span { font-size: .78rem; color: var(--ink-faint); }

/* =====================================================================
   PRICING
   ===================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.price { padding: 32px; display: flex; flex-direction: column; transition: transform .35s; position: relative; }
.price:hover { transform: translateY(-6px); }
.price.pop { background: linear-gradient(180deg, rgba(230,197,88,.1), var(--surface)); }
.price .pop-tag { position: absolute; top: 18px; right: 18px; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .18em; padding: 5px 11px; border-radius: 999px; background: var(--grad-gold); color: #1a1304; }
.price h3 { font-size: 1.3rem; } .price .from { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-top: 18px; }
.price .amt { font-family: var(--font-display); font-size: 2.6rem; margin: 4px 0 4px; } .price .amt small { font-size: 1rem; color: var(--ink-soft); font-weight: 500; }
.price .unit { color: var(--ink-soft); font-size: .85rem; }
.price ul { list-style: none; padding: 0; margin: 22px 0; flex: 1; }
.price li { padding: 8px 0; font-size: .9rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--border); }
.price li::before { content:"✓"; color: var(--gold-2); font-weight: 800; }

/* =====================================================================
   QUOTE
   ===================================================================== */
.quote-shell { display: grid; grid-template-columns: 1fr 380px; gap: 22px; }
.quote-form { padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border-strong); color: var(--ink);
  border-radius: 12px; padding: 13px 14px; font-family: var(--font-body); font-size: .96rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-2); box-shadow: 0 0 0 4px rgba(230,197,88,.12); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.opt-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-pill { padding: 9px 14px; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--bg-3); cursor: pointer; font-size: .85rem; transition: all .2s; user-select: none; }
.opt-pill.on { background: rgba(230,197,88,.1); border-color: var(--gold-2); color: var(--gold-2); }

.estimate { padding: 30px; position: sticky; top: 90px; align-self: start; }
.estimate .big { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; margin: 8px 0; }
.estimate .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.estimate .row span:first-child { color: var(--ink-soft); }
.estimate .note { font-size: .76rem; color: var(--ink-faint); margin-top: 16px; line-height: 1.5; }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 70px 0 30px; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-grid h4 { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 16px; }
.foot-grid a { display: block; color: var(--ink-soft); padding: 6px 0; font-size: .92rem; transition: color .2s; }
.foot-grid a:hover { color: var(--gold-2); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--ink-faint); font-size: .82rem; flex-wrap: wrap; gap: 14px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink-soft); transition: all .25s; }
.socials a:hover { color: var(--gold-2); border-color: var(--gold-2); transform: translateY(-3px); }

/* =====================================================================
   ROXY CHATBOT
   ===================================================================== */
.roxy-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  display: flex; align-items: center; gap: 12px; padding: 10px 18px 10px 10px;
  border-radius: 999px; cursor: pointer; border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  box-shadow: var(--shadow); transition: transform .3s;
}
.roxy-fab:hover { transform: translateY(-4px); }
.roxy-fab .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #1a1304; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; position: relative; }
.roxy-fab .av .on { position: absolute; bottom: 1px; right: 1px; width: 11px; height: 11px; border-radius: 50%; background: #46d17a; border: 2px solid var(--bg-2); }
.roxy-fab .t b { display: block; font-family: var(--font-display); font-size: .9rem; }
.roxy-fab .t span { font-size: .72rem; color: var(--ink-faint); }

.roxy-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 81;
  width: 380px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100svh - 48px);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s;
}
.roxy-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.roxy-head { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid var(--border); }
.roxy-head .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #1a1304; font-family: var(--font-display); font-weight: 800; }
.roxy-head b { font-family: var(--font-display); font-size: 1rem; }
.roxy-head span { font-size: .74rem; color: #46d17a; display: flex; align-items: center; gap: 5px; }
.roxy-head .x { margin-left: auto; background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 1.4rem; }
.roxy-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 84%; padding: 12px 15px; border-radius: 16px; font-size: .92rem; line-height: 1.5; animation: pop .3s ease; }
@keyframes pop { from { transform: translateY(8px); opacity: 0; } }
.msg.bot { background: var(--bg-3); border: 1px solid var(--border); border-bottom-left-radius: 5px; align-self: flex-start; }
.msg.user { background: var(--grad-gold); color: #1a1304; border-bottom-right-radius: 5px; align-self: flex-end; font-weight: 500; }
.msg b { color: var(--gold-2); } .msg.user b { color: #1a1304; }
.roxy-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 10px; }
.roxy-quick button { font-family: var(--font-mono); font-size: .72rem; padding: 7px 11px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.roxy-quick button:hover { border-color: var(--gold-2); color: var(--gold-2); }
.roxy-input { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--border); }
.roxy-input input { flex: 1; background: var(--bg-3); border: 1px solid var(--border-strong); color: var(--ink); border-radius: 999px; padding: 11px 16px; font-family: var(--font-body); }
.roxy-input input:focus { outline: none; border-color: var(--gold-2); }
.roxy-input button { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--grad-gold); color: #1a1304; cursor: pointer; display: grid; place-items: center; flex: none; transition: transform .2s; }
.roxy-input button:hover { transform: scale(1.08); }
.typing { display: flex; gap: 4px; padding: 14px 16px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); animation: blink 1.2s infinite; }
.typing span:nth-child(2){ animation-delay:.2s; } .typing span:nth-child(3){ animation-delay:.4s; }
@keyframes blink { 0%,60%,100%{ opacity:.25; transform: translateY(0);} 30%{ opacity:1; transform: translateY(-3px);} }

/* =====================================================================
   REVEAL ON SCROLL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* Page loader */
#loader { position: fixed; inset: 0; z-index: 200; background: var(--bg); display: grid; place-items: center; transition: opacity .6s, visibility .6s; }
#loader.done { opacity: 0; visibility: hidden; }
#loader .hexspin { width: 64px; height: 64px; animation: spin 1.2s linear infinite; }
#loader .lt { margin-top: 18px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .studio-shell { grid-template-columns: 1fr; }
  .quote-shell { grid-template-columns: 1fr; }
  .estimate { position: static; }
  .masonry { columns: 2; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .buildup-grid { grid-template-columns: 1fr; gap: 36px; }
  .buildup-figure img { max-width: 360px; }
  .services-grid, .tcards, .price-grid { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .grid2 { grid-template-columns: 1fr; }
  .opt-row { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .roxy-fab .t { display: none; }
  .hero-stats { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 6px; }
