/* ========================================================================
   NOVA MOTORS — Design System
   Vanilla CSS, no build step. Mobile-first. Reduced-motion safe.
   ======================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0a0a0c;
  --ink-2: #131316;
  --ink-3: #1c1c20;
  --cream: #f5ede0;
  --cream-dim: #cfc6b8;
  --orange: #ff5722;
  --orange-dim: #d94613;
  --copper: #b87a4a;
  --copper-dim: #8e5d35;
  --green: #b8ff3a;
  --line: rgba(245, 237, 224, 0.12);
  --line-strong: rgba(245, 237, 224, 0.28);
  --line-2: rgba(245, 237, 224, 0.18);

  /* Trionn 4-font stack */
  --font-familjen: 'Familjen Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-neue: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; /* Neue Haas Unica fallback */
  --font-ppeditorial: 'PP Editorial New', 'Fraunces', 'Times New Roman', serif;
  --font-martian: 'Martian Mono', 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Backwards-compat aliases */
  --font-display: var(--font-ppeditorial);
  --font-body: var(--font-familjen);
  --font-mono: var(--font-martian);

  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-trionn: cubic-bezier(0.87, 0, 0.13, 1);

  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --pad-y: clamp(4rem, 9vw, 8rem);
  --maxw: 1440px;

  --cursor-size: 13px;
  --cursor-hover-size: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px), (hover: none) {
  body { cursor: auto; }
}
img, picture, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
@media (max-width: 900px), (hover: none) {
  a, button, input, textarea, select { cursor: pointer; }
}

/* ---------- Selection ---------- */
::selection { background: var(--orange); color: var(--ink); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--cream);
}
.display--hero { font-size: clamp(3.5rem, 12vw, 8rem); }
.display--xl   { font-size: clamp(3rem, 9vw, 5.5rem); }
.display--lg   { font-size: clamp(2.25rem, 6vw, 4rem); line-height: 0.9; }
.display--md   { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 0.95; }
.display em, .display i { color: var(--orange); font-style: italic; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-dim);
}
.mono--lg { font-size: 0.85rem; }
.mono--accent { color: var(--orange); }
.mono--green { color: var(--green); }

.lede {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--orange);
}

p { max-width: 68ch; }
p + p { margin-top: 1rem; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--pad-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.grid { display: grid; gap: clamp(1rem, 2vw, 2rem); }
.flex { display: flex; }
.center { display: flex; align-items: center; justify-content: center; }
.between { display: flex; align-items: center; justify-content: space-between; }

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- Top bar ---------- */
.topbar {
  position: relative;
  z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar__left, .topbar__right { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.topbar a:hover { color: var(--orange); }
.topbar__dot { color: var(--orange); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}
.nav.is-scrolled { background: rgba(10, 10, 12, 0.96); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--cream);
}
.nav__brand sup {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  position: relative;
  top: -0.4em;
}
.nav__links { display: flex; gap: 0.25rem; align-items: center; }
.nav__link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 0.9rem;
  color: var(--cream-dim);
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--cream); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__phone {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease);
}
.nav__phone:hover { border-color: var(--orange); color: var(--orange); }
.nav__phone .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 6px 4px;
  }
  .nav__burger span {
    display: block;
    height: 1.5px;
    background: var(--cream);
    transition: transform 0.3s var(--ease);
  }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad-x) 1.5rem;
    align-items: stretch;
  }
  .nav.is-open .nav__link { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__link:last-child { border-bottom: 0; }
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  background: var(--cream);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease), opacity 0.2s;
  will-change: transform;
}
.cursor.is-hover {
  width: var(--cursor-hover-size);
  height: var(--cursor-hover-size);
  background: var(--orange);
  mix-blend-mode: difference;
}
.cursor.is-magnetic {
  width: var(--cursor-hover-size);
  height: var(--cursor-hover-size);
  background: var(--orange);
  mix-blend-mode: normal;
  opacity: 0.9;
}
@media (max-width: 900px), (hover: none) {
  .cursor { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.95);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.35) 40%, rgba(10,10,12,0.95) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(255,87,34,0.18), transparent 55%);
}
.hero__inner {
  width: 100%;
  padding-block: clamp(3rem, 8vw, 6rem);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}
