/* ==========================================================================
   Quality One Engravers — "Precision Metal"
   Vanilla CSS. No frameworks.
   Sections: 1 Fonts · 2 Tokens · 3 Reset · 4 Type · 5 Layout · 6 Buttons
             7 Topbar/Header · 8 Hero · 9 Marquee · 10 Stats · 11 Cards
             12 Bands · 13 Products · 14 Reviews · 15 Form · 16 Footer
             17 Mobile bar · 18 Popup · 19 Utilities · 20 Motion · 21 Responsive
   ========================================================================== */

/* 1. FONTS ---------------------------------------------------------------- */
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/archivo-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

/* 2. TOKENS --------------------------------------------------------------- */
:root {
  /* Ground */
  --ink: #0b0d0f;
  --ink-2: #101317;
  --graphite: #16191d;
  --graphite-2: #1c2026;
  --steel-800: #2a2f36;
  --steel-600: #3d444d;
  --steel-500: #6b7480;
  --steel-400: #8d96a2;
  --steel-200: #c9cfd6;
  --paper: #f4f5f7;
  --paper-2: #eaecef;
  --white: #ffffff;

  /* Accent — brass */
  --brass: #c8973f;
  --brass-300: #e3bd74;
  --brass-100: #f6e9ce;
  --brass-ink: #8a6420; /* AA-safe brass for text on light */
  --copper: #9a5b32;

  /* Semantic */
  --success: #2e7d5b;
  --danger: #c0392b;

  /* Text roles */
  --tx-on-dark: #e8ebef;
  --tx-on-dark-mute: #99a2ad;
  --tx-on-light: #191d22;
  --tx-on-light-mute: #4b535d;

  /* Gradients */
  --g-brass: linear-gradient(135deg, var(--brass-300) 0%, var(--brass) 45%, var(--copper) 100%);
  --g-rule: linear-gradient(90deg, transparent, var(--brass) 25%, var(--brass-300) 50%, var(--brass) 75%, transparent);
  --g-steel: linear-gradient(160deg, #22262c 0%, #16191d 55%, #0e1114 100%);

  /* Elevation — always multi-layer */
  --sh-1: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 6px -2px rgba(0, 0, 0, .28);
  --sh-2: 0 1px 2px rgba(0, 0, 0, .28), 0 8px 20px -8px rgba(0, 0, 0, .38), 0 24px 48px -24px rgba(0, 0, 0, .5);
  --sh-3: 0 2px 4px rgba(0, 0, 0, .3), 0 18px 40px -12px rgba(0, 0, 0, .5), 0 48px 88px -40px rgba(0, 0, 0, .62);
  --sh-brass: 0 6px 24px -8px rgba(200, 151, 63, .45), 0 2px 6px -2px rgba(200, 151, 63, .3);
  --edge-top: inset 0 1px 0 rgba(255, 255, 255, .07);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Space */
  --s1: 4px;  --s2: 8px;   --s3: 12px;  --s4: 16px;  --s5: 24px;
  --s6: 32px; --s7: 48px;  --s8: 64px;  --s9: 96px;  --s10: 128px;

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 860px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Chrome heights */
  --topbar-h: 38px;
  --header-h: 84px;
  --header-h-sm: 62px;

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --dur-1: 160ms;
  --dur-2: 260ms;
  --dur-3: 420ms;
  --dur-4: 640ms;

  /* Z-index scale */
  --z-base: 1;
  --z-raise: 10;
  --z-sticky: 20;
  --z-mobilebar: 90;
  --z-header: 100;
  --z-progress: 110;
  --z-drawer: 150;
  --z-modal: 200;
}

/* 3. RESET ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-sm) + 20px);
}
body {
  background: var(--ink);
  color: var(--tx-on-dark);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
/* An explicit `display` on a component beats the UA rule for [hidden],
   so filtered-out cards would stay on screen. Make hidden actually hidden. */
[hidden] { display: none !important; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }
:focus-visible {
  outline: 2px solid var(--brass-300);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
::selection { background: var(--brass); color: var(--ink); }

/* 4. TYPOGRAPHY ----------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Archivo', 'Archivo Narrow', Impact, ui-sans-serif, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.022em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -.015em; }
h4, .fcard h3, .pcard-body h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
p { text-wrap: pretty; }

/* The signature: text cut into the surface */
.engraved {
  color: var(--tx-on-dark);
  text-shadow:
    0 -1px 0 rgba(0, 0, 0, .85),
    0 1px 0 rgba(255, 255, 255, .12),
    0 2px 18px rgba(0, 0, 0, .5);
}
.engraved-light {
  color: var(--tx-on-light);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .22), 0 1px 0 rgba(255, 255, 255, .95);
}
.gold { color: var(--brass-300); }
.gold-ink { color: var(--brass-ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s4);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--g-brass);
  flex: none;
}
.on-light .eyebrow { color: var(--brass-ink); }

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.72;
  color: var(--tx-on-dark-mute);
  max-width: 62ch;
}
.on-light .lead { color: var(--tx-on-light-mute); }
.muted { color: var(--tx-on-dark-mute); }
.on-light .muted { color: var(--tx-on-light-mute); }
.tabular { font-variant-numeric: tabular-nums; }