.hero__title { max-width: 18ch; }
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; line-height: 0.85; }
.hero__title .word > span { display: inline-block; will-change: transform; }
.hero__sub {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.hero__sub .dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; display: inline-block; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }
.hero__three {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  justify-self: end;
}
.hero__three canvas { width: 100% !important; height: 100% !important; }
.hero__three-label {
  position: absolute;
  inset: auto 0 -2.5rem 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.hero__badge {
  position: absolute;
  top: clamp(1.5rem, 4vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 3rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 0.9rem;
  background: rgba(10,10,12,0.55);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

@media (max-width: 900px) {
  .hero__three { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  --b-bg: transparent;
  --b-fg: var(--cream);
  --b-bd: var(--line-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--b-fg);
  background: var(--b-bg);
  border: 1px solid var(--b-bd);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--ink); border-color: var(--orange); }
.btn:hover::before { transform: translateY(0); }
.btn--primary {
  --b-bg: var(--orange);
  --b-fg: var(--ink);
  --b-bd: var(--orange);
}
.btn--primary:hover { color: var(--ink); border-color: var(--cream); }
.btn--primary::before { background: var(--cream); }
.btn--ghost { --b-bd: var(--line-strong); }
.btn--lg { padding: 1.15rem 1.75rem; font-size: 0.82rem; }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* Magnetic wrapper — used on .magnetic for pull effect */
.magnetic { display: inline-block; will-change: transform; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  background: var(--orange);
  color: var(--ink);
  border-block: 1px solid rgba(0,0,0,0.18);
  overflow: hidden;
  padding-block: 0.95rem;
  z-index: 1;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
.marquee__star { color: var(--ink); }
.marquee__dot { opacity: 0.55; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- Section header ---------- */
.sec-head { display: grid; gap: 1.25rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.sec-head__title { max-width: 22ch; }

/* ---------- Numbers (count-up) ---------- */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.numbers__item {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 2.5vw, 1.75rem);
  border-right: 1px solid var(--line);
  position: relative;
}
.numbers__item:last-child { border-right: 0; }
.numbers__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  gap: 0.15em;
}
.numbers__num .suffix { color: var(--orange); font-size: 0.55em; }
.numbers__label {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  max-width: 22ch;
}
@media (max-width: 900px) {
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .numbers__item:nth-child(2n) { border-right: 0; }
  .numbers__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Lot strip (horizontal scroller) ---------- */
.lot {
  position: relative;
}
.lot__scroller {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--pad-x);
  padding-block: 0.5rem 1.5rem;
  margin-inline: calc(-1 * var(--pad-x));
  scrollbar-width: none;
}
.lot__scroller::-webkit-scrollbar { display: none; }
.lot__card {
  flex: 0 0 clamp(280px, 32vw, 420px);
  scroll-snap-align: start;
  position: relative;
  display: block;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.lot__card:hover { transform: translateY(-6px); border-color: var(--orange); }
.lot__card .photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.lot__card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.lot__card:hover .photo img { transform: scale(1.06); }
.lot__card .meta { padding: 1.25rem 1.25rem 1.4rem; display: grid; gap: 0.5rem; }
.lot__card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.lot__card .year { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--cream-dim); }
.lot__card .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.lot__card .price {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
}
.lot__card .pill {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream-dim);
  width: fit-content;
}
.lot__card .km { font-family: var(--font-mono); font-size: 0.72rem; color: var(--cream-dim); letter-spacing: 0.08em; }

/* ---------- How we work (horizontal pin) ---------- */
.process {
  position: relative;
  background: var(--ink-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.process__pin {
  position: relative;
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  align-items: center;
  min-height: 100vh;
}
.process__intro {
  position: sticky;
  left: 0;
  flex: 0 0 min(360px, 38vw);
  display: grid;
  gap: 1.25rem;
  align-self: start;
  top: clamp(120px, 14vh, 180px);
}
.process__track {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  flex: 1;
}
.process__step {
  flex: 0 0 clamp(280px, 26vw, 360px);
  padding: 2rem;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-content: start;
  min-height: 360px;
}
.process__step .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 0.85;
  color: var(--orange);
  letter-spacing: -0.04em;
}
.process__step h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.process__step p { color: var(--cream-dim); font-size: 0.95rem; }
.process__step .arr {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
@media (max-width: 900px) {
  .process__pin { flex-direction: column; min-height: 0; }
  .process__intro { position: static; flex: 0 0 auto; }
  .process__track { flex-direction: column; }
  .process__step { flex: 0 0 auto; min-height: 0; }
}

/* ---------- Pull quote ---------- */
.quote {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
}
.quote__mark {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange);
  font-size: 8rem;
  line-height: 0.5;
  margin-bottom: 0.5rem;
  display: block;
}
.quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.25rem, 6.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
  max-width: 22ch;
}
.quote__text em { color: var(--orange); }
.quote__attr {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.tcard {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem;
  display: grid;
  gap: 1.25rem;
}
.tcard__head { display: flex; align-items: center; gap: 1rem; }
.tcard__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink-3) center/cover no-repeat;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.tcard__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.1;
}
.tcard__car { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.25rem; }
.tcard__stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 0.15em; }
.tcard__quote { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.6; }

/* ---------- CTA section ---------- */
.cta {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,87,34,0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(184,122,74,0.18), transparent 50%);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (max-width: 900px) { .cta__inner { grid-template-columns: 1fr; } }
.cta__title { max-width: 18ch; }
.cta__actions { display: flex; flex-direction: column; gap: 1rem; }
.cta__line { display: flex; align-items: center; gap: 1rem; font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.06em; color: var(--cream-dim); }
.cta__line .lbl { color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; min-width: 5rem; }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  position: relative;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
.foot__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 1rem;
}
.foot__brand sup { color: var(--orange); font-size: 0.5em; }
.foot__about { color: var(--cream-dim); font-size: 0.95rem; max-width: 32ch; }
.foot h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.foot ul li { margin-bottom: 0.6rem; font-size: 0.92rem; color: var(--cream-dim); }
.foot a { transition: color 0.2s var(--ease); }
.foot a:hover { color: var(--orange); }
.foot__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- Inventory page ---------- */
.inv-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-block: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.inv-filter__btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream-dim);
  transition: all 0.3s var(--ease);
}
.inv-filter__btn:hover { color: var(--cream); border-color: var(--cream); }
.inv-filter__btn.is-active { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.inv-filter__count { margin-left: auto; align-self: center; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--cream-dim); }

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
@media (max-width: 1100px) { .inv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .inv-grid { grid-template-columns: 1fr; } }
.inv-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.inv-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.inv-card .photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.inv-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.inv-card:hover .photo img { transform: scale(1.05); }
.inv-card .badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(10,10,12,0.85);
  color: var(--orange);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  backdrop-filter: blur(6px);
}
.inv-card .body { padding: 1.1rem 1.15rem 1.3rem; display: grid; gap: 0.4rem; }
.inv-card .y { font-family: var(--font-mono); font-size: 0.7rem; color: var(--cream-dim); letter-spacing: 0.1em; }
.inv-card .n { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.05; letter-spacing: -0.02em; color: var(--cream); }
.inv-card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; margin-top: 0.3rem; }
.inv-card .km { font-family: var(--font-mono); font-size: 0.72rem; color: var(--cream-dim); letter-spacing: 0.08em; }
.inv-card .p { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 600; color: var(--orange); letter-spacing: 0.04em; }