/* 5. LAYOUT --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { position: relative; padding-block: clamp(64px, 9vw, 128px); }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }

.on-light { background: var(--paper); color: var(--tx-on-light); }
.on-light h1, .on-light h2, .on-light h3, .on-light h4 { color: var(--tx-on-light); }

/* Brushed-metal micro texture over dark bands */
.textured::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .014) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .05) 0 1px, transparent 1px 4px);
}

/* Machined divider */
.rule { height: 1px; background: var(--g-rule); opacity: .55; border: 0; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: var(--s4); }

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.head-row .section-head { margin-bottom: 0; }

/* 6. BUTTONS -------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              background-color var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex: none; }

/* brass sheen sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 45%;
  z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg) translateX(0);
  transition: transform 620ms var(--ease-out);
}
.btn:hover::after { transform: skewX(-18deg) translateX(360%); }

.btn-primary {
  background: var(--g-brass);
  color: #1a1204;
  box-shadow: var(--sh-brass), var(--edge-top);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(200, 151, 63, .58), var(--edge-top); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  color: var(--tx-on-dark);
  border: 1px solid var(--steel-600);
  background: rgba(255, 255, 255, .03);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-300); background: rgba(200, 151, 63, .08); transform: translateY(-2px); }

.on-light .btn-ghost { color: var(--tx-on-light); border-color: #cdd2d8; background: var(--white); }
.on-light .btn-ghost:hover { border-color: var(--brass); color: var(--brass-ink); background: #fffaf0; }

.btn-sm { min-height: 40px; padding: 9px 18px; font-size: .86rem; }
.btn-lg { min-height: 56px; padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--brass);
  cursor: pointer;
}
.on-light .link-arrow { color: var(--brass-ink); }
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur-2) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(5px); }

/* 7. TOPBAR + HEADER ------------------------------------------------------ */
.topbar {
  background: #07090b;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: .78rem;
  color: var(--steel-400);
}
.topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  min-height: var(--topbar-h);
}
.topbar-list { display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap; }
.topbar-list li { display: flex; align-items: center; gap: 7px; }
.topbar-list svg { width: 13px; height: 13px; color: var(--brass); flex: none; }
.topbar a:hover { color: var(--brass-300); }
.topbar .sep { color: var(--steel-600); }

.socials { display: flex; align-items: center; gap: 6px; }
.socials a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  color: var(--steel-400);
  transition: color var(--dur-2), border-color var(--dur-2), background-color var(--dur-2), transform var(--dur-2) var(--ease-out);
}
.socials a:hover { color: var(--brass-300); border-color: rgba(200, 151, 63, .35); background: rgba(200, 151, 63, .1); transform: translateY(-1px); }
.socials svg { width: 15px; height: 15px; }

/* Sticky, shrinking, glass */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(11, 13, 15, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: background-color var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out),
              border-color var(--dur-3) var(--ease-out);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--g-rule);
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(11, 13, 15, .78);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 8px 28px -14px rgba(0, 0, 0, .85);
}
.site-header.is-scrolled::after { opacity: .8; }
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header.is-scrolled { background: #0d1013; }
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  height: var(--header-h);
  transition: height var(--dur-3) var(--ease-out);
}
.site-header.is-scrolled .header-in { height: var(--header-h-sm); }

/* Logo area — image only, never a hardcoded text title */
.brand { display: block; flex: none; transform-origin: left center; transition: transform var(--dur-3) var(--ease-out); }
.brand img { width: 236px; height: auto; }
.site-header.is-scrolled .brand { transform: scale(.78); }
@media (max-width: 420px) { .brand img { width: 178px; } .brand { padding: 6px 9px; } }

/* The mark is black artwork on white paper — give it a real plate rather
   than inverting it, so the brand reproduces exactly as the client uses it. */
.brand {
  padding: 7px 12px;
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 6px 18px -8px rgba(0, 0, 0, .55);
}
.site-header.is-scrolled .brand { transform: scale(.82); }
.footer-brand .plate {
  display: inline-block;
  padding: 9px 13px;
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 8px 22px -10px rgba(0, 0, 0, .6);
  margin-bottom: var(--s5);
}

.nav { display: flex; align-items: center; gap: clamp(14px, 1.9vw, 30px); }
.nav a {
  position: relative;
  font-size: .93rem;
  font-weight: 500;
  color: var(--tx-on-dark-mute);
  padding: 6px 0;
  transition: color var(--dur-2);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--g-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-3) var(--ease-out);
}
.nav a:hover { color: var(--tx-on-dark); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--brass-300); }

.header-cta { display: flex; align-items: center; gap: var(--s3); }

/* Hamburger */
.burger {
  display: none;
  width: 46px; height: 46px;
  place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--steel-800);
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--tx-on-dark);
  border-radius: 2px;
  transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-1);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  z-index: var(--z-drawer);
  background: rgba(13, 16, 19, .96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--sh-3);
  padding: var(--s6) var(--s5) var(--s8);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--dur-3) var(--ease-out), visibility var(--dur-3);
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--steel-400); border-radius: var(--r-sm); }
.drawer-close:hover { color: var(--brass-300); }
.drawer-close svg { width: 20px; height: 20px; }
.drawer-nav { display: flex; flex-direction: column; gap: 2px; margin-top: var(--s6); }
.drawer-nav a {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  opacity: 0;
  transform: translateX(16px);
  transition: color var(--dur-2), opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.drawer.is-open .drawer-nav a { opacity: 1; transform: translateX(0); }
.drawer-nav a:hover, .drawer-nav a[aria-current="page"] { color: var(--brass-300); }
.drawer-meta { margin-top: var(--s6); display: grid; gap: var(--s3); font-size: .88rem; color: var(--tx-on-dark-mute); }
.drawer-meta a { display: flex; align-items: center; gap: 10px; }
.drawer-meta svg { width: 15px; height: 15px; color: var(--brass); flex: none; }

.scrim {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-drawer) - 1);
  background: rgba(4, 5, 6, .66);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-3), visibility var(--dur-3);
}
.scrim.is-on { opacity: 1; visibility: visible; }

/* Scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: var(--z-progress);
  background: var(--g-brass);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: var(--z-modal);
  background: var(--brass);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.skip:focus { left: 12px; }

/* 8. HERO ----------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  padding-block: clamp(56px, 8vw, 104px) clamp(64px, 9vw, 120px);
}
/* plane 1 — glow + grid */
.hero-bg {
  position: absolute;
  inset: -10% -5%;
  z-index: -3;
  background:
    radial-gradient(58% 46% at 72% 22%, rgba(200, 151, 63, .2), transparent 62%),
    radial-gradient(46% 40% at 12% 78%, rgba(154, 91, 50, .14), transparent 65%),
    var(--ink);
  will-change: transform;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 34%, #000 20%, transparent 76%);
  mask-image: radial-gradient(72% 62% at 50% 34%, #000 20%, transparent 76%);
}
/* plane 2 — drifting accents */
.orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  opacity: .5;
}
.orb-a { width: 380px; height: 380px; top: -80px; right: 4%; background: radial-gradient(circle, rgba(200, 151, 63, .5), transparent 70%); }
.orb-b { width: 300px; height: 300px; bottom: -60px; left: -60px; background: radial-gradient(circle, rgba(154, 91, 50, .45), transparent 70%); }

.hero-in {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}
.hero-copy { max-width: 660px; }
.hero h1 { margin-bottom: var(--s5); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: block;
  transform: translateY(105%);
  animation: riseIn 900ms var(--ease-out) forwards;
  animation-delay: calc(120ms + var(--i, 0) * 110ms);
}
@keyframes riseIn { to { transform: translateY(0); } }

.hero-rule {
  height: 2px;
  width: 132px;
  background: var(--g-brass);
  margin-bottom: var(--s5);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawRule 780ms var(--ease-out) 420ms forwards;
}
@keyframes drawRule { to { transform: scaleX(1); } }

.hero-lead, .hero-actions, .hero-chips {
  opacity: 0;
  animation: fadeUp 760ms var(--ease-out) forwards;
}
.hero-lead { animation-delay: 520ms; }
.hero-actions { animation-delay: 640ms; }
.hero-chips { animation-delay: 760ms; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.hero-chips { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s6); }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .035);
  font-size: .78rem;
  font-weight: 500;
  color: var(--steel-200);
  letter-spacing: .01em;
}
.chip::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); flex: none; }