.inv-finder {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .inv-finder { grid-template-columns: 1fr; } }
.inv-finder::before {
  content: '';
  position: absolute; right: -20%; top: -50%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,87,34,0.18), transparent 60%);
  pointer-events: none;
}

/* ---------- Finance page ---------- */
.lenders {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1100px) { .lenders { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .lenders { grid-template-columns: repeat(2, 1fr); } }
.lender {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--cream-dim);
  background: var(--ink-2);
  transition: all 0.3s var(--ease);
  position: relative;
}
.lender:hover { color: var(--orange); background: var(--ink-3); }
.lender::after {
  content: 'LENDER';
  position: absolute;
  top: 0.6rem; left: 0.7rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--cream-dim);
  opacity: 0.5;
}

.fin-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .fin-steps { grid-template-columns: 1fr; } }
.fin-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper), var(--copper), transparent);
  z-index: 0;
}
.fin-step { position: relative; z-index: 1; padding: 0 1rem; text-align: center; }
.fin-step .dot {
  width: 5rem; height: 5rem; border-radius: 50%;
  border: 1px solid var(--copper);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.75rem;
  color: var(--copper);
}
.fin-step h3 {
  font-family: var(--font-display); font-style: italic; font-size: 1.65rem;
  letter-spacing: -0.02em; line-height: 0.95; color: var(--cream);
  margin-bottom: 0.5rem;
}
.fin-step p { color: var(--cream-dim); font-size: 0.95rem; max-width: 32ch; margin: 0 auto; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 2rem 1.5rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stat__n { font-family: var(--font-display); font-style: italic; font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 0.9; letter-spacing: -0.04em; color: var(--orange); }
.stat__l { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.5rem; }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--cream); text-align: left;
  transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--orange); }
.faq__q .ic {
  flex: 0 0 32px; width: 32px; height: 32px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-style: normal; font-size: 1rem;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.faq__item.is-open .faq__q .ic { transform: rotate(45deg); color: var(--orange); border-color: var(--orange); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.faq__a-inner { padding: 0 0 1.75rem; color: var(--cream-dim); max-width: 64ch; }

/* ---------- Service page ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) { .svc-card { grid-template-columns: 1fr; } }
.svc-card .photo { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .body { padding: 1.75rem; display: grid; gap: 1rem; align-content: start; }
.svc-card h3 { font-family: var(--font-display); font-style: italic; font-size: 1.75rem; line-height: 0.95; letter-spacing: -0.02em; }
.svc-card .specs { display: grid; gap: 0.4rem; margin-top: 0.5rem; }
.svc-card .specs .row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding-block: 0.4rem; border-bottom: 1px solid var(--line); }
.svc-card .specs .row:last-child { border-bottom: 0; }
.svc-card .specs .l { color: var(--cream-dim); }
.svc-card .specs .v { color: var(--cream); }
.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .amenities { grid-template-columns: 1fr; } }
.amenity { padding: 2rem; background: var(--ink-2); border: 1px solid var(--line); border-radius: 4px; }
.amenity__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--copper); color: var(--ink); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-family: var(--font-mono); }
.amenity h4 { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; line-height: 1; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 0.5rem; }
.amenity p { color: var(--cream-dim); font-size: 0.9rem; }

.trust { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.trust__item { flex: 1 1 0; min-width: 200px; padding: 1.5rem 1.75rem; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 1rem; }
.trust__item:last-child { border-right: 0; }
.trust__item .chk { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.trust__item .t { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); }
@media (max-width: 900px) { .trust__item { border-right: 0; border-bottom: 1px solid var(--line); } .trust__item:last-child { border-bottom: 0; } }

/* ---------- About page ---------- */
.timeline {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 1rem;
  scrollbar-width: none;
}
.timeline::-webkit-scrollbar { display: none; }
.timeline__track {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  padding-inline: var(--pad-x);
  min-width: max-content;
  position: relative;
}
.timeline__track::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--copper), transparent);
}
.tl-node { flex: 0 0 280px; scroll-snap-align: start; position: relative; padding-top: 4rem; }
.tl-node::before {
  content: '';
  position: absolute;
  top: 2.25rem; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--copper);
}
.tl-node .yr {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.5rem;
}
.tl-node h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 0.6rem; }
.tl-node p { color: var(--cream-dim); font-size: 0.9rem; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } }
.tcard-photo {
  aspect-ratio: 4 / 5;
  background: var(--ink-3) center/cover no-repeat;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.tcard-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,12,0.7));
}
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.tcard-photo:hover img { transform: scale(1.04); }
.tcard-photo img { transition: transform 0.6s var(--ease); }
.team h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1; letter-spacing: -0.02em; color: var(--cream); }
.team .role { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin: 0.5rem 0 0.75rem; }
.team p { color: var(--cream-dim); font-size: 0.92rem; }