/* plane 3 — the machine, in a machined frame */
.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--sh-3), var(--edge-top);
  background: var(--g-steel);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2.5deg);
  opacity: 0;
  animation: frameIn 1100ms var(--ease-out) 260ms forwards;
  will-change: transform;
}
@keyframes frameIn {
  from { opacity: 0; transform: perspective(1400px) rotateY(-14deg) rotateX(5deg) translateY(36px) scale(.94); }
  to   { opacity: 1; transform: perspective(1400px) rotateY(-7deg) rotateX(2.5deg) translateY(0) scale(1); }
}
.hero-frame img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(200, 151, 63, .16), transparent 42%, rgba(11, 13, 15, .58));
  pointer-events: none;
}

/* floating spec cards over the frame */
.spec-card {
  position: absolute;
  z-index: 2;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(18, 21, 25, .74);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--sh-2), var(--edge-top);
  opacity: 0;
  animation: fadeUp 700ms var(--ease-out) forwards;
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .spec-card { background: #14181c; }
}
.spec-card .k { font-family: 'Archivo', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--brass-300); line-height: 1; }
.spec-card .v { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel-400); margin-top: 5px; }
.spec-a { left: -26px; top: 16%; animation-delay: 900ms; }
.spec-b { right: -18px; bottom: 13%; animation-delay: 1020ms; }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(40px, 5vw, 72px);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel-500);
  opacity: 0;
  animation: fadeUp 700ms var(--ease-out) 1140ms forwards;
}
.scroll-cue .bar { position: relative; width: 44px; height: 1px; background: var(--steel-600); overflow: hidden; }
.scroll-cue .bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: translateX(-100%);
  animation: cueSlide 2.1s var(--ease-io) infinite;
}
@keyframes cueSlide { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

/* 9. MARQUEE -------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .07);
  background: var(--ink-2);
  padding-block: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-inline: clamp(20px, 3vw, 40px);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--steel-500);
  white-space: nowrap;
  transition: color var(--dur-2);
}
.marquee-track span::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brass); opacity: .6; }
.marquee:hover .marquee-track span { color: var(--steel-400); }

/* 10. STATS --------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat { background: var(--graphite); padding: clamp(22px, 3vw, 34px); text-align: center; transition: background-color var(--dur-3); }
.stat:hover { background: var(--graphite-2); }
.stat .n {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: var(--g-brass);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat .l { margin-top: 10px; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--steel-400); }

/* 11. CARDS (bento + 3D tilt) --------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}
.bento .tile-lg { grid-column: span 2; grid-row: span 2; }
.bento .tile-wide { grid-column: span 2; }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
  padding: var(--s5);
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: var(--sh-1);
  transform-style: preserve-3d;
  transition: transform var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out),
              border-color var(--dur-3) var(--ease-out);
  will-change: transform;
}
.bento .tile-lg { min-height: 434px; }
.tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
  transform: scale(1.02);
  transition: transform 760ms var(--ease-out), opacity var(--dur-3);
}
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(9, 11, 13, .95) 8%, rgba(9, 11, 13, .62) 46%, rgba(9, 11, 13, .3));
  transition: background var(--dur-3);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(200, 151, 63, .4); }
.tile:hover img { transform: scale(1.1); opacity: .62; }
.tile:hover::after { background: linear-gradient(to top, rgba(9, 11, 13, .93) 6%, rgba(28, 20, 8, .55) 52%, rgba(200, 151, 63, .12)); }
.tile h3 { transform: translateZ(28px); }
.tile-lg h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.tile .count {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  transform: translateZ(20px);
}
.tile .go {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--steel-400);
  transform: translateZ(20px);
  transition: color var(--dur-2), gap var(--dur-2);
}
.tile:hover .go { color: var(--brass-300); gap: 12px; }
.tile .go svg { width: 15px; height: 15px; }

/* Feature cards (light) */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(14px, 2vw, 24px); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(16px, 2.4vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }

.fcard {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid #e2e5e9;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 6px 16px -8px rgba(16, 24, 40, .12);
  overflow: hidden;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3);
}
.fcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-3) var(--ease-out);
}
.fcard:hover { transform: translateY(-5px); box-shadow: 0 2px 4px rgba(16, 24, 40, .06), 0 18px 36px -14px rgba(16, 24, 40, .24); border-color: #d6dbe1; }
.fcard:hover::before { transform: scaleX(1); }
.ficon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  margin-bottom: var(--s4);
  background: linear-gradient(145deg, #fdf6e6, #f3e3c2);
  border: 1px solid #ecdcbb;
  color: var(--brass-ink);
}
.ficon svg { width: 23px; height: 23px; }
.fcard h3 { margin-bottom: 8px; }
.fcard p { font-size: .93rem; line-height: 1.68; color: var(--tx-on-light-mute); }

/* dark variant */
.fcard-dark { background: var(--graphite); border-color: rgba(255, 255, 255, .07); box-shadow: var(--sh-1); }
.fcard-dark:hover { border-color: rgba(200, 151, 63, .35); box-shadow: var(--sh-2); }
.fcard-dark h3 { color: var(--tx-on-dark); }
.fcard-dark p { color: var(--tx-on-dark-mute); }
.fcard-dark .ficon { background: rgba(200, 151, 63, .1); border-color: rgba(200, 151, 63, .26); color: var(--brass-300); }

/* 12. SPLIT BAND ---------------------------------------------------------- */
.band { position: relative; overflow: hidden; background: var(--ink-2); }
.band-in {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.band-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: var(--sh-3);
}
.band-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; will-change: transform; }