.values { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .values { grid-template-columns: 1fr; } }
.value { padding: 2rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.value:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--line); }
@media (max-width: 900px) { .value:nth-child(odd) { padding-right: 0; border-right: 0; } }
.value .num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.16em; color: var(--orange); padding-top: 0.3rem; }
.value h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.05; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 0.4rem; }
.value p { color: var(--cream-dim); font-size: 0.95rem; }

.bleed {
  position: relative;
  height: clamp(360px, 60vh, 640px);
  overflow: hidden;
}
.bleed img { width: 100%; height: 100%; object-fit: cover; }
.bleed__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.2), rgba(10,10,12,0.7));
  display: flex; align-items: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
}
.bleed__title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.9; letter-spacing: -0.04em;
  color: var(--cream);
  max-width: 18ch;
}

/* ---------- Trade page ---------- */
.trade-form { display: grid; gap: 1.5rem; max-width: 720px; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); }
.field input[type=text], .field input[type=email], .field input[type=number], .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.85rem 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.25rem; color: var(--cream);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus { outline: 0; border-color: var(--orange); }
.field-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.radios { display: flex; gap: 0.5rem; flex-wrap: wrap; padding-top: 0.4rem; }
.radios label {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1rem; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--cream-dim);
  cursor: none; transition: all 0.3s var(--ease);
}
.radios input { display: none; }
.radios input:checked + label { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.radios label:hover { color: var(--cream); border-color: var(--cream); }

.trade-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .trade-steps { grid-template-columns: repeat(2, 1fr); } }
.tstep { padding: 1.5rem; background: var(--ink-2); border: 1px solid var(--line); border-radius: 4px; }
.tstep .n { font-family: var(--font-display); font-style: italic; font-size: 2.5rem; line-height: 1; color: var(--orange); }
.tstep h4 { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.05; letter-spacing: -0.02em; color: var(--cream); margin: 0.5rem 0; }
.tstep p { color: var(--cream-dim); font-size: 0.9rem; }

/* ---------- Testimonials page ---------- */
.test-grid-2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 1100px) { .test-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .test-grid-2 { grid-template-columns: 1fr; } }

.google-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.1rem; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 999px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.google-badge .g { color: var(--orange); font-weight: 700; letter-spacing: 0; font-size: 0.95rem; }
.google-badge .s { color: var(--orange); letter-spacing: 0.15em; }

.photo-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 640px) { .photo-wall { grid-template-columns: repeat(2, 1fr); } }
.photo-wall__cell { aspect-ratio: 1 / 1; background: var(--ink-3) center/cover no-repeat; border-radius: 4px; overflow: hidden; transition: transform 0.4s var(--ease); }
.photo-wall__cell:hover { transform: scale(1.02); }
.photo-wall__cell img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.contact-list .row { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; align-items: start; }
.contact-list .l { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); padding-top: 0.2rem; }
.contact-list .v { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.15; letter-spacing: -0.02em; color: var(--cream); }
.contact-list a:hover { color: var(--orange); }

.map {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background-image:
    linear-gradient(rgba(245,237,224,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,237,224,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map::before, .map::after {
  content: '';
  position: absolute;
  background: var(--line);
}
.map::before { top: 50%; left: 0; right: 0; height: 1px; }
.map::after { left: 50%; top: 0; bottom: 0; width: 1px; }
.map__pin {
  position: relative; z-index: 1;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.map__pin .pulse {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,87,34,0.6);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255,87,34,0.6); }
  70% { box-shadow: 0 0 0 24px rgba(255,87,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,87,34,0); }
}
.map__pin .lbl { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); background: var(--ink); padding: 0.4rem 0.7rem; border: 1px solid var(--line-strong); border-radius: 4px; }
.map__coord { position: absolute; bottom: 1rem; right: 1rem; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; color: var(--cream-dim); }

.open-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border: 1px solid var(--green); color: var(--green);
  border-radius: 999px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.open-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.hours { display: grid; gap: 0; border-top: 1px solid var(--line); }
.hours .row { display: flex; justify-content: space-between; padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hours .row .d { color: var(--cream-dim); }
.hours .row.today { color: var(--green); }
.hours .row.today .d { color: var(--green); }

/* ---------- 404 page ---------- */
.fourofour {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: var(--pad-x);
  position: relative; overflow: hidden;
}
.fourofour__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(10rem, 38vw, 28rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--cream);
  position: relative;
}
.fourofour__num::before {
  content: '404';
  position: absolute; inset: 0;
  color: var(--orange);
  -webkit-text-stroke: 1px var(--orange);
  -webkit-text-fill-color: transparent;
  transform: translate(8px, 8px);
  z-index: -1;
}
.fourofour__msg {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 18ch; margin: 1.5rem auto 2.5rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .word > span { transform: none; }
  .marquee__track { animation: none; }
}

/* ---------- Utilities ---------- */
.text-orange { color: var(--orange); }
.text-cream { color: var(--cream); }
.text-dim { color: var(--cream-dim); }
.text-copper { color: var(--copper); }
.text-green { color: var(--green); }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- noscript ---------- */
.noscript-warn {
  background: var(--orange); color: var(--ink);
  text-align: center; padding: 0.5rem 1rem;
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ========================================================================
   TRIONN-QUALITY LAYER — page loader, cursor, belts, stat circles, etc.
   Appended to extend (not replace) the existing design system.
   ======================================================================== */

/* ---------- 1. Page loader (10-belt shutter) ---------- */
.pl {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  display: grid;
  grid-template-rows: repeat(10, 1fr);
  overflow: hidden;
}
.pl__belt {
  position: relative;
  width: 100%;
  height: 10vh;
  background: #060608;
  border-top: 1px solid rgba(255,255,255,0.04);
  transform: translateY(-101%);
  transition: transform 1s cubic-bezier(0.87, 0, 0.13, 1);
  will-change: transform;
}
.pl.is-closing .pl__belt { transform: translateY(0); }
.pl.is-closing .pl__belt:nth-child(1)  { transition-delay: 0.00s; }
.pl.is-closing .pl__belt:nth-child(2)  { transition-delay: 0.04s; }
.pl.is-closing .pl__belt:nth-child(3)  { transition-delay: 0.08s; }
.pl.is-closing .pl__belt:nth-child(4)  { transition-delay: 0.12s; }
.pl.is-closing .pl__belt:nth-child(5)  { transition-delay: 0.16s; }
.pl.is-closing .pl__belt:nth-child(6)  { transition-delay: 0.20s; }
.pl.is-closing .pl__belt:nth-child(7)  { transition-delay: 0.24s; }
.pl.is-closing .pl__belt:nth-child(8)  { transition-delay: 0.28s; }
.pl.is-closing .pl__belt:nth-child(9)  { transition-delay: 0.32s; }
.pl.is-closing .pl__belt:nth-child(10) { transition-delay: 0.36s; }

.pl.is-opening .pl__belt { transform: translateY(-101%); }
.pl.is-opening .pl__belt:nth-child(1)  { transition-delay: 0.36s; }
.pl.is-opening .pl__belt:nth-child(2)  { transition-delay: 0.32s; }
.pl.is-opening .pl__belt:nth-child(3)  { transition-delay: 0.28s; }
.pl.is-opening .pl__belt:nth-child(4)  { transition-delay: 0.24s; }
.pl.is-opening .pl__belt:nth-child(5)  { transition-delay: 0.20s; }
.pl.is-opening .pl__belt:nth-child(6)  { transition-delay: 0.16s; }
.pl.is-opening .pl__belt:nth-child(7)  { transition-delay: 0.12s; }
.pl.is-opening .pl__belt:nth-child(8)  { transition-delay: 0.08s; }
.pl.is-opening .pl__belt:nth-child(9)  { transition-delay: 0.04s; }
.pl.is-opening .pl__belt:nth-child(10) { transition-delay: 0.00s; }

/* Center content (logo + tagline + counter) */
.pl__inner {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
  text-align: center;
}
.pl__logo {
  position: relative;
  font-family: var(--font-familjen);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
  color: #f5ede0;
  padding: 0 3rem;
}
.pl__logo::before,
.pl__logo::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}
.pl__logo::before { left: 0; background:
  linear-gradient(currentColor, currentColor) top/100% 1.5px no-repeat,
  linear-gradient(currentColor, currentColor) bottom/100% 1.5px no-repeat,
  linear-gradient(currentColor, currentColor) left/1.5px 100% no-repeat,
  linear-gradient(currentColor, currentColor) right/1.5px 100% no-repeat;
  color: #ff5722;
}
.pl__logo::after { right: 0; background:
  linear-gradient(currentColor, currentColor) top/100% 1.5px no-repeat,
  linear-gradient(currentColor, currentColor) bottom/100% 1.5px no-repeat,
  linear-gradient(currentColor, currentColor) left/1.5px 100% no-repeat,
  linear-gradient(currentColor, currentColor) right/1.5px 100% no-repeat;
  color: #ff5722;
}
.pl__tagline {
  font-family: var(--font-ppeditorial);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: rgba(245,237,224,0.85);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.6em;
  justify-content: center;
  max-width: 28ch;
  line-height: 1.1;
}
.pl__tagline-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.pl__tagline-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.pl__tagline.is-in .pl__tagline-word > span { transform: translateY(0); }
.pl__tagline.is-in .pl__tagline-word:nth-child(1) > span { transition-delay: 0.55s; }
.pl__tagline.is-in .pl__tagline-word:nth-child(2) > span { transition-delay: 0.62s; }
.pl__tagline.is-in .pl__tagline-word:nth-child(3) > span { transition-delay: 0.69s; }
.pl__tagline.is-in .pl__tagline-word:nth-child(4) > span { transition-delay: 0.76s; }
.pl__tagline.is-in .pl__tagline-word:nth-child(5) > span { transition-delay: 0.83s; }
.pl__tagline.is-in .pl__tagline-word:nth-child(6) > span { transition-delay: 0.90s; }