/* The client's own supply banner — white ground, so it lives on a light band
   and keeps its native ratio rather than being cropped square. */
.wide-banner {
  margin: 0 0 clamp(28px, 4vw, 48px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e2e5e9;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 16px 40px -20px rgba(16, 24, 40, .28);
  line-height: 0;
}
.wide-banner img { width: 100%; height: auto; }
.band-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(200, 151, 63, .1), transparent 50%, rgba(11, 13, 15, .5));
}
.band-badge {
  position: absolute;
  z-index: 2;
  left: 20px; bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  background: rgba(18, 21, 25, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem;
  font-weight: 600;
}
.band-badge svg { width: 16px; height: 16px; color: var(--brass); }

.ticklist { display: grid; gap: 13px; margin-top: var(--s5); }
.ticklist li { display: flex; align-items: flex-start; gap: 12px; font-size: .96rem; color: var(--tx-on-dark-mute); }
.on-light .ticklist li { color: var(--tx-on-light-mute); }
.ticklist svg { width: 19px; height: 19px; margin-top: 3px; color: var(--brass); flex: none; }
.on-light .ticklist svg { color: var(--brass-ink); }

/* 13. PRODUCTS ------------------------------------------------------------ */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--s4);
  scrollbar-width: thin;
  scrollbar-color: var(--steel-600) transparent;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-track { background: rgba(255, 255, 255, .05); border-radius: 99px; }
.rail::-webkit-scrollbar-thumb { background: var(--steel-600); border-radius: 99px; }
.rail::-webkit-scrollbar-thumb:hover { background: var(--brass); }

.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }

.pcard {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: var(--sh-1);
  cursor: pointer;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(200, 151, 63, .4); }
.pcard-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.pcard-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform 620ms var(--ease-out); }
/* Flyer-derived crops are already framed on the machine — let them fill. */
.pcard-media--fill img { object-fit: cover; object-position: 25% center; padding: 0; }
.pcard:hover .pcard-media img { transform: scale(1.07); }
.pcard-sku {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  background: rgba(11, 13, 15, .84);
  color: var(--brass-300);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}
.pcard-body { display: flex; flex-direction: column; flex: 1; padding: var(--s4) var(--s4) var(--s5); }
.pcard-body h3 { font-size: .96rem; line-height: 1.42; margin-bottom: 6px; }
.pcard-cat { font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--steel-500); }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: var(--s4); }
.price { font-family: 'Archivo', sans-serif; font-size: 1.24rem; font-weight: 800; color: var(--brass-300); font-variant-numeric: tabular-nums; }
.price-poa { font-size: .84rem; font-weight: 600; color: var(--steel-400); letter-spacing: .04em; }

/* filter pills */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(24px, 3vw, 36px); }
.pill {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  font-size: .84rem;
  font-weight: 500;
  color: var(--tx-on-dark-mute);
  cursor: pointer;
  transition: color var(--dur-2), border-color var(--dur-2), background-color var(--dur-2), transform var(--dur-2);
}
.pill:hover { color: var(--tx-on-dark); border-color: var(--steel-600); }
.pill[aria-pressed="true"] { background: var(--g-brass); border-color: transparent; color: #1a1204; font-weight: 600; box-shadow: var(--sh-brass); }
.on-light .pill { border-color: #d7dce2; background: var(--white); color: var(--tx-on-light-mute); }
.on-light .pill:hover { border-color: var(--brass); color: var(--brass-ink); }

/* 14. REVIEWS ------------------------------------------------------------- */
.reviews-panel {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.gcard {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--sh-2), var(--edge-top);
  text-align: center;
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .gcard { background: var(--graphite); }
}
.gcard .glogo { display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 600; font-size: .9rem; color: var(--steel-200); margin-bottom: var(--s4); }
.gcard .glogo svg { width: 19px; height: 19px; }
.gcard .grate { font-family: 'Archivo', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; color: var(--brass-300); font-variant-numeric: tabular-nums; }
.stars { display: inline-flex; gap: 3px; margin-block: 12px; }
.stars svg { width: 19px; height: 19px; color: var(--brass); }
.gcard p { font-size: .88rem; color: var(--tx-on-dark-mute); margin-bottom: var(--s5); }
.gcard .btn { width: 100%; }
.gcard .btn + .btn { margin-top: 10px; }

.rgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: clamp(14px, 1.8vw, 20px); }
.rcard {
  position: relative;
  padding: var(--s5);
  border-radius: var(--r-md);
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: transform var(--dur-3) var(--ease-out), border-color var(--dur-3), box-shadow var(--dur-3);
}
.rcard:hover { transform: translateY(-4px); border-color: rgba(200, 151, 63, .32); box-shadow: var(--sh-2); }
.rcard::before {
  content: '\201C';
  position: absolute;
  top: -22px; right: 8px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(200, 151, 63, .09);
  pointer-events: none;
}
.rcard .stars svg { width: 15px; height: 15px; }
.rcard p { font-size: .92rem; line-height: 1.66; color: var(--tx-on-dark-mute); }
.rmeta { display: flex; align-items: center; gap: 12px; margin-top: var(--s4); padding-top: var(--s4); border-top: 1px solid rgba(255, 255, 255, .07); }
.ravatar {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  flex: none;
  background: var(--g-brass);
  color: #1a1204;
  font-weight: 700;
  font-size: .95rem;
}
.rmeta .rn { font-size: .9rem; font-weight: 600; }
.rmeta .rd { font-size: .76rem; color: var(--steel-500); }
.rempty {
  display: grid;
  place-items: center;
  gap: var(--s4);
  min-height: 240px;
  padding: var(--s6);
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, .14);
  border-radius: var(--r-md);
  color: var(--tx-on-dark-mute);
  font-size: .93rem;
}

/* 15. FORM ---------------------------------------------------------------- */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.form-card {
  padding: clamp(24px, 3.4vw, 42px);
  border-radius: var(--r-lg);
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--sh-2), var(--edge-top);
}
.on-light .form-card { background: var(--white); border-color: #e2e5e9; box-shadow: 0 2px 6px rgba(16, 24, 40, .06), 0 24px 48px -28px rgba(16, 24, 40, .28); }

.frow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s4); }
.field { position: relative; margin-bottom: var(--s4); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 22px 14px 9px;
  border-radius: var(--r-xs);
  border: 1px solid var(--steel-800);
  background: rgba(255, 255, 255, .03);
  color: var(--tx-on-dark);
  font-size: .95rem;
  transition: border-color var(--dur-2), box-shadow var(--dur-2), background-color var(--dur-2);
  appearance: none;
}
.on-light .field input, .on-light .field textarea, .on-light .field select {
  background: #fbfcfd; border-color: #d7dce2; color: var(--tx-on-light);
}
.field textarea { min-height: 128px; resize: vertical; }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7480' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field label {
  position: absolute;
  left: 15px; top: 15px;
  font-size: .95rem;
  color: var(--steel-500);
  pointer-events: none;
  transform-origin: left top;
  transition: transform var(--dur-2) var(--ease-out), color var(--dur-2);
}
.field input:focus + label, .field textarea:focus + label, .field select:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label,
.field select:valid + label {
  transform: translateY(-9px) scale(.76);
  color: var(--brass);
}
.on-light .field input:focus + label, .on-light .field textarea:focus + label,
.on-light .field select:focus + label, .on-light .field input:not(:placeholder-shown) + label,
.on-light .field textarea:not(:placeholder-shown) + label, .on-light .field select:valid + label { color: var(--brass-ink); }
.field textarea + label { top: 15px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(200, 151, 63, .18);
  background: rgba(255, 255, 255, .05);
}
.on-light .field input:focus, .on-light .field textarea:focus, .on-light .field select:focus { background: var(--white); }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--danger); }
.field .err { display: none; margin-top: 6px; font-size: .78rem; color: #e46a5c; }
.on-light .field .err { color: var(--danger); }
.field.has-error .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { display: flex; align-items: flex-start; gap: 11px; margin-bottom: var(--s5); font-size: .84rem; color: var(--tx-on-dark-mute); }
.on-light .consent { color: var(--tx-on-light-mute); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--brass); flex: none; cursor: pointer; }