/* Slot-reel counter (3 reels, each spins to a digit) */
.pl__counter {
  position: relative;
  display: inline-flex;
  gap: 6px;
  font-family: var(--font-martian);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: #ff5722;
  letter-spacing: 0.02em;
  margin-top: 0.75rem;
  line-height: 1;
  height: 1em;
  overflow: hidden;
}
.pl__reel {
  position: relative;
  width: 0.7em;
  height: 1em;
  overflow: hidden;
  display: inline-block;
}
.pl__reel-track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.pl__reel-track span {
  flex: 0 0 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl__corner-plus {
  position: absolute;
  width: 14px;
  height: 14px;
  display: inline-block;
  color: #ff5722;
  pointer-events: none;
}
.pl__corner-plus::before,
.pl__corner-plus::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.pl__corner-plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.pl__corner-plus::after  { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.pl__corner-plus--tl { top: 1.25rem; left: 1.25rem; }
.pl__corner-plus--tr { top: 1.25rem; right: 1.25rem; }
.pl__corner-plus--bl { bottom: 1.25rem; left: 1.25rem; }
.pl__corner-plus--br { bottom: 1.25rem; right: 1.25rem; }

@media (max-width: 700px) {
  .pl__corner-plus { display: none; }
  .pl__tagline { font-size: 1.2rem; }
  .pl__counter { font-size: 2.25rem; }
}

/* Page transition overlay (in-page navigation) */
.pl--nav {
  z-index: 9998;
  pointer-events: auto;
}
.pl--nav .pl__belt { transform: translateY(-101%); }
.pl--nav.is-closing .pl__belt { transform: translateY(0); }
.pl--nav.is-opening .pl__belt { transform: translateY(-101%); }

/* ---------- 2. Plus-mark cursor (trionn compass) ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 13px;
  height: 13px;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  mix-blend-mode: difference;
  color: #f5ede0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor svg {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
  transition: color 0.2s var(--ease);
}
.cursor.is-hover { transform: translate3d(-50%, -50%, 0) scale(1.8); }
.cursor.is-magnetic { transform: translate3d(-50%, -50%, 0) scale(2.2); }
.cursor.is-magnetic { color: #ff5722; }
@media (max-width: 900px), (hover: none) {
  .cursor { display: none; }
  body { cursor: auto; }
}

/* Decorative flying plus marks (5+ scattered, slow drift + parallax) */
.pl-flying-plus {
  position: absolute;
  width: 16px;
  height: 16px;
  color: rgba(245,237,224,0.35);
  pointer-events: none;
  z-index: 2;
  transition: color 0.3s var(--ease);
  will-change: transform;
}
.pl-flying-plus::before,
.pl-flying-plus::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.pl-flying-plus::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.pl-flying-plus::after  { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.pl-flying-plus.is-orange { color: var(--orange); }

/* ---------- 3. Hero — two-line h1 with char-by-char reveal ---------- */
.hero-h1 {
  font-family: var(--font-familjen), 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--cream);
  max-width: none;
  margin: 0;
  white-space: normal;
  word-spacing: -0.05em;
}
.hero-h1 .line {
  display: block;
  overflow: hidden;
  line-height: 0.88;
}
.hero-h1 .word {
  display: inline-block;
  margin-right: 0.35em;
  vertical-align: top;
  line-height: 0.88;
  overflow: hidden;
}
.hero-h1 .word > span {
  display: inline-block;
  will-change: transform;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-h1.is-in .word > span { transform: translateY(0); }
.hero-h1.is-in .word:nth-child(1) > span { transition-delay: 0.10s; }
.hero-h1.is-in .word:nth-child(2) > span { transition-delay: 0.18s; }
.hero-h1.is-in .word:nth-child(3) > span { transition-delay: 0.26s; }
.hero-h1.is-in .word:nth-child(4) > span { transition-delay: 0.34s; }

/* Char-by-char reveal inside .chars */
.hero-h1 .chars .char {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  will-change: transform, opacity;
}
.hero-h1 .chars { display: inline-block; white-space: nowrap; }
.hero-h1 .chars.is-in .char {
  opacity: 1;
  transform: translateY(0);
}
.hero-h1 em {
  color: var(--orange);
  font-style: italic;
}

/* ---------- 4. Vibrate on cursor proximity ---------- */
.s1-headline, .s1-sub, .s1-scroll, .s1-stats, .s1-box, .s1-cta {
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.s1-vibrate { transform: translate(0.5px, -0.4px) rotate(0.3deg); }

/* ---------- 5. Stats box (Est. 2009 / 17+ years) ---------- */
.s1-box {
  position: relative;
  border: 1px solid var(--line-2);
  padding: 1.5rem 1.75rem;
  font-family: var(--font-martian);
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(10,10,12,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.s1-box__line1 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.s1-box__line1 .num {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 600;
}
.s1-box__line2 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.s1-box__line2::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--orange);
}

/* ---------- 6. Big stat circles ---------- */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  justify-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
@media (max-width: 900px) { .big-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .big-stats { grid-template-columns: 1fr; } }
.big-stat {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.big-stat::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(245,237,224,0.12);
  z-index: 0;
}
.big-stat__n {
  font-family: var(--font-ppeditorial);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--orange);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.04em;
}
.big-stat__n .suffix {
  font-family: var(--font-martian);
  font-style: normal;
  font-size: 0.42em;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0;
}
.big-stat__l {
  font-family: var(--font-martian);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
  max-width: 14ch;
  line-height: 1.4;
}

/* ---------- 7. Awards / Trust signals strip (5 badges) ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  position: relative;
  isolation: isolate;
}
@media (max-width: 900px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid var(--line);
  text-align: center;
  min-height: 140px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.trust-strip__item:last-child { border-right: 0; }
@media (max-width: 900px) {
  .trust-strip__item:nth-child(2n) { border-right: 0; }
  .trust-strip__item:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
}
.trust-strip__item:hover { background: var(--ink-3); }
.trust-strip__icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--cream);
}
.trust-strip__icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.trust-strip__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  font-family: var(--font-martian);
}
.trust-strip__name {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.trust-strip__sub {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ---------- 8. Partners strip (lenders marquee) ---------- */
.partners {
  position: relative;
  border-block: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  padding-block: 1.25rem;
}
.partners__label {
  position: absolute;
  top: 50%;
  left: var(--pad-x);
  transform: translateY(-50%);
  font-family: var(--font-martian);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  z-index: 2;
  background: var(--ink);
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.partners__label::before {
  content: '';
  width: 1.5rem; height: 1px;
  background: var(--orange);
}
.partners__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  align-items: center;
  padding-left: 16rem;
  animation: partners-scroll 32s linear infinite;
  font-family: var(--font-martian);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
}
.partners__track span { display: inline-flex; align-items: center; }
.partners__dot { color: var(--orange); margin: 0 1rem; opacity: 0.7; }
@keyframes partners-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .partners__track { animation: none; }
}
@media (max-width: 900px) {
  .partners__label { position: static; transform: none; padding: 0 0 0.5rem var(--pad-x); }
  .partners__track { padding-left: var(--pad-x); }
}

/* ---------- 9. White gradient section ("What people say") ---------- */
.section--white {
  background: linear-gradient(0deg, #FFFFFF 0%, #D2D2D2 100%);
  color: #040508;
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 12vw, 10rem);
}
.section--white .eyebrow { color: #d94613; }
.section--white .eyebrow::before { background: #d94613; }
.section--white h2 { color: #040508; }
.section--white .lede { color: rgba(4,5,8,0.7); }
.white-quote {
  font-family: var(--font-ppeditorial);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #040508;
  max-width: 18ch;
  margin: 0;
}
.white-quote em {
  color: #d94613;
  font-style: italic;
}
.white-quote__mark {
  font-family: var(--font-ppeditorial);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.7;
  color: #d94613;
  display: block;
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 200;
}
.white-quote__attr {
  font-family: var(--font-martian);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(4,5,8,0.7);
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.white-quote__attr::before {
  content: '';
  width: 1.5rem; height: 1px;
  background: #d94613;
}

/* ---------- 10. PP Editorial New (ultralight italic big words) ---------- */
.pp-big {
  font-family: var(--font-ppeditorial);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
}
.pp-big em, .pp-big--accent { color: var(--orange); }
.pp-big--huge { font-size: clamp(3rem, 10vw, 7rem); }
.pp-big--cream { color: var(--cream); }
.pp-big--ink { color: var(--ink); }

/* ---------- 11. Hold to blast pill ---------- */
.hold-blast {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-martian);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10,10,12,0.5);
  backdrop-filter: blur(6px);
  cursor: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.hold-blast:hover { border-color: var(--orange); }
.hold-blast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.hold-blast__icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.hold-blast__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--orange);
  opacity: 0.18;
  transition: width 0.08s linear;
  pointer-events: none;
}
.hold-blast.is-firing { border-color: var(--orange); }
.hold-blast.is-firing .hold-blast__icon { color: var(--orange); }

.blast-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9997;
  will-change: transform, opacity;
}

/* ---------- 12. 3D tilt helpers ---------- */
.backface-hidden { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.transform-3d { transform-style: preserve-3d; -webkit-transform-style: preserve-3d; }
.tilt-wrap {
  position: relative;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  overflow: hidden;
}
.tilt-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.tilt-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}
.tilt-wrap:hover .tilt-glare { opacity: 1; }

/* ---------- 13. Lightning / particle / T-letter decorative SVGs ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  color: var(--orange);
  opacity: 0.55;
}
.deco--lightning { color: var(--orange); }
.deco--particle  { color: var(--cream); }
.deco--t         { color: var(--cream-dim); font-family: var(--font-ppeditorial); font-style: italic; font-weight: 200; font-size: 5rem; line-height: 1; }
.deco--t svg, .deco--lightning svg, .deco--particle svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.deco.is-floating { animation: float-y 8s ease-in-out infinite; }
.deco.is-floating--d1 { animation-delay: -2s; }
.deco.is-floating--d2 { animation-delay: -4s; }
.deco.is-floating--d3 { animation-delay: -6s; }

/* ---------- 14. Justify text block ---------- */
.justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* ---------- 15. Section header — big serif + mono eyebrow with side rail ---------- */
.sec-head--trionn {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.sec-head--trionn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: clamp(4rem, 12vw, 9rem);
  height: 1px;
  background: var(--orange);
}

/* ---------- 16. "How we work" intro on home (compact) ---------- */
.how-home {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .how-home { grid-template-columns: 1fr; } }

/* ---------- 17. Testimonial tilt card (uses .tilt-wrap) ---------- */
.tcard--tilt {
  position: relative;
  transition: border-color 0.4s var(--ease);
}
.tcard--tilt:hover { border-color: var(--orange); }

/* ---------- 18. "We started in 2009" — about callout ---------- */
.about-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .about-callout { grid-template-columns: 1fr; } }
.about-callout__art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-callout__art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 19. Slot reel container tweak for small screens ---------- */
@media (max-width: 480px) {
  .pl__logo { font-size: 1.75rem; padding: 0 2.25rem; }
  .pl__tagline { max-width: 22ch; }
  .pl__counter { font-size: 1.85rem; }
}

/* ---------- 20. Lock body scroll while page loader is open ---------- */
body.is-loading { overflow: hidden; height: 100vh; }

/* ---------- 21. Hide native cursor everywhere on hover-capable devices ---------- */
@media (hover: hover) and (pointer: fine) {
  body.is-cursor-active, body.is-cursor-active * { cursor: none !important; }
  body.is-cursor-active a, body.is-cursor-active button { cursor: none !important; }
}

/* ---------- 22. Belt-row clip for mobile (keep responsive) ---------- */
@media (max-width: 700px) {
  .pl__belt { height: 10vh; }
}

/* ---------- 23. Hero "headline" wrapper for s1 selectors ---------- */
.s1-headline, .s1-sub, .s1-scroll, .s1-stats, .s1-cta {
  display: block;
}
.s1-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.s1-stats { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1.5rem; }

/* ---------- 24. Char span fallback for no-JS ---------- */
.no-js .hero-h1 .word > span { transform: none; }
.no-js .hero-h1 .chars .char { opacity: 1; transform: none; }
.no-js .pl { display: none; }

/* ---------- 25. Decorative plus marks for hero (subtle corners) ---------- */
.hero-plus {
  position: absolute;
  width: 18px;
  height: 18px;
  color: var(--orange);
  pointer-events: none;
  z-index: 3;
}
.hero-plus::before, .hero-plus::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.hero-plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.hero-plus::after  { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.hero-plus--1 { top: 18%; left: 6%; }
.hero-plus--2 { top: 28%; right: 8%; }
.hero-plus--3 { bottom: 30%; left: 12%; }
.hero-plus--4 { bottom: 14%; right: 14%; color: var(--cream-dim); }
.hero-plus--5 { top: 55%; left: 50%; width: 14px; height: 14px; color: var(--cream-dim); }

/* ---------- 26. Footer refinement for trionn density ---------- */
.foot--trionn {
  border-top: 1px solid var(--orange);
}
.foot__brand--trionn {
  font-family: var(--font-ppeditorial);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.foot__brand--trionn sup {
  font-family: var(--font-martian);
  font-style: normal;
  font-size: 0.4em;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  position: relative;
  top: -0.5em;
}

/* ---------- 27. Reveal — extended (chunks) ---------- */
.reveal--chunk {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal--chunk.is-in { opacity: 1; transform: none; }

/* ---------- 28. Print: clean up ---------- */
@media print {
  .pl, .cursor, .pl-flying-plus, .deco { display: none !important; }
  .nav { position: static; }
  body { cursor: auto; background: #fff; color: #000; }
}