.form-status { min-height: 22px; margin-top: var(--s3); font-size: .86rem; }
.form-status.ok { color: #4bbd8c; }
.form-status.bad { color: #e46a5c; }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(26, 18, 4, .3);
  border-top-color: #1a1204;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn[aria-busy="true"] { pointer-events: none; opacity: .8; }

/* contact aside */
.cinfo { display: grid; gap: var(--s4); }
.cinfo-row {
  display: flex;
  gap: 14px;
  padding: var(--s4);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: border-color var(--dur-2), background-color var(--dur-2), transform var(--dur-2) var(--ease-out);
}
.on-light .cinfo-row { background: var(--white); border-color: #e2e5e9; }
.cinfo-row:hover { border-color: rgba(200, 151, 63, .35); transform: translateX(3px); }
.cinfo-row .ci {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  flex: none;
  background: rgba(200, 151, 63, .11);
  border: 1px solid rgba(200, 151, 63, .24);
  color: var(--brass-300);
}
.on-light .cinfo-row .ci { background: #fdf6e6; border-color: #ecdcbb; color: var(--brass-ink); }
.cinfo-row .ci svg { width: 18px; height: 18px; }
.cinfo-row .cl { display: block; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--steel-500); }
.cinfo-row .cv { display: block; font-size: .98rem; font-weight: 600; margin-top: 3px; line-height: 1.45; }

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: var(--sh-2);
  line-height: 0;
}
.on-light .map-frame { border-color: #e2e5e9; }
.map-frame iframe { width: 100%; height: 380px; border: 0; filter: grayscale(.35) contrast(1.05); }

/* 16. FOOTER -------------------------------------------------------------- */
.site-footer { position: relative; background: #07090b; border-top: 1px solid rgba(255, 255, 255, .07); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-brand img { width: 300px; height: auto; }
.footer-brand p { font-size: .9rem; color: var(--tx-on-dark-mute); max-width: 42ch; margin-bottom: var(--s5); }
.footer h2 {
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--s4);
}
.footer-list { display: grid; gap: 11px; }
.footer-list a, .footer-list li { font-size: .9rem; color: var(--tx-on-dark-mute); transition: color var(--dur-2), transform var(--dur-2) var(--ease-out); }
.footer-list a { display: inline-block; }
.footer-list a:hover { color: var(--brass-300); transform: translateX(3px); }
.footer-list .fi { display: flex; align-items: flex-start; gap: 10px; }
.footer-list .fi svg { width: 15px; height: 15px; margin-top: 4px; color: var(--brass); flex: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  padding-block: var(--s5);
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .84rem;
  color: var(--steel-500);
}
.credit a { color: var(--brass-300); font-weight: 600; transition: color var(--dur-2); }
.credit a:hover { color: var(--brass-100); text-decoration: underline; text-underline-offset: 3px; }

/* 17. MOBILE STICKY BAR --------------------------------------------------- */
.mobar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-mobilebar);
  display: none;
  gap: 1px;
  background: rgba(255, 255, 255, .09);
  border-top: 1px solid rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  background: rgba(13, 16, 19, .93);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background-color var(--dur-2), color var(--dur-2);
}
.mobar a svg { width: 19px; height: 19px; flex: none; }
.mobar .m-call { color: var(--brass-300); }
.mobar .m-call:active { background: rgba(200, 151, 63, .18); }
.mobar .m-wa { position: relative; color: #58d68d; overflow: hidden; }
.mobar .m-wa:active { background: rgba(37, 211, 102, .16); }
.mobar .m-wa::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 -50%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(88, 214, 141, .22), transparent);
  transform: skewX(-18deg);
  animation: waPulse 6s var(--ease-io) infinite;
}
@keyframes waPulse { 0%, 72% { transform: skewX(-18deg) translateX(0); } 100% { transform: skewX(-18deg) translateX(420%); } }

/* 18. POPUP --------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: var(--s5);
  background: rgba(4, 5, 6, .74);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-3) var(--ease-out), visibility var(--dur-3);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: clamp(30px, 4vw, 44px);
  border-radius: var(--r-lg);
  text-align: center;
  background: rgba(20, 24, 28, .9);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(200, 151, 63, .32);
  box-shadow: var(--sh-3), 0 0 0 1px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .1);
  transform: scale(.94) translateY(16px);
  transition: transform var(--dur-4) var(--ease-out);
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .modal-card { background: #14181c; }
}
.modal.is-open .modal-card { transform: scale(1) translateY(0); }
.modal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 2px;
  background: var(--g-rule);
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  color: var(--steel-500);
  transition: color var(--dur-2), background-color var(--dur-2);
}
.modal-close:hover { color: var(--brass-300); background: rgba(255, 255, 255, .06); }
.modal-close svg { width: 20px; height: 20px; }
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: var(--r-pill);
  background: rgba(200, 151, 63, .13);
  border: 1px solid rgba(200, 151, 63, .3);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brass-300);
  margin-bottom: var(--s5);
}
.modal-card h2 { font-size: clamp(1.6rem, 3.4vw, 2.15rem); margin-bottom: var(--s4); }
.modal-card p { font-size: .96rem; color: var(--tx-on-dark-mute); margin-bottom: var(--s5); }
.modal-timer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  font-size: .84rem;
  margin-bottom: var(--s5);
}
.modal-timer strong { color: var(--brass-300); font-variant-numeric: tabular-nums; }
.modal-timer svg { width: 16px; height: 16px; color: var(--brass); }
.modal-note { font-size: .76rem; color: var(--steel-500); margin-top: var(--s4); margin-bottom: 0; }

/* 19. UTILITIES ----------------------------------------------------------- */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--steel-500); margin-bottom: var(--s5); flex-wrap: wrap; }
.crumbs a:hover { color: var(--brass-300); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }
.crumbs [aria-current] { color: var(--steel-200); }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(52px, 7vw, 96px) clamp(44px, 6vw, 76px); background: var(--ink); }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 78% 0%, rgba(200, 151, 63, .17), transparent 62%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { max-width: 18ch; margin-bottom: var(--s4); }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  background: var(--g-steel);
  border: 1px solid rgba(200, 151, 63, .22);
  box-shadow: var(--sh-3), var(--edge-top);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 50% 0%, rgba(200, 151, 63, .2), transparent 62%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: var(--s4); }
.cta-band .lead { margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; margin-top: var(--s6); }

/* 20. MOTION -------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px) scale(.985); }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
    transition-delay: calc(var(--i, 0) * 70ms);
  }
  .float-a { animation: floatA 11s var(--ease-io) infinite; }
  .float-b { animation: floatB 14s var(--ease-io) infinite; }
}
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(20px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .hero h1 .line > span, .hero-lead, .hero-actions, .hero-chips,
  .hero-frame, .spec-card, .scroll-cue { opacity: 1 !important; transform: none !important; }
  .hero-rule { transform: scaleX(1) !important; }
  .marquee-track { animation: none; }
  .tile:hover, .pcard:hover, .fcard:hover { transform: none; }
}

/* 21. RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .tile-lg { grid-column: span 2; grid-row: span 1; min-height: 300px; }
  .reviews-panel { grid-template-columns: 1fr; }
  .form-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: grid; }
  .hero-in { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; }
  .hero-frame { transform: none; }
  @keyframes frameIn { from { opacity: 0; transform: translateY(28px) scale(.96); } to { opacity: 1; transform: none; } }
  .spec-a { left: -8px; }
  .spec-b { right: -6px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { padding-bottom: 56px; }
  .mobar { display: flex; }
  .topbar { display: none; }
  html { scroll-padding-top: calc(var(--header-h-sm) + 12px); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .bento .tile-lg, .bento .tile-wide { grid-column: span 1; }
  .tile { min-height: 190px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .spec-card { padding: 11px 14px; }
  .spec-card .k { font-size: 1.2rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .map-frame iframe { height: 300px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
}

/* Print */
@media print {
  .site-header, .topbar, .mobar, .modal, .scrim, .drawer, .progress, .scroll-cue { display: none !important; }
  body { background: #fff; color: #000; }
}

/* 22. SPEC CARD MOTION -----------------------------------------------------
   Entrance and drift are one animation list. Two separate `animation`
   shorthands on the same element silently overwrite each other — the drift
   would win and the card would sit at opacity 0 forever. */
@media (prefers-reduced-motion: no-preference) {
  .spec-a {
    animation: fadeUp 700ms var(--ease-out) 900ms forwards,
               floatA 11s var(--ease-io) 1700ms infinite;
  }
  .spec-b {
    animation: fadeUp 700ms var(--ease-out) 1020ms forwards,
               floatB 14s var(--ease-io) 1900ms infinite;
  }
}
