/* =========================================================
   NYXLABS — Premium industrial studio
   Dark charcoal / concrete · neon orange · glass cards
   ========================================================= */

:root {
  --bg0: #1a1a1a;
  --bg1: #212121;
  --bg2: #2a2a2a;
  --panel: rgba(38, 38, 38, 0.72);
  --panel-solid: #262626;
  --panel-2: #2e2e2e;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --orange: #c56a2d;
  --amber: #d4894a;
  --accent: #c56a2d;
  --accent-2: #b85f24;
  --ok: #34d399;
  --danger: #fb7185;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg0);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.is-hidden { display: none !important; }

.shell { position: relative; z-index: 1; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

/* Ambient concrete + soft orange glows */
.bg-fx {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.concrete-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,18,0.82) 0%, rgba(18,18,18,0.88) 45%, rgba(14,14,14,0.94) 100%),
    url("/assets/img/studio-background.jpg") center top / cover no-repeat;
  background-attachment: fixed;
}
.concrete-overlay::after {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
  pointer-events: none;
}
.glow-orange {
  position: absolute; width: 36rem; height: 36rem;
  top: -12rem; right: -10rem;
  background: #ff6b00; border-radius: 50%;
  filter: blur(100px); opacity: 0.03;
}
.glow-amber {
  position: absolute; width: 28rem; height: 28rem;
  bottom: 5%; left: -12rem;
  background: #ff8c00; border-radius: 50%;
  filter: blur(100px); opacity: 0.02;
}

/* Glass helpers */
.glass-card,
.glass-panel {
  background: rgba(32, 32, 32, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

/* ========== NAV ========== */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(18, 18, 18, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 1.5rem));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}
.brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: "Roboto", var(--display), system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em; font-size: 1.365rem;
  z-index: 2;
}
.brand-mark {
  display: grid; place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
}
.brand-text { color: #fff; }
.nav-links {
  display: flex; align-items: center; gap: 1.35rem;
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
}
.nav-links a:hover { color: #fff; }
.nav-mobile-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; z-index: 2; }
.nav-toggle {
  display: none;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; z-index: 2;
}
.nav-toggle span {
  display: block; width: 1.1rem; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .15s ease, opacity .15s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border-radius: 10px;
  font-weight: 600; font-size: 0.92rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-lg { padding: 0.95rem 1.4rem; font-size: 0.98rem; border-radius: 12px; }
.btn-sm { padding: 0.55rem 0.85rem; font-size: 0.9rem; min-width: 2.6rem; }
.btn-primary {
  background: #c56a2d;
  color: #111;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
  background: #b85f24;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}
.btn-outline, .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line-2);
}
.btn-outline:hover, .btn-secondary:hover {
  border-color: rgba(255, 140, 0, 0.55);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.btn-ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.04); }
.btn-nav { padding: 0.7rem 1.1rem; }
.btn-arrow { font-weight: 700; }

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
  color: #fff;
  text-transform: uppercase;
}
h1 .grad {
  color: var(--orange);
  background: none;
}
h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.75rem;
}
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
  line-height: 1.65;
}
.lead strong { color: #e4e4e7; font-weight: 600; }
.section-sub { color: var(--muted); max-width: 34rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--amber);
  font-weight: 600; font-size: 0.92rem;
  margin-top: 0.85rem;
}
.text-link:hover { color: #ffb04a; }

/* ========== HERO ========== */
.hero { padding: 3.25rem 0 2.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.hero-meta span {
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}
.hero-stage { position: relative; }
.hero-visual {
  position: relative;
  border-radius: 20px;
  padding: 1.4rem;
  min-height: 380px;
  display: grid; place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(255,107,0,0.12), transparent 55%),
    rgba(28, 28, 28, 0.85);
}
.neon-tube {
  position: absolute;
  right: 11%;
  top: 8%;
  bottom: 12%;
  width: 6px;
  border-radius: 99px;
  background: linear-gradient(180deg, #ffc070, var(--amber) 35%, var(--orange) 70%, #c24100);
  box-shadow:
    0 0 14px rgba(255, 107, 0, 0.75),
    0 0 40px rgba(255, 107, 0, 0.3);
}
.hero-plinth {
  position: relative; z-index: 1;
  width: min(100%, 460px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: #111;
  box-shadow: var(--shadow);
}
.hero-art {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
.hero-chip {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem; z-index: 2;
  font-size: 0.78rem; font-weight: 700;
  color: #fff;
  background: rgba(20,20,20,0.88);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  backdrop-filter: blur(8px);
}

/* ========== FEATURE STRIP ========== */
.feature-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(24, 24, 24, 0.9);
  padding: 1.5rem 0;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.25rem;
}
.feat-item {
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--line);
}
.feat-item:last-child { border-right: 0; }
.feat-icon {
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.22);
  margin-bottom: 0.7rem;
}
.feat-item h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: #fff;
}
.feat-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ========== SECTIONS ========== */
.section { padding: 4rem 0; }
.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.6rem;
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card {
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  min-height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.svc-icon, .service-card .num {
  font-family: var(--display);
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  color: #fff;
}
.service-card .sub {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.service-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.service-card .art {
  margin-top: 1rem;
  border-radius: 12px;
  width: 100%;
  height: 130px;
  object-fit: cover;
}

/* Process */
.section-process { padding-top: 2rem; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.process-copy h2 {
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.process-panel {
  border-radius: 18px;
  overflow: hidden;
}
.process-media {
  position: relative;
  background: #111;
}
.process-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  opacity: 0.95;
}
.process-media-glow {
  position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(255,107,0,0.22), transparent);
  pointer-events: none;
}
.process-steps {
  list-style: none;
  padding: 1.1rem 1.2rem 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
}
.process-steps li:hover { border-color: rgba(255,107,0,0.25); }
.ps-num {
  font-family: var(--display);
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
  min-width: 1.8rem;
}
.process-steps strong { display: block; color: #fff; margin-bottom: 0.15rem; font-size: 0.95rem; }
.process-steps p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Materials */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.mat-card {
  border-radius: 14px;
  padding: 1.1rem 1rem;
  transition: border-color .15s ease, transform .15s ease;
}
.mat-card:hover {
  border-color: rgba(255,107,0,0.35);
  transform: translateY(-2px);
}
.mat-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.mat-card p { color: var(--muted); font-size: 0.86rem; }

/* Industries */
.industries-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(22, 22, 22, 0.9);
}
.industries-label { margin-bottom: 1.1rem; display: block; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.ind-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.55rem;
  padding: 1.1rem 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  transition: border-color .15s ease, color .15s ease;
}
.ind-item:hover {
  border-color: rgba(255,107,0,0.35);
  color: #fff;
}
.ind-ico {
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  font-size: 1rem;
}
.industries-note {
  color: var(--muted-2);
  font-size: 0.9rem;
  max-width: 40rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.about-list {
  list-style: none;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.55rem;
}
.about-list li {
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}
.about-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55rem;
  width: 0.45rem; height: 0.45rem;
  border-radius: 2px;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255,107,0,0.5);
}
.about-panel {
  border-radius: 18px;
  overflow: hidden;
}
.about-panel img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.p-item, .portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(32,32,32,0.8);
  transition: border-color .15s ease, transform .15s ease;
}
.p-item:hover, .portfolio-card:hover {
  border-color: rgba(255,107,0,0.35);
  transform: translateY(-2px);
}
.p-item img, .portfolio-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.fig-cap { padding: 0.75rem 0.85rem 0.9rem; }
.cap-title {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.cap-desc { color: var(--muted); font-size: 0.84rem; }

/* Library */
#library .lib-toolbar,
#library .lib-panel,
.lib-panel, .free-model-panel {
  background: rgba(32,32,32,0.8);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
}
.free-model-panel {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.05rem 1.1rem;
  margin-bottom: 1rem;
}
.free-model-panel > div {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}
.free-model-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
}
.free-model-panel h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}
.free-model-cover {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
.free-model-check {
  margin-top: 0.25rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
}
.free-model-price-note {
  margin: 0.15rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  font-size: 0.88rem;
  line-height: 1.45;
}
.free-model-price-note strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
}
.lib-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
}
.lib-grid { display: grid; gap: 0.85rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
}
.contact-card {
  border-radius: 18px;
  padding: 1.4rem;
}
.contact-list { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item { display: grid; gap: 0.2rem; }
.contact-item .k {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.contact-item a { color: #fff; font-weight: 600; }
.contact-item a:hover { color: var(--amber); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.contact-form-title {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Forms */
.field {
  display: grid; gap: 0.35rem;
  font-size: 0.86rem; font-weight: 600; color: #e4e4e7;
}
.form-grid { display: grid; gap: 0.85rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
  .form-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  border-radius: 11px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line-2);
  color: #fff;
  padding: 0.75rem 0.85rem;
}
input::placeholder, textarea::placeholder { color: #71717a; }
input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255,140,0,0.55);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
input[type="checkbox"],
input[type="radio"] {
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  margin: 0.15rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: #e56b1f;
  cursor: pointer;
  background: transparent;
  border: none;
  box-shadow: none;
}
.inquiry-alert { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted); }
.inquiry-alert.ok { color: var(--ok); }
.inquiry-alert.err { color: var(--danger); }

/* ========== WIZARD ========== */
.wizard-section { padding: 1rem 0 5rem; }
.wizard-shell {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(28, 28, 28, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.wizard-top {
  padding: 1.3rem 1.4rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,107,0,0.06), transparent 70%), rgba(24,24,24,0.95);
}
.wizard-top-row {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 0.75rem;
}
.wizard-top h2 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
  text-transform: none;
}
.wizard-top p { color: var(--muted); font-size: 0.95rem; }
.mode-badge, .stripe-badge, .pill {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,107,0,0.3);
  background: rgba(255,107,0,0.1);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
}
.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1rem 0;
}
.mode-chip {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem;
  text-align: left;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
  opacity: 1;
}
.mode-chip span { color: rgba(255,255,255,0.72); font-size: 0.8rem; font-weight: 500; }
.mode-chip:hover { border-color: rgba(255,140,0,0.35); }
.mode-chip.is-active {
  opacity: 1;
  color: #fff;
  border-color: rgba(255,107,0,0.95);
  background: rgba(255,107,0,0.14);
  box-shadow:
    0 0 0 2px rgba(255,107,0,0.35),
    0 8px 22px rgba(255,107,0,0.28),
    0 2px 8px rgba(255,107,0,0.18);
}
.mode-chip.is-active span { color: rgba(255,255,255,0.75); }
.progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
}
.progress button {
  appearance: none; border: 0; background: transparent; text-align: left;
  cursor: pointer; padding: 0; color: var(--muted-2); min-width: 0;
}
.progress button .bar {
  height: 4px; border-radius: 99px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 0.4rem;
}
.progress button.is-active { color: #fff; font-weight: 600; }
.progress button.is-active .bar,
.progress button.is-done .bar {
  background: linear-gradient(90deg, var(--orange), var(--amber));
  box-shadow: 0 0 10px rgba(255,107,0,0.35);
}
.progress button.is-done { color: var(--amber); }
.progress button .label {
  font-size: 0.68rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.progress button:disabled { cursor: default; opacity: 0.4; }
.wizard-body { padding: 1.3rem 1.4rem 1.4rem; }
.step-panel { display: none; animation: fade .22s ease; }
.step-panel.is-active { display: block; }
@keyframes fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.step-title {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: #fff;
}
.step-help { color: var(--muted); margin-bottom: 1rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.75rem;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 1rem;
}
.feature .icon {
  font-family: var(--display);
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.feature h3 { color: #fff; font-size: 0.98rem; margin-bottom: 0.25rem; }
.feature p { color: var(--muted); font-size: 0.88rem; }

.option-grid { display: grid; gap: 0.7rem; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 800px) {
  .option-grid, .option-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.option-card {
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 0.95rem;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
}
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card:hover { border-color: rgba(255,140,0,0.35); }
.option-card:has(input:checked),
.option-card.is-selected {
  border-color: rgba(255,107,0,0.95);
  border-width: 2px;
  background: rgba(255,107,0,0.14);
  box-shadow:
    0 0 0 2px rgba(255,107,0,0.35),
    0 8px 22px rgba(255,107,0,0.28),
    0 2px 8px rgba(255,107,0,0.18);
}
.option-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.3rem; }
.option-card p { color: rgba(255,255,255,0.72); font-size: 0.86rem; }
.option-card .tag {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dropzone {
  border: 1.5px dashed var(--line-2);
  border-radius: 16px;
  background: rgba(0,0,0,0.25);
  padding: 1.6rem;
  text-align: center;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.dropzone:hover, .dropzone.is-drag {
  border-color: rgba(255,140,0,0.55);
  background: rgba(255,107,0,0.06);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.file-chip {
  display: inline-flex; gap: 0.5rem; align-items: center;
  margin-top: 0.75rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem;
}
.review {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}
.review-card, .pay-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  padding: 1.1rem;
}
.pay-box {
  border-color: rgba(255,107,0,0.3);
  background: rgba(255,107,0,0.06);
}
.pay-box .amount {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.6rem;
}
.kv { display: grid; gap: 0.45rem; }
.kv .k { color: var(--muted-2); font-size: 0.78rem; display: block; }
.kv .v { color: #fff; font-weight: 500; }
.note { color: var(--muted); font-size: 0.88rem; }
.wizard-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.wizard-footer .right { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.alert {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
}
.alert.ok { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #6ee7b7; }
.success-panel { text-align: center; padding: 1.5rem 0.5rem; }
.success-panel .big { font-size: 2rem; color: var(--ok); margin-bottom: 0.5rem; }
.order-id-box {
  display: inline-block;
  margin: 0.85rem 0;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
  font-family: ui-monospace, monospace;
}
.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.45;
}
.check input[type="checkbox"],
.check input[type="radio"] {
  margin-top: 0.2rem;
}
.check > span {
  flex: 1;
  min-width: 0;
}
.hint { color: var(--muted-2); font-size: 0.84rem; }
.hint-ok { color: #6ee7b7; font-size: 0.88rem; margin-top: 0.45rem; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0.75rem;
}
.t-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  padding: 1rem;
}
.t-item .n { color: var(--orange); font-family: var(--display); font-weight: 700; margin-bottom: 0.35rem; }
.t-item h3 { color: #fff; font-size: 1rem; margin-bottom: 0.25rem; }
.t-item p { color: var(--muted); font-size: 0.88rem; }
.faq-list { display: grid; gap: 0.6rem; }
.faq-item, .faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(32,32,32,0.8);
  padding: 0.95rem 1rem;
}
.faq summary { cursor: pointer; font-weight: 650; color: #fff; }
.cta-banner {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(32,32,32,0.85);
  padding: 1.25rem;
}

/* ========== FOOTER ========== */
.site-footer {
  border-top: 1px solid var(--line);
  background: #141414;
  padding: 3rem 0 1.5rem;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.foot-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.85rem;
  max-width: 22rem;
  line-height: 1.55;
}
.foot-col {
  display: flex; flex-direction: column; gap: 0.45rem;
  color: var(--muted); font-size: 0.9rem;
}
.foot-col h4 {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.foot-col a:hover { color: var(--amber); }
.newsletter {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.newsletter-title { margin-bottom: 0.25rem !important; }
.newsletter-sub { color: var(--muted-2); font-size: 0.84rem; margin-bottom: 0.65rem; }
.newsletter-row { display: flex; gap: 0.45rem; }
.newsletter-row input {
  flex: 1;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}
.newsletter-note { margin-top: 0.45rem; font-size: 0.82rem; color: var(--ok); min-height: 1.1em; }
.foot-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  padding-top: 1.1rem;
  color: var(--muted-2);
  font-size: 0.82rem;
}
.foot-credit {
  margin: 0.35rem auto 0;
  padding: 0 0 0.15rem;
  color: var(--muted-2);
  font-size: 0.82rem;
  line-height: 1.45;
}
.foot-credit a {
  color: #e4d6c8;
  text-decoration: none;
  font-weight: 650;
}
.foot-credit a:hover {
  color: var(--amber, #f07828);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 0.55rem;
  padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(18,18,18,0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 -12px 32px rgba(0,0,0,0.35);
}
.sticky-cta .btn { flex: 1; }
.sticky-cta[hidden] { display: none !important; }
@media (min-width: 960px) { .sticky-cta { display: none !important; } }

/* Track pages using main styles */
.track-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(32,32,32,0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}
.track-status-pill {
  border-radius: 999px;
  border: 1px solid rgba(255,107,0,0.35);
  color: var(--amber);
  background: rgba(255,107,0,0.1);
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .service-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .materials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.7rem;
    background: rgba(24,24,24,0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    color: #e4e4e7;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.04); }
  .nav-mobile-cta {
    display: block;
    margin-top: 0.35rem;
    text-align: center;
    background: #c56a2d;
    color: #111 !important;
    font-weight: 700;
  }
  .hero-grid,
  .process-grid,
  .about-grid,
  .contact-grid,
  .review { grid-template-columns: 1fr; }
  .feature-strip-grid { grid-template-columns: 1fr 1fr; }
  .feat-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 1rem 0.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid-4 { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .mode-switch { grid-template-columns: 1fr; }
  .progress button .label { font-size: 0.6rem; }
  body { padding-bottom: 4.75rem; }
}
@media (max-width: 560px) {
  .feature-strip-grid,
  .materials-grid,
  .industries-grid,
  .portfolio-grid,
  .footer-grid,
  .timeline,
  .option-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 1.75rem; }
  h1 { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .nav-actions .btn-nav { padding: 0.65rem 0.85rem; font-size: 0.85rem; }
}


/* hero industrial scene v41 */
.hero-chip { display: none !important; }

.hero-industrial { position: relative; }
.hero-industrial::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  bottom: -1rem;
  width: 100vw;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26,26,26,0.94) 0%, rgba(26,26,26,0.62) 48%, rgba(26,26,26,0.4) 100%),
    url("/assets/img/hero-industrial.jpg") center / cover no-repeat;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
}

.hero-visual {
  position: relative !important;
  border-radius: 20px !important;
  padding: 0 !important;
  min-height: 420px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  background: #141414 !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45) !important;
  backdrop-filter: none !important;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.05) brightness(0.78);
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.12) 48%, rgba(10,10,10,0.32) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(255,107,0,0.14), transparent 55%);
  pointer-events: none;
}

.neon-tube {
  z-index: 2 !important;
  right: 8% !important;
  opacity: 0.95;
}

.hero-plinth {
  position: relative !important;
  z-index: 3 !important;
  width: min(78%, 380px) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(12,12,12,0.45) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55) !important;
}

.hero-art {
  width: 100% !important;
  aspect-ratio: 5/4 !important;
  object-fit: cover !important;
}

@media (max-width: 960px) {
  .hero-industrial::before { opacity: 0.32; }
  .hero-visual { min-height: 320px !important; }
  .hero-plinth { width: min(86%, 340px) !important; }
}


/* hero solo plain v42 - no right media block, softer accent */
.hero-stage,
.hero-visual,
.hero-plinth,
.hero-art,
.hero-bg-img,
.neon-tube,
.hero-chip { display: none !important; }

.hero-solo .hero-grid {
  grid-template-columns: 1fr !important;
  max-width: 46rem;
  align-items: start !important;
}

.hero-solo {
  padding-top: 4.25rem !important;
  padding-bottom: 3.75rem !important;
  min-height: min(70vh, 620px);
  display: flex;
  align-items: center;
}

.hero-industrial::before {
  opacity: 0.4 !important;
  background:
    linear-gradient(100deg, rgba(20,20,20,0.9) 0%, rgba(20,20,20,0.58) 52%, rgba(20,20,20,0.38) 100%),
    url("/assets/img/hero-industrial.jpg") center / cover no-repeat !important;
}

h1 .grad { color: #d4894a !important; }

.eyebrow {
  color: #c56a2d !important;
  background: rgba(197, 106, 45, 0.08) !important;
  border-color: rgba(197, 106, 45, 0.16) !important;
}

.btn-primary,
.btn.primary {
  background: #c56a2d !important;
  color: #fff !important;
  border-color: #c56a2d !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22) !important;
}
.btn-primary:hover,
.btn.primary:hover {
  background: #b85f24 !important;
  border-color: #b85f24 !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.26) !important;
}

.btn-outline:hover,
.btn-secondary:hover {
  border-color: rgba(197, 106, 45, 0.4) !important;
  box-shadow: none !important;
}

.feat-icon,
.ind-ico,
.svc-icon,
.service-card .num,
.ps-num,
.text-link,
.service-card .sub {
  color: #d4894a !important;
}
.feat-icon,
.ind-ico {
  background: rgba(197, 106, 45, 0.08) !important;
  border-color: rgba(197, 106, 45, 0.16) !important;
}
.mode-badge,
.stripe-badge,
.progress button.is-done {
  color: #d4894a !important;
}
.option-card:has(input:checked),
.option-card.is-selected {
  border-color: rgba(229, 107, 31, 0.95) !important;
  background: rgba(229, 107, 31, 0.12) !important;
  box-shadow:
    0 0 0 2px rgba(229, 107, 31, 0.32),
    0 8px 22px rgba(229, 107, 31, 0.26),
    0 2px 8px rgba(229, 107, 31, 0.16) !important;
}
.mode-chip.is-active {
  border-color: rgba(229, 107, 31, 0.95) !important;
  background: rgba(229, 107, 31, 0.12) !important;
  box-shadow:
    0 0 0 2px rgba(229, 107, 31, 0.32),
    0 8px 22px rgba(229, 107, 31, 0.26),
    0 2px 8px rgba(229, 107, 31, 0.16) !important;
  color: #c2410c !important;
}
.progress button.is-active .bar,
.progress button.is-done .bar {
  background: #c56a2d !important;
  box-shadow: none !important;
}
.pay-box {
  border-color: rgba(197, 106, 45, 0.2) !important;
  background: rgba(197, 106, 45, 0.04) !important;
}
.pay-box .amount { color: #d4894a !important; }
.brand-mark {
  background: rgba(197, 106, 45, 0.08) !important;
  border-color: rgba(197, 106, 45, 0.18) !important;
}
.btn-nav {
  background: #c56a2d !important;
  box-shadow: none !important;
}


/* lib gallery v43 - clean 3-col cards, aligned actions */
#library .section-sub { max-width: 36rem; }

.lib-panel {
  background: rgba(32, 32, 32, 0.72) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  padding: 1.15rem !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.lib-toolbar { margin-bottom: 1rem; }

.lib-search-row {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 150px) auto;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}
.lib-search-row input,
.lib-search-row select {
  min-width: 0;
  width: 100%;
}

.lib-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}
.lib-chip {
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.04) !important;
  color: #a1a1aa !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.8rem !important;
  cursor: pointer;
}
.lib-chip:hover {
  border-color: rgba(197, 106, 45, 0.35) !important;
  color: #fff !important;
}

.lib-status {
  color: #a1a1aa;
  font-size: 0.85rem;
  margin: 0.35rem 0 0.55rem;
  min-height: 1.2em;
}
.lib-status.is-error { color: #fb7185; }

.lib-selected {
  margin: 0.5rem 0 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(197, 106, 45, 0.28);
  background: rgba(197, 106, 45, 0.08);
}
.lib-selected-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}
.lib-selected-text {
  color: #f4f4f5;
  font-size: 0.92rem;
  min-width: 0;
}
.lib-selected-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  min-width: min(100%, 280px);
}
.lib-selected-actions .btn {
  width: 100%;
  justify-content: center;
}

/* 3 per row */
.lib-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.9rem !important;
  align-items: stretch;
}

.lib-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(20,20,20,0.9);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.lib-card:hover {
  border-color: rgba(197, 106, 45, 0.35);
  transform: translateY(-2px);
}
.lib-card:focus-visible {
  outline: 2px solid #d4894a;
  outline-offset: 2px;
}

.lib-cover-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #111;
  overflow: hidden;
  flex: 0 0 auto;
}
.lib-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lib-badge {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  backdrop-filter: blur(6px);
}
.lib-free { display: none !important; }

.lib-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem 0.75rem 0.8rem;
  flex: 1 1 auto;
  min-height: 0;
}
.lib-title {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}
.lib-meta,
.lib-sum { display: none !important; }

.lib-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.45rem !important;
  margin-top: auto !important;
  width: 100%;
}
.lib-actions .btn,
.lib-actions .lib-pick,
.lib-actions .lib-open {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 2.45rem !important;
  justify-content: center !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
}

.lib-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #a1a1aa;
  padding: 2rem 1rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 12px;
}

.lib-footnote-lite {
  margin-top: 0.9rem;
  color: #71717a;
  font-size: 0.8rem;
  line-height: 1.4;
}
.lib-footnote { display: none !important; }
.lib-import-row { display: none !important; }

@media (max-width: 900px) {
  .lib-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lib-search-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .lib-grid { grid-template-columns: 1fr !important; }
  .lib-selected-actions { min-width: 100%; }
}


/* lib cards smaller v44 - about 40% smaller, 4 per row */
.lib-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.6rem !important;
  align-items: stretch !important;
}
.lib-card {
  border-radius: 10px !important;
}
.lib-cover-wrap {
  aspect-ratio: 1 / 1 !important;
}
.lib-body {
  gap: 0.4rem !important;
  padding: 0.45rem 0.5rem 0.5rem !important;
}
.lib-title {
  font-size: 0.76rem !important;
  min-height: 1.95em !important;
  line-height: 1.2 !important;
  -webkit-line-clamp: 2 !important;
}
.lib-badge {
  font-size: 0.58rem !important;
  left: 0.35rem !important;
  top: 0.35rem !important;
  padding: 0.16rem 0.4rem !important;
}
.lib-actions {
  gap: 0.35rem !important;
}
.lib-actions .btn,
.lib-actions .lib-pick,
.lib-actions .lib-open {
  min-height: 1.9rem !important;
  font-size: 0.64rem !important;
  padding: 0.28rem 0.2rem !important;
  border-radius: 7px !important;
  width: 100% !important;
  justify-content: center !important;
}
@media (max-width: 1100px) {
  .lib-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 900px) {
  .lib-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 520px) {
  .lib-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lib-actions { grid-template-columns: 1fr !important; }
  .lib-actions .btn { font-size: 0.62rem !important; }
}


/* studio activity bg v45 - multi-service intuitive background */
body.theme-industrial-pro {
  background-color: #141414;
}

.bg-fx .concrete-overlay {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.78) 0%, rgba(16,16,16,0.86) 42%, rgba(12,12,12,0.94) 100%),
    url("/assets/img/studio-background.jpg") center top / cover no-repeat !important;
  background-attachment: fixed !important;
}

/* Hero uses same rich studio scene, slightly stronger */
.hero-industrial::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: -2.5rem !important;
  bottom: -1.5rem !important;
  width: 100vw !important;
  z-index: -1 !important;
  pointer-events: none !important;
  opacity: 0.55 !important;
  background:
    linear-gradient(105deg, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.52) 48%, rgba(14,14,14,0.42) 100%),
    url("/assets/img/studio-background.jpg") center / cover no-repeat !important;
  mask-image: linear-gradient(180deg, black 0%, black 68%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 68%, transparent 100%) !important;
}

/* Keep cards readable over photo */
.feature-strip,
.industries-strip {
  background: rgba(18, 18, 18, 0.82) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.section .service-card,
.section .glass-card,
.lib-panel,
.wizard-shell,
.contact-card,
.process-panel,
.mat-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Optional subtle mid-page vignette so long pages stay grounded */
.shell > main {
  position: relative;
}
.shell > main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(197,106,45,0.05), transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(12,12,12,0.15) 55%, rgba(12,12,12,0.45) 100%);
}
.shell > main > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .bg-fx .concrete-overlay {
    background-attachment: scroll !important;
    opacity: 1;
  }
  .hero-industrial::before {
    opacity: 0.4 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-fx .concrete-overlay {
    background-attachment: scroll !important;
  }
}


/* estimate panel v50 */
.estimate-panel {
  margin-top: 1rem;
  border: 1px solid rgba(197, 106, 45, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(197,106,45,0.08), rgba(20,20,20,0.92));
  padding: 1rem 1.1rem 1.05rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.estimate-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}
.estimate-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4894a;
  margin-bottom: 0.25rem;
}
.estimate-panel h4 {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  color: #fff;
}
.estimate-profile {
  margin: 0.25rem 0 0;
  color: #a1a1aa;
  font-size: 0.84rem;
}
.estimate-price-wrap { text-align: right; }
.estimate-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a1a1aa;
  font-weight: 700;
}
.estimate-price {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #d4894a;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.estimate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.estimate-stat {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 0.65rem 0.7rem;
}
.estimate-stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #71717a;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.estimate-stat strong {
  color: #fff;
  font-size: 0.95rem;
}
.estimate-breakdown {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
}
.estimate-break-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: #a1a1aa;
}
.estimate-break-row span:last-child { color: #e4e4e7; font-weight: 600; }
.estimate-min span { color: #d4894a !important; }
.estimate-note {
  margin: 0;
  font-size: 0.8rem;
  color: #71717a;
  line-height: 1.4;
}
.estimate-loading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
  color: #a1a1aa;
  font-size: 0.88rem;
}
.estimate-spinner {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 2px solid rgba(212,137,74,0.25);
  border-top-color: #d4894a;
  animation: estspin .7s linear infinite;
}
@keyframes estspin { to { transform: rotate(360deg); } }
@media (max-width: 720px) {
  .estimate-grid { grid-template-columns: 1fr 1fr; }
  .estimate-price-wrap { text-align: left; }
}


/* estimate ui v51 */
.estimate-breakdown,
#estimate-material-cost,
#estimate-profile { display: none !important; }

.estimate-loading {
  display: none !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 0;
  color: #e4e4e7;
  font-size: 0.98rem;
  font-weight: 500;
  min-height: 3.25rem;
}
.estimate-loading.is-visible {
  display: flex !important;
}
.estimate-loading[hidden] {
  display: none !important;
}
#estimate-body[hidden] {
  display: none !important;
}
.estimate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.estimate-price-label {
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .estimate-grid { grid-template-columns: 1fr 1fr !important; }
}


/* =========================================================
   NYXLABS light industrial theme v60
   Cream/orange wash · white cards · dark chocolate footer
   ========================================================= */

body.theme-light-print {
  --bg0: #f6efe6;
  --bg1: #faf4ec;
  --bg2: #f0e6d8;
  --panel: #ffffff;
  --panel-solid: #ffffff;
  --panel-2: #fffdfb;
  --line: #eadfce;
  --line-2: #dccfb8;
  --text: #1c1917;
  --muted: #6b6560;
  --muted-2: #8a837c;
  --orange: #e56b1f;
  --amber: #f07828;
  --accent: #e56b1f;
  --accent-2: #cf5c14;
  --chocolate: #2b2018;
  --chocolate-2: #3a2c22;
  --ok: #1f9d62;
  --danger: #d6455d;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(60, 40, 20, 0.08);
  --shadow-soft: 0 8px 22px rgba(60, 40, 20, 0.06);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg0) !important;
  background-image: none !important;
}

/* Kill dark overlays / studio poster bleed */
body.theme-light-print .bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
body.theme-light-print .light-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 90% 8%, rgba(229, 107, 31, 0.14), transparent 55%),
    radial-gradient(700px 380px at 10% 90%, rgba(229, 107, 31, 0.06), transparent 50%),
    linear-gradient(180deg, #faf4ec 0%, #f6efe6 48%, #f3e9dc 100%);
}
body.theme-light-print .concrete-overlay,
body.theme-light-print .glow-orange,
body.theme-light-print .glow-amber,
body.theme-light-print .hero-industrial::before,
body.theme-light-print .hero-industrial::after,
body.theme-light-print .shell > main::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

body.theme-light-print .shell {
  position: relative;
  z-index: 1;
}

/* NAV */
body.theme-light-print .site-header {
  background: rgba(250, 244, 236, 0.9) !important;
  border-bottom: 1px solid var(--line) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.theme-light-print .brand-text { color: var(--text) !important; }
body.theme-light-print .brand-mark {
  background: rgba(229, 107, 31, 0.1) !important;
  border: 1px solid rgba(229, 107, 31, 0.22) !important;
}
body.theme-light-print .nav-links { color: #3f3a36 !important; }
body.theme-light-print .nav-links a:hover { color: #1c1917 !important; }
body.theme-light-print .nav-toggle {
  background: #fff !important;
  border-color: var(--line-2) !important;
}
body.theme-light-print .nav-toggle span { background: var(--text) !important; }
body.theme-light-print .nav-links.is-open,
body.theme-light-print .nav-links[style] {
  background: #fff !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow) !important;
}
@media (max-width: 960px) {
  body.theme-light-print .nav-links {
    background: #fff !important;
    border: 1px solid var(--line) !important;
    box-shadow: var(--shadow) !important;
  }
  body.theme-light-print .nav-links a { color: var(--text) !important; }
  body.theme-light-print .nav-mobile-cta {
    background: var(--accent) !important;
    color: #fff !important;
  }
}

/* BUTTONS */
body.theme-light-print .btn-primary,
body.theme-light-print .btn.primary,
body.theme-light-print .btn-nav {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 8px 20px rgba(229, 107, 31, 0.22) !important;
}
body.theme-light-print .btn-primary:hover,
body.theme-light-print .btn.primary:hover {
  background: var(--accent-2) !important;
  border-color: var(--accent-2) !important;
}
body.theme-light-print .btn-outline,
body.theme-light-print .btn-secondary {
  background: #fff !important;
  color: var(--text) !important;
  border: 1.5px solid var(--line-2) !important;
  box-shadow: none !important;
}
body.theme-light-print .btn-outline:hover,
body.theme-light-print .btn-secondary:hover {
  border-color: var(--accent) !important;
  color: var(--text) !important;
  box-shadow: 0 0 0 3px rgba(229, 107, 31, 0.1) !important;
}
body.theme-light-print .btn-ghost {
  color: var(--muted) !important;
  background: transparent !important;
}

/* TYPE */
body.theme-light-print .eyebrow {
  display: inline-flex !important;
  color: var(--accent) !important;
  background: rgba(229, 107, 31, 0.1) !important;
  border: 1px solid rgba(229, 107, 31, 0.18) !important;
  border-radius: 999px !important;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
body.theme-light-print .eyebrow::before { display: none !important; }
body.theme-light-print h1,
body.theme-light-print h2,
body.theme-light-print .section-head h2,
body.theme-light-print .track-title {
  color: var(--text) !important;
  text-transform: none !important;
}
body.theme-light-print h1 .grad,
body.theme-light-print .grad {
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
}
body.theme-light-print .lead,
body.theme-light-print .section-sub,
body.theme-light-print .muted {
  color: var(--muted) !important;
}
body.theme-light-print .text-link { color: var(--accent) !important; }

/* HERO light */
body.theme-light-print .hero,
body.theme-light-print .hero-light {
  padding: 2.75rem 0 2.5rem !important;
  overflow: visible !important;
  background: transparent !important;
  min-height: 0 !important;
}
body.theme-light-print .hero-grid {
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 2rem !important;
  align-items: center !important;
  max-width: none !important;
}
body.theme-light-print .hero-bullets {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
body.theme-light-print .hero-bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
}
body.theme-light-print .hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
body.theme-light-print .hero-stage { display: block !important; }
body.theme-light-print .hero-product {
  background: linear-gradient(160deg, #fff 0%, #f3e9dc 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  min-height: 360px;
}
body.theme-light-print .hero-product img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: none !important;
}
body.theme-light-print .hero-meta { display: none !important; }

/* FEATURE photo cards */
body.theme-light-print .feature-strip {
  background: transparent !important;
  border: 0 !important;
  padding: 0.5rem 0 2rem !important;
  box-shadow: none !important;
}
body.theme-light-print .feature-strip-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.95rem !important;
}
body.theme-light-print .feat-item {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 18px !important;
  padding: 0 !important;
  box-shadow: var(--shadow-soft);
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.theme-light-print .feat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(40, 28, 18, 0.12);
}
body.theme-light-print .feat-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ebe3;
}
body.theme-light-print .feat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
body.theme-light-print .feat-item:hover .feat-media img {
  transform: scale(1.04);
}
body.theme-light-print .feat-body {
  padding: 1rem 1.05rem 1.15rem;
}
body.theme-light-print .feat-icon {
  display: none !important;
}
body.theme-light-print .feat-item h3 {
  color: var(--text) !important;
  text-transform: uppercase;
  font-size: 0.9rem !important;
  letter-spacing: 0.04em;
}
body.theme-light-print .feat-item p { color: var(--muted) !important; }

/* SECTIONS */
body.theme-light-print .section,
body.theme-light-print .wizard-section,
body.theme-light-print .section-process {
  background: transparent !important;
}
body.theme-light-print .section-head h2 { color: var(--text) !important; }

/* White cards everywhere */
body.theme-light-print .service-card,
body.theme-light-print .glass-card,
body.theme-light-print .mat-card,
body.theme-light-print .process-panel,
body.theme-light-print .contact-card,
body.theme-light-print .lib-panel,
body.theme-light-print .lib-card,
body.theme-light-print .p-item,
body.theme-light-print .portfolio-card,
body.theme-light-print .faq details,
body.theme-light-print .faq-item,
body.theme-light-print .wizard-shell,
body.theme-light-print .review-card,
body.theme-light-print .pay-box,
body.theme-light-print .option-card,
body.theme-light-print .feature,
body.theme-light-print .t-item,
body.theme-light-print .about-panel,
body.theme-light-print .estimate-panel,
body.theme-light-print .ind-item {
  background: #fff !important;
  border-color: var(--line) !important;
  color: var(--text) !important;
  box-shadow: var(--shadow-soft) !important;
  backdrop-filter: none !important;
}
body.theme-light-print .service-card h3,
body.theme-light-print .mat-card h3,
body.theme-light-print .lib-title,
body.theme-light-print .option-card h3,
body.theme-light-print .feature h3,
body.theme-light-print .cap-title,
body.theme-light-print .contact-form-title,
body.theme-light-print .wizard-top h2,
body.theme-light-print .step-title {
  color: var(--text) !important;
}
body.theme-light-print .service-card p,
body.theme-light-print .service-card .card-text,
body.theme-light-print .mat-card p,
body.theme-light-print .option-card p,
body.theme-light-print .cap-desc,
body.theme-light-print .step-help,
body.theme-light-print .wizard-top p {
  color: var(--muted) !important;
}
body.theme-light-print .svc-icon,
body.theme-light-print .service-card .num,
body.theme-light-print .service-card .sub,
body.theme-light-print .ps-num,
body.theme-light-print .option-card .tag {
  color: var(--accent) !important;
}
body.theme-light-print .service-card:hover,
body.theme-light-print .mat-card:hover,
body.theme-light-print .lib-card:hover,
body.theme-light-print .p-item:hover {
  border-color: rgba(229, 107, 31, 0.35) !important;
  transform: translateY(-2px);
}

/* Process section light */
body.theme-light-print .process-steps li {
  background: var(--bg1) !important;
  border-color: transparent !important;
}
body.theme-light-print .process-steps strong { color: var(--text) !important; }
body.theme-light-print .process-steps p { color: var(--muted) !important; }
body.theme-light-print .process-media img { opacity: 1; }

/* Industries */
body.theme-light-print .industries-strip {
  background: transparent !important;
  border-color: transparent !important;
}
body.theme-light-print .ind-item {
  color: var(--muted) !important;
}
body.theme-light-print .ind-item:hover {
  color: var(--text) !important;
  border-color: rgba(229, 107, 31, 0.3) !important;
}
body.theme-light-print .ind-ico {
  background: rgba(229, 107, 31, 0.1) !important;
  border-color: rgba(229, 107, 31, 0.16) !important;
  color: var(--accent) !important;
}
body.theme-light-print .industries-note { color: var(--muted-2) !important; }

/* About list */
body.theme-light-print .about-list li { color: var(--muted) !important; }
body.theme-light-print .about-list li::before { background: var(--accent) !important; box-shadow: none !important; }

/* Forms */
body.theme-light-print input:not([type="checkbox"]):not([type="radio"]),
body.theme-light-print select,
body.theme-light-print textarea {
  background: #fff !important;
  border: 1.5px solid var(--line-2) !important;
  color: var(--text) !important;
}
body.theme-light-print input::placeholder,
body.theme-light-print textarea::placeholder { color: #a8a29e !important; }
body.theme-light-print input:not([type="checkbox"]):not([type="radio"]):focus,
body.theme-light-print select:focus,
body.theme-light-print textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(229, 107, 31, 0.12) !important;
}
body.theme-light-print .field,
body.theme-light-print label { color: var(--text) !important; }
body.theme-light-print input[type="checkbox"],
body.theme-light-print input[type="radio"] {
  width: 1.15rem !important;
  height: 1.15rem !important;
  min-width: 1.15rem !important;
  margin: 0.18rem 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  accent-color: #e56b1f;
  flex-shrink: 0;
}
body.theme-light-print .dropzone {
  background: #fff !important;
  border-color: var(--line-2) !important;
  color: var(--text) !important;
}
body.theme-light-print .dropzone:hover,
body.theme-light-print .dropzone.is-drag {
  border-color: var(--accent) !important;
  background: rgba(229, 107, 31, 0.04) !important;
  box-shadow: 0 0 0 3px rgba(229, 107, 31, 0.08) !important;
}
body.theme-light-print .file-chip {
  background: var(--bg1) !important;
  border-color: var(--line) !important;
  color: var(--text) !important;
}
body.theme-light-print .wizard-top {
  background: linear-gradient(180deg, #fffaf4, #fff) !important;
  border-bottom-color: var(--line) !important;
}
body.theme-light-print .wizard-body { background: #fff !important; }
body.theme-light-print .mode-chip {
  background: #faf8f5 !important;
  border-color: rgba(28, 25, 23, 0.1) !important;
  color: #1c1917 !important;
  opacity: 1 !important;
  box-shadow: none !important;
}
body.theme-light-print .mode-chip strong {
  color: #1c1917 !important;
  font-weight: 650;
}
body.theme-light-print .mode-chip span { color: #44403c !important; }
body.theme-light-print .mode-chip:hover {
  border-color: rgba(229, 107, 31, 0.28) !important;
  background: #fff !important;
}
body.theme-light-print .mode-chip.is-active {
  opacity: 1 !important;
  color: #9a3412 !important;
  border-color: #e56b1f !important;
  border-width: 2px !important;
  background: rgba(229, 107, 31, 0.1) !important;
  box-shadow:
    0 0 0 3px rgba(229, 107, 31, 0.22),
    0 10px 28px rgba(229, 107, 31, 0.28),
    0 3px 10px rgba(229, 107, 31, 0.18) !important;
}
body.theme-light-print .mode-chip.is-active strong {
  color: #c2410c !important;
}
body.theme-light-print .mode-chip.is-active span {
  color: rgba(154, 52, 18, 0.78) !important;
}
body.theme-light-print .mode-badge,
body.theme-light-print .stripe-badge,
body.theme-light-print .pill {
  background: rgba(229, 107, 31, 0.08) !important;
  border-color: rgba(229, 107, 31, 0.2) !important;
  color: var(--accent) !important;
}
body.theme-light-print .option-card {
  background: #faf8f5 !important;
  border: 1.5px solid rgba(28, 25, 23, 0.1) !important;
  color: #1c1917 !important;
  box-shadow: none !important;
}
body.theme-light-print .option-card h3 {
  color: #1c1917 !important;
}
body.theme-light-print .option-card p {
  color: #44403c !important;
}
body.theme-light-print .option-card .tag {
  color: #c2410c !important;
}
body.theme-light-print .option-card:hover {
  border-color: rgba(229, 107, 31, 0.28) !important;
  background: #fff !important;
}
body.theme-light-print .option-card:has(input:checked),
body.theme-light-print .option-card.is-selected {
  background: rgba(229, 107, 31, 0.1) !important;
  border: 2px solid #e56b1f !important;
  box-shadow:
    0 0 0 3px rgba(229, 107, 31, 0.22),
    0 10px 28px rgba(229, 107, 31, 0.28),
    0 3px 10px rgba(229, 107, 31, 0.18) !important;
}
body.theme-light-print .option-card:has(input:checked) h3,
body.theme-light-print .option-card.is-selected h3 {
  color: #c2410c !important;
}
body.theme-light-print .option-card:has(input:checked) p,
body.theme-light-print .option-card.is-selected p {
  color: rgba(154, 52, 18, 0.85) !important;
}
body.theme-light-print .option-card:has(input:checked) .tag,
body.theme-light-print .option-card.is-selected .tag {
  color: #9a3412 !important;
}
body.theme-light-print .progress button { color: var(--muted-2) !important; }
body.theme-light-print .progress button .bar { background: #eadfce !important; }
body.theme-light-print .progress button.is-active { color: var(--text) !important; }
body.theme-light-print .progress button.is-active .bar,
body.theme-light-print .progress button.is-done .bar {
  background: var(--accent) !important;
  box-shadow: none !important;
}
body.theme-light-print .progress button.is-done { color: var(--accent) !important; }
body.theme-light-print .kv .k { color: var(--muted-2) !important; }
body.theme-light-print .kv .v { color: var(--text) !important; }
body.theme-light-print .pay-box {
  border-color: rgba(229, 107, 31, 0.25) !important;
  background: #fffaf4 !important;
}
body.theme-light-print .pay-box .amount,
body.theme-light-print .estimate-price {
  color: var(--accent) !important;
}
body.theme-light-print .estimate-panel {
  background: #fff !important;
  border-color: rgba(229, 107, 31, 0.22) !important;
}
body.theme-light-print .estimate-stat {
  background: var(--bg1) !important;
  border-color: var(--line) !important;
}
body.theme-light-print .estimate-stat strong,
body.theme-light-print .estimate-panel h4 {
  color: var(--text) !important;
}
body.theme-light-print .estimate-stat-label,
body.theme-light-print .estimate-note,
body.theme-light-print .estimate-kicker {
  color: var(--muted) !important;
}
body.theme-light-print .estimate-kicker { color: var(--accent) !important; }
body.theme-light-print .estimate-loading { color: var(--text) !important; }
body.theme-light-print .lib-badge {
  background: rgba(255,255,255,0.92) !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
}
body.theme-light-print .lib-chip {
  background: #fff !important;
  border-color: var(--line) !important;
  color: var(--muted) !important;
}
body.theme-light-print .lib-status,
body.theme-light-print .lib-footnote-lite { color: var(--muted-2) !important; }
body.theme-light-print .lib-selected {
  background: rgba(229, 107, 31, 0.08) !important;
  border-color: rgba(229, 107, 31, 0.22) !important;
}
body.theme-light-print .lib-selected-text { color: var(--text) !important; }
body.theme-light-print .contact-item .k { color: var(--muted-2) !important; }
body.theme-light-print .contact-item a,
body.theme-light-print .contact-item span { color: var(--text) !important; }
body.theme-light-print .contact-item a:hover { color: var(--accent) !important; }
body.theme-light-print .success-panel,
body.theme-light-print .order-id-box {
  color: var(--text) !important;
}
body.theme-light-print .order-id-box {
  background: var(--bg1) !important;
  border-color: var(--line) !important;
}
body.theme-light-print .alert.ok {
  background: rgba(31, 157, 98, 0.1) !important;
  color: #0f6b42 !important;
}
body.theme-light-print .sticky-cta {
  background: rgba(250, 244, 236, 0.96) !important;
  border-top-color: var(--line) !important;
  box-shadow: 0 -8px 24px rgba(60, 40, 20, 0.08) !important;
}

/* FOOTER dark chocolate */
body.theme-light-print .site-footer {
  background: var(--chocolate) !important;
  border-top: 0 !important;
  color: #c4b8ab !important;
  margin-top: 2rem;
}
body.theme-light-print .site-footer::before { display: none !important; }
body.theme-light-print .footer-grid {
  border-bottom-color: rgba(255,255,255,0.08) !important;
}
body.theme-light-print .foot-brand .brand-text,
body.theme-light-print .site-footer .brand-text {
  color: #fff !important;
}
body.theme-light-print .foot-brand p,
body.theme-light-print .foot-col,
body.theme-light-print .foot-bottom,
body.theme-light-print .foot-credit,
body.theme-light-print .newsletter-sub {
  color: #b7aa9c !important;
}
body.theme-light-print .foot-credit a {
  color: #eadfd3 !important;
}
body.theme-light-print .foot-credit a:hover {
  color: #f07828 !important;
}
body.theme-light-print .foot-col h4,
body.theme-light-print .newsletter-title {
  color: #fff !important;
}
body.theme-light-print .foot-col a {
  color: #cfc3b6 !important;
}
body.theme-light-print .foot-col a:hover {
  color: #f07828 !important;
}
body.theme-light-print .newsletter {
  border-top-color: rgba(255,255,255,0.08) !important;
}
body.theme-light-print .newsletter-row input {
  background: rgba(0,0,0,0.25) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #fff !important;
}
body.theme-light-print .newsletter-note { color: #86efac !important; }

@media (max-width: 960px) {
  body.theme-light-print .hero-grid {
    grid-template-columns: 1fr !important;
  }
  body.theme-light-print .feature-strip-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 560px) {
  body.theme-light-print .feature-strip-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== materials vs industries distinct v61 ===== */

/* MATERIALS — light section, physical sample tiles with big colour tops */
body.theme-light-print .section-materials {
  padding-top: 2.75rem !important;
  padding-bottom: 3rem !important;
  background:
    linear-gradient(180deg, #f7f1e8 0%, #f3ebe0 100%) !important;
  border-top: 1px solid rgba(60, 40, 20, 0.06);
  border-bottom: 1px solid rgba(60, 40, 20, 0.06);
}

body.theme-light-print .materials-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.theme-light-print .mat-tile {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8dccb;
  box-shadow: 0 8px 22px rgba(60, 40, 20, 0.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
body.theme-light-print .mat-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 107, 31, 0.35);
  box-shadow: 0 16px 32px rgba(60, 40, 20, 0.12);
}

body.theme-light-print .mat-swatch {
  position: relative;
  height: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.55rem 0.75rem;
  background: #e56b1f;
}
body.theme-light-print .mat-swatch-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

body.theme-light-print .mat-tile[data-mat="pla"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35), transparent 45%),
    linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}
body.theme-light-print .mat-tile[data-mat="petg"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3), transparent 45%),
    linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
}
body.theme-light-print .mat-tile[data-mat="abs"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2), transparent 45%),
    linear-gradient(135deg, #adb5bd 0%, #495057 100%);
}
body.theme-light-print .mat-tile[data-mat="tpu"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3), transparent 45%),
    linear-gradient(135deg, #80ed99 0%, #38a3a5 100%);
}
body.theme-light-print .mat-tile[data-mat="nylon"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.28), transparent 45%),
    linear-gradient(135deg, #b8b8ff 0%, #7b2cbf 100%);
}
body.theme-light-print .mat-tile[data-mat="resin"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35), transparent 45%),
    linear-gradient(135deg, #ffd6a5 0%, #ff922b 100%);
}
body.theme-light-print .mat-tile[data-mat="photo"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3), transparent 45%),
    linear-gradient(135deg, #caf0f8 0%, #0077b6 100%);
}
body.theme-light-print .mat-tile[data-mat="board"] .mat-swatch {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.22), transparent 45%),
    linear-gradient(135deg, #e9ecef 0%, #6c757d 100%);
}

body.theme-light-print .mat-copy {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
body.theme-light-print .mat-copy h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1c1917 !important;
  letter-spacing: -0.01em;
}
body.theme-light-print .mat-copy p {
  margin: 0;
  font-size: 0.86rem;
  color: #6b6560 !important;
  line-height: 1.4;
}

/* INDUSTRIES — full-bleed dark chocolate band, horizontal icon chips */
body.theme-light-print .section-industries {
  padding: 0 !important;
  margin: 0;
}
body.theme-light-print .industries-band {
  background:
    radial-gradient(900px 320px at 12% -10%, rgba(229, 107, 31, 0.22), transparent 55%),
    radial-gradient(700px 280px at 90% 110%, rgba(229, 107, 31, 0.1), transparent 50%),
    linear-gradient(160deg, #3a2c22 0%, #2a2018 50%, #1f1813 100%);
  padding: 2.75rem 0 2.6rem;
  color: #f5efe8;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
body.theme-light-print .industries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}
body.theme-light-print .industries-intro {
  max-width: 28rem;
}
body.theme-light-print .industries-kicker {
  display: inline-flex;
  margin: 0 0 0.7rem;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: rgba(240, 120, 40, 0.16);
  border: 1px solid rgba(240, 120, 40, 0.38);
  color: #ffb07a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.theme-light-print .industries-intro h2 {
  margin: 0 0 0.6rem !important;
  color: #fff !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}
body.theme-light-print .industries-intro p {
  margin: 0;
  color: #cfc3b6;
  font-size: 0.98rem;
  line-height: 1.55;
}
body.theme-light-print .industries-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}
body.theme-light-print .ind-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 124px;
  padding: 1rem 0.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
body.theme-light-print .ind-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(240, 120, 40, 0.5);
  transform: translateY(-2px);
}
body.theme-light-print .ind-badge {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ff9b55;
  background: rgba(240, 120, 40, 0.14);
  border: 1px solid rgba(240, 120, 40, 0.3);
  flex-shrink: 0;
}
body.theme-light-print .ind-name {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.25;
}

@media (max-width: 1024px) {
  body.theme-light-print .industries-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  body.theme-light-print .industries-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  body.theme-light-print .materials-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  body.theme-light-print .materials-board {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  body.theme-light-print .mat-swatch { height: 58px; }
  body.theme-light-print .industries-rail {
    grid-template-columns: 1fr;
  }
  body.theme-light-print .ind-chip {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 0;
    padding: 0.85rem 1rem;
    text-align: left;
    gap: 0.9rem;
  }
}
@media (max-width: 420px) {
  body.theme-light-print .materials-board {
    grid-template-columns: 1fr;
  }
}
/* ===== end v61 ===== */


/* ===== industries stronger photo + side-clearance chips v65 ===== */
body.theme-light-print .industries-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #2a221c !important;
  border-top: 1px solid rgba(60, 40, 20, 0.06);
  border-bottom: 1px solid rgba(60, 40, 20, 0.08);
  padding: 2.35rem 0 2.25rem !important;
  /* lighter wash so products read clearly */
  background:
    linear-gradient(180deg, rgba(252, 247, 240, 0.42) 0%, rgba(247, 239, 228, 0.32) 50%, rgba(252, 247, 240, 0.48) 100%),
    url("/assets/img/industries-bg.jpg") center 42% / cover no-repeat !important;
}
body.theme-light-print .industries-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* soft vignette only — keeps edges readable, centre open for chips */
  background:
    radial-gradient(ellipse 70% 85% at 50% 55%, rgba(252, 247, 240, 0.28) 0%, transparent 72%),
    linear-gradient(90deg, rgba(255,248,240,0.12) 0%, transparent 12%, transparent 88%, rgba(255,248,240,0.12) 100%);
}
body.theme-light-print .industries-band > .wrap {
  position: relative;
  z-index: 1;
}
body.theme-light-print .industries-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 1.45rem;
  /* slight frosted pill behind title for legibility without hiding photo */
  padding: 0.55rem 1rem 0.65rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(60, 40, 20, 0.05);
}
body.theme-light-print .industries-head h2 {
  margin: 0 0 0.35rem !important;
  color: #1c1917 !important;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem) !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
}
body.theme-light-print .industries-head p {
  margin: 0;
  color: #5c534c !important;
  font-size: 0.95rem;
  line-height: 1.4;
}
body.theme-light-print .industries-rail {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
  width: 100%;
}
/* more transparent chips so side products show through and around */
body.theme-light-print .ind-chip {
  min-height: 150px !important;
  padding: 1.05rem 0.55rem 0.95rem !important;
  gap: 0.45rem !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.34) !important;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  box-shadow:
    0 8px 22px rgba(60, 40, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(7px) saturate(1.1);
  -webkit-backdrop-filter: blur(7px) saturate(1.1);
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
body.theme-light-print .ind-chip:hover {
  background: rgba(255, 255, 255, 0.58) !important;
  border-color: rgba(229, 107, 31, 0.42) !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(60, 40, 20, 0.11) !important;
}
body.theme-light-print .ind-badge {
  width: 3.75rem !important;
  height: 3.75rem !important;
  border-radius: 15px !important;
  color: #e56b1f !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(229, 107, 31, 0.28) !important;
  box-shadow: 0 4px 12px rgba(60, 40, 20, 0.06);
}
body.theme-light-print .ind-badge svg {
  width: 32px;
  height: 32px;
}
body.theme-light-print .ind-name {
  color: #1c1917 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}
body.theme-light-print .ind-desc {
  display: block;
  color: #5f5750 !important;
  font-size: 0.72rem;
  line-height: 1.3;
  font-weight: 500;
  max-width: 10.5rem;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  body.theme-light-print .industries-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  body.theme-light-print .industries-band {
    background:
      linear-gradient(180deg, rgba(252, 247, 240, 0.5) 0%, rgba(247, 239, 228, 0.4) 100%),
      url("/assets/img/industries-bg.jpg") center / cover no-repeat !important;
  }
  body.theme-light-print .industries-head {
    text-align: left;
    margin-bottom: 1.15rem;
    max-width: none;
  }
  body.theme-light-print .industries-rail {
    grid-template-columns: 1fr !important;
  }
  body.theme-light-print .ind-chip {
    min-height: 0 !important;
    padding: 0.9rem 1rem !important;
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.95rem;
    row-gap: 0.2rem;
    align-items: center;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.5) !important;
  }
  body.theme-light-print .ind-chip .ind-badge {
    grid-row: 1 / span 2;
  }
  body.theme-light-print .ind-desc {
    margin: 0;
    max-width: none;
  }
}
/* ===== end v65 ===== */


/* ===== industries head no box + denser side products v66 ===== */
body.theme-light-print .industries-head {
  text-align: center !important;
  max-width: 36rem !important;
  margin: 0 auto 1.5rem !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.theme-light-print .industries-head h2 {
  margin: 0 0 0.4rem !important;
  color: #1c1917 !important;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem) !important;
  letter-spacing: -0.03em !important;
  font-weight: 750 !important;
  text-shadow: 0 1px 2px rgba(255,255,255,0.85), 0 0 18px rgba(252,247,240,0.9);
}
body.theme-light-print .industries-head p {
  margin: 0 !important;
  color: #4f4741 !important;
  font-size: 0.98rem !important;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}
body.theme-light-print .industries-band {
  background:
    linear-gradient(180deg, rgba(252, 247, 240, 0.38) 0%, rgba(247, 239, 228, 0.28) 50%, rgba(252, 247, 240, 0.42) 100%),
    url("/assets/img/industries-bg.jpg") center 40% / cover no-repeat !important;
}
/* ===== end v66 ===== */


/* ===== materials soft catalog v70 ===== */
body.theme-light-print .section-materials {
  padding-top: 2.75rem !important;
  padding-bottom: 2.5rem !important;
  background: transparent !important;
  border: 0 !important;
}

body.theme-light-print .materials-head {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

/* soft outer shell — calm, no heavy chrome */
body.theme-light-print .materials-shell {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(232, 220, 203, 0.9);
  border-radius: 22px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 10px 28px rgba(60, 40, 20, 0.04);
}

body.theme-light-print .materials-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

/* interactive soft cells */
body.theme-light-print .mat-soft {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1.05rem 1.05rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #eee4d6;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.03);
  cursor: pointer;
  position: relative;
  outline: none;
  transition:
    border-color .18s ease,
    box-shadow .2s ease,
    transform .2s ease,
    background .18s ease;
}
body.theme-light-print .mat-soft:hover {
  border-color: rgba(229, 107, 31, 0.45);
  box-shadow:
    0 14px 32px rgba(60, 40, 20, 0.1),
    0 0 0 3px rgba(229, 107, 31, 0.1);
  transform: translateY(-4px);
  background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
}
body.theme-light-print .mat-soft:focus-visible {
  border-color: #e56b1f;
  box-shadow:
    0 0 0 3px rgba(229, 107, 31, 0.22),
    0 12px 28px rgba(60, 40, 20, 0.08);
}
body.theme-light-print .mat-soft.is-active,
body.theme-light-print .mat-soft[aria-pressed="true"] {
  border-color: #e56b1f;
  background: linear-gradient(180deg, #fff 0%, #fff5eb 100%);
  box-shadow:
    0 0 0 3px rgba(229, 107, 31, 0.2),
    0 16px 36px rgba(229, 107, 31, 0.12);
  transform: translateY(-2px);
}
body.theme-light-print .mat-soft:hover .mat-code,
body.theme-light-print .mat-soft.is-active .mat-code {
  background: rgba(229, 107, 31, 0.16);
  border-color: rgba(229, 107, 31, 0.35);
  transform: scale(1.04);
}
body.theme-light-print .mat-code {
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
body.theme-light-print .mat-soft:hover .mat-traits li,
body.theme-light-print .mat-soft.is-active .mat-traits li {
  background: rgba(229, 107, 31, 0.1);
  color: #9a3412;
}
body.theme-light-print .mat-traits li {
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
body.theme-light-print .mat-soft:hover .mat-traits li {
  transform: translateY(-1px);
}
body.theme-light-print .mat-soft-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f0e7da;
  opacity: 0.55;
  transition: opacity .18s ease;
}
body.theme-light-print .mat-soft:hover .mat-soft-foot,
body.theme-light-print .mat-soft.is-active .mat-soft-foot,
body.theme-light-print .mat-soft:focus-within .mat-soft-foot {
  opacity: 1;
}
body.theme-light-print .mat-soft-hint {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a89c90;
}
body.theme-light-print .mat-soft.is-active .mat-soft-hint {
  color: #c45f1a;
}
body.theme-light-print .mat-soft.is-active .mat-soft-hint::after {
  content: " · selected";
}
body.theme-light-print .mat-soft-cta {
  font-size: 0.84rem;
  font-weight: 750;
  color: #c45f1a;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(229, 107, 31, 0.1);
  border: 1px solid rgba(229, 107, 31, 0.2);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
body.theme-light-print .mat-soft-cta:hover {
  background: rgba(229, 107, 31, 0.18);
  box-shadow: 0 4px 12px rgba(229, 107, 31, 0.15);
  transform: translateY(-1px);
  color: #9a3412;
}
body.theme-light-print .mat-props {
  transition: border-color .15s ease, background .15s ease;
}
body.theme-light-print .mat-soft:hover .mat-props,
body.theme-light-print .mat-soft.is-active .mat-props {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(229, 107, 31, 0.2);
}

body.theme-light-print .mat-soft-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

body.theme-light-print .mat-code {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c45f1a;
  background: rgba(229, 107, 31, 0.09);
  border: 1px solid rgba(229, 107, 31, 0.14);
}

body.theme-light-print .mat-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c45f1a !important;
}

body.theme-light-print .mat-soft h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1c1917 !important;
}

body.theme-light-print .mat-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #6f675f !important;
  flex: 1;
}

body.theme-light-print .mat-best {
  margin: 0.15rem 0 0.1rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #4a433c !important;
  font-weight: 500;
}
body.theme-light-print .mat-best span {
  display: inline;
  margin-right: 0.28rem;
  color: #c45f1a;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.theme-light-print .mat-traits {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.55rem 0 0;
  border-top: 1px solid #f0e7da;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
body.theme-light-print .mat-traits li {
  margin: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #7a7168;
  background: #f7f1e8;
  border: none;
}

body.theme-light-print .mat-footnote {
  margin: 1.1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid #efe6d8;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #8a8178;
}

/* hide legacy v69 markup if any residual */
body.theme-light-print .materials-guide,
body.theme-light-print .mat-card,
body.theme-light-print .mat-ico,
body.theme-light-print .mat-group-label {
  /* superseded */
}

@media (max-width: 1100px) {
  body.theme-light-print .materials-soft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  body.theme-light-print .materials-shell {
    padding: 0.85rem;
    border-radius: 18px;
  }
  body.theme-light-print .materials-soft-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  body.theme-light-print .mat-soft {
    padding: 0.95rem 1rem;
  }
}
/* ===== end v70 ===== */


/* ===== landing hero + scroll fade v71 ===== */
body.theme-light-print {
  /* ensure page canvas is plain cream once hero fades */
}

body.theme-light-print .hero-landing {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 3.5rem;
  margin: 0 0 0.5rem;
  overflow: hidden;
}

body.theme-light-print .hero-landing-bg {
  position: absolute;
  inset: -8% -2% -12%;
  z-index: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transform-origin: center 40%;
  transition: none;
}

body.theme-light-print .hero-landing-photo {
  position: absolute;
  inset: 0;
  background:
    url("/assets/img/landing-bg.jpg") center 45% / cover no-repeat;
  filter: saturate(1.02) contrast(1.02);
}

body.theme-light-print .hero-landing-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(252, 247, 240, 0.88) 0%, rgba(252, 247, 240, 0.72) 38%, rgba(252, 247, 240, 0.42) 62%, rgba(252, 247, 240, 0.55) 100%),
    linear-gradient(180deg, rgba(252, 247, 240, 0.35) 0%, rgba(252, 247, 240, 0.15) 40%, rgba(247, 239, 228, 0.55) 100%);
}

body.theme-light-print .hero-landing-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
}

body.theme-light-print .hero-landing-copy {
  max-width: 36rem;
  padding: 1.35rem 1.45rem 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(60, 40, 20, 0.07);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

body.theme-light-print .hero-landing-copy h1 {
  margin: 0.55rem 0 0.85rem;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #1c1917 !important;
}

body.theme-light-print .hero-landing-copy .lead {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #5c534c !important;
}

body.theme-light-print .hero-landing-copy .hero-bullets {
  margin-bottom: 1.25rem;
}

body.theme-light-print .hero-landing-aside {
  display: flex;
  justify-content: flex-end;
}

body.theme-light-print .hero-aside-card {
  width: min(100%, 240px);
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(60, 40, 20, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.theme-light-print .hero-aside-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c45f1a;
}

body.theme-light-print .hero-aside-line {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c1917;
  letter-spacing: -0.02em;
}

body.theme-light-print .hero-aside-note {
  margin: 0;
  font-size: 0.88rem;
  color: #6f675f;
}

body.theme-light-print .hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #8a8178;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

body.theme-light-print .hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(196, 95, 26, 0.65), transparent);
  animation: heroScrollPulse 1.8s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* legacy hero styles should not fight landing */
body.theme-light-print .hero.hero-light {
  display: none !important;
}

/* after landing, keep rest of page calm cream (bg-fx already handles base) */
body.theme-light-print .feature-strip {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  body.theme-light-print .hero-landing {
    min-height: auto;
    padding: 3.25rem 0 2.75rem;
  }
  body.theme-light-print .hero-landing-inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  body.theme-light-print .hero-landing-aside {
    justify-content: flex-start;
  }
  body.theme-light-print .hero-aside-card {
    width: 100%;
  }
  body.theme-light-print .hero-landing-wash {
    background:
      linear-gradient(180deg, rgba(252, 247, 240, 0.82) 0%, rgba(252, 247, 240, 0.68) 55%, rgba(247, 239, 228, 0.72) 100%);
  }
}
/* ===== end v71 ===== */


/* ===== landing hero cohesive panel v77 ===== */
/*
  One surface. Clear hierarchy.
  Photo stays as canvas; content is a single designed panel
  (not three floating boxes in random corners).
*/

body.theme-light-print .hero-landing {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 6rem 0 3rem !important;
  margin: 0 !important;
  overflow: hidden;
}

body.theme-light-print .hero-landing-bg {
  position: absolute;
  inset: 0 !important;
  z-index: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transform-origin: 50% 45%;
}

body.theme-light-print .hero-landing-photo {
  position: absolute;
  inset: 0;
  background:
    url("/assets/img/landing-bg.jpg") center 42% / cover no-repeat !important;
}

/* softer vignette — let products breathe on the sides */
body.theme-light-print .hero-landing-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 58% at 50% 48%, rgba(252, 247, 240, 0.55) 0%, rgba(252, 247, 240, 0.18) 55%, transparent 78%),
    linear-gradient(180deg, rgba(252, 247, 240, 0.35) 0%, transparent 28%, transparent 62%, rgba(247, 239, 228, 0.5) 100%);
}

body.theme-light-print .hero-landing-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* —— THE panel —— */
body.theme-light-print .hero-panel {
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 1.75rem 1.85rem 1.65rem;
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 252, 247, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px rgba(60, 40, 20, 0.12),
    0 8px 20px rgba(60, 40, 20, 0.06);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

body.theme-light-print .hero-panel-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin-bottom: 0.95rem;
}

body.theme-light-print .hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c45f1a;
  background: rgba(229, 107, 31, 0.12);
  border: 1px solid rgba(229, 107, 31, 0.22);
}

body.theme-light-print .hero-pill-muted {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #6b6560;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(232, 220, 203, 0.9);
}

body.theme-light-print .hero-title {
  margin: 0 0 0.7rem !important;
  font-size: clamp(2.05rem, 4.8vw, 2.85rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
  font-weight: 800 !important;
  color: #1c1917 !important;
}

body.theme-light-print .hero-title .grad {
  color: #e56b1f !important;
  -webkit-text-fill-color: #e56b1f !important;
}

body.theme-light-print .hero-lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #5c534c !important;
  font-weight: 500;
}

/* process as horizontal icon rail inside panel */
body.theme-light-print .hero-flow {
  margin: 0 0 1.35rem;
  padding: 0.9rem 0.75rem 0.85rem;
  border-radius: 18px;
  background: rgba(247, 241, 232, 0.65);
  border: 1px solid rgba(232, 220, 203, 0.95);
}

body.theme-light-print .hero-flow-rail {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.15rem;
}

body.theme-light-print .hero-flow-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.25rem 0.2rem;
}

body.theme-light-print .hero-flow-ico {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #e56b1f;
  background: #fff;
  border: 1px solid rgba(229, 107, 31, 0.18);
  box-shadow: 0 6px 14px rgba(60, 40, 20, 0.06);
}

body.theme-light-print .hero-flow-txt {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

body.theme-light-print .hero-flow-txt strong {
  font-size: 0.84rem;
  font-weight: 750;
  color: #1c1917;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-style: normal;
}

body.theme-light-print .hero-flow-txt em {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  color: #8a8178;
  line-height: 1.25;
}

body.theme-light-print .hero-flow-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 1.2rem;
  background: rgba(229, 107, 31, 0.35);
  align-self: flex-start;
}

/* CTAs — full width of panel, primary dominant */
body.theme-light-print .hero-cta-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.65rem;
}

body.theme-light-print .btn-hero-main {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1.25rem !important;
  font-size: 1.02rem !important;
  font-weight: 750 !important;
  border-radius: 14px !important;
  letter-spacing: -0.01em;
}

body.theme-light-print .btn-hero-main.btn-primary {
  box-shadow: 0 14px 32px rgba(229, 107, 31, 0.34) !important;
}

body.theme-light-print .btn-hero-main.btn-outline {
  background: #fff !important;
  border-width: 1.5px !important;
}

body.theme-light-print .hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: #9a8f84;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

body.theme-light-print .hero-scroll-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, rgba(196, 95, 26, 0.7), transparent);
  animation: heroScrollPulse 1.8s ease-in-out infinite;
}

/* kill old multi-card heroes */
body.theme-light-print .hero-pair,
body.theme-light-print .hero-landing-copy,
body.theme-light-print .hero-aside-card,
body.theme-light-print .hero-flow-track,
body.theme-light-print .hero-workflow {
  /* superseded */
}

@media (max-width: 640px) {
  body.theme-light-print .hero-landing {
    padding: 5rem 0 2.25rem !important;
    min-height: auto;
  }
  body.theme-light-print .hero-panel {
    padding: 1.35rem 1.15rem 1.25rem;
    border-radius: 22px;
  }
  body.theme-light-print .hero-flow-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.5rem;
  }
  body.theme-light-print .hero-flow-dot {
    display: none;
  }
  body.theme-light-print .hero-flow-step {
    padding: 0.55rem 0.4rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
  }
  body.theme-light-print .hero-cta-bar {
    grid-template-columns: 1fr;
  }
}
/* ===== end v77 ===== */


/* ===== landing polish + apple-smooth scroll v81 ===== */

body.theme-light-print {
  background-color: #f7f1e8;
}

body.theme-light-print .hero-landing {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 6rem 0 3.25rem !important;
  margin: 0 !important;
  overflow: visible;
  background: transparent !important;
  z-index: 1;
}

/* Fixed full-viewport photo — stays put; JS only fades opacity */
body.theme-light-print .hero-landing-bg {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  opacity: 1;
  transition: none;
}

body.theme-light-print .hero-landing-photo {
  position: absolute;
  inset: 0;
  background:
    url("/assets/img/landing-bg.jpg") center 42% / cover no-repeat !important;
  transform: translateZ(0);
}

body.theme-light-print .hero-landing-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 60% at 42% 48%, rgba(252, 247, 240, 0.5) 0%, rgba(252, 247, 240, 0.14) 58%, transparent 78%),
    linear-gradient(180deg, rgba(252, 247, 240, 0.32) 0%, transparent 30%, transparent 55%, rgba(247, 239, 228, 0.55) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

body.theme-light-print .hero-landing-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: clamp(1rem, 7vw, 5.5rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

body.theme-light-print .hero-panel {
  width: min(100%, 640px);
  margin: 0 !important;
  transform: none;
}

/* Content below paints over fixed photo — solid scroll feel */
body.theme-light-print .feature-strip,
body.theme-light-print .section,
body.theme-light-print .section-materials,
body.theme-light-print .section-industries,
body.theme-light-print .wizard-section,
body.theme-light-print .site-footer,
body.theme-light-print footer {
  position: relative;
  z-index: 3;
}

body.theme-light-print .feature-strip {
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.96) 0%, #f7f1e8 35%) !important;
  margin-top: 0;
  padding-top: 1.75rem !important;
}

body.theme-light-print .hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 640px) {
  body.theme-light-print .hero-landing-stage {
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: center;
  }
  body.theme-light-print .hero-panel {
    width: 100%;
  }
  /* fixed backgrounds jank on many mobile browsers */
  body.theme-light-print .hero-landing-bg {
    position: absolute !important;
  }
}
/* ===== end v81 ===== */


/* ===== landing position + height + fade pace v82 ===== */
body.theme-light-print .hero-landing {
  /* shorter than full viewport — less empty photo under the panel */
  min-height: 78vh !important;
  min-height: 78dvh !important;
  max-height: none;
  justify-content: flex-start !important;
  /* higher: less top padding than full-center 6rem */
  padding: 4.6rem 0 1.75rem !important;
}

body.theme-light-print .hero-landing-stage {
  /* a bit more to the right than v81 left bias */
  justify-content: flex-start !important;
  padding-left: clamp(1.75rem, 12vw, 9.5rem) !important;
  padding-right: clamp(1rem, 4vw, 2rem) !important;
  /* pull content up within hero */
  padding-top: 0.35rem;
  align-items: flex-start !important;
}

body.theme-light-print .hero-panel {
  margin-top: 0.25rem !important;
}

/* crop fixed photo so it doesn't feel endless below */
body.theme-light-print .hero-landing-bg {
  /* still full viewport fixed for fade, but mask harder at bottom */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0,0,0,0.45) 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0,0,0,0.45) 78%, transparent 100%);
}

body.theme-light-print .hero-landing-wash {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 92%);
}

body.theme-light-print .hero-scroll-hint {
  bottom: 0.75rem !important;
}

body.theme-light-print .feature-strip {
  padding-top: 1.25rem !important;
}

@media (max-width: 640px) {
  body.theme-light-print .hero-landing {
    min-height: auto !important;
    padding: 4.75rem 0 1.5rem !important;
  }
  body.theme-light-print .hero-landing-stage {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    justify-content: center !important;
  }
}
/* ===== end v82 ===== */


/* ===== library airy redesign v84 — no white panel ===== */
body.theme-light-print #library {
  padding-top: 2.5rem !important;
  padding-bottom: 2.75rem !important;
}

/* Kill white "table" box */
body.theme-light-print #library .lib-panel,
body.theme-light-print #library .lib-shell {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

body.theme-light-print #library .lib-controls {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  padding: 0;
  max-width: 100%;
}

/* Search bar — roomy, not stuck to edges */
body.theme-light-print #library .lib-search-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 170px) auto !important;
  gap: 0.7rem !important;
  align-items: center;
  margin: 0 !important;
  padding: 0.15rem 0 !important;
  max-width: 52rem;
}

body.theme-light-print #library .lib-search-row input,
body.theme-light-print #library .lib-search-row select {
  background: #fff !important;
  border: 1.5px solid #e0d4c4 !important;
  color: #1c1917 !important;
  border-radius: 14px !important;
  min-height: 3rem !important;
  padding: 0.7rem 1rem !important;
  box-shadow: 0 4px 14px rgba(60, 40, 20, 0.04);
}

body.theme-light-print #library .lib-search-row input:focus,
body.theme-light-print #library .lib-search-row select:focus {
  border-color: rgba(229, 107, 31, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(229, 107, 31, 0.12) !important;
  outline: none;
}

body.theme-light-print #library #lib-search-btn {
  min-height: 3rem !important;
  padding: 0.7rem 1.35rem !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

/* Chips — soft pills with breathing room */
body.theme-light-print #library .lib-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  margin: 0 !important;
  padding: 0.1rem 0 0.15rem !important;
}

body.theme-light-print #library .lib-chip {
  border: 1px solid #e0d4c4 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #5c534c !important;
  border-radius: 999px !important;
  padding: 0.48rem 0.95rem !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.03);
  transition: border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
body.theme-light-print #library .lib-chip:hover,
body.theme-light-print #library .lib-chip.is-active {
  border-color: rgba(229, 107, 31, 0.4) !important;
  background: #fff !important;
  color: #c45f1a !important;
  box-shadow: 0 4px 12px rgba(229, 107, 31, 0.1);
}

body.theme-light-print #library .lib-status {
  color: #8a8178 !important;
  font-size: 0.88rem !important;
  margin: 0.15rem 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  min-height: 1.2em;
}
body.theme-light-print #library .lib-status.is-error {
  color: #c2410c !important;
}

body.theme-light-print #library .lib-selected {
  margin: 0.35rem 0 0 !important;
  padding: 0.85rem 1rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(229, 107, 31, 0.25) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 6px 16px rgba(60, 40, 20, 0.05);
}
body.theme-light-print #library .lib-selected-text {
  color: #1c1917 !important;
}

/* Grid of soft cards floating on cream */
body.theme-light-print #library .lib-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.theme-light-print #library .lib-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  border-radius: 18px !important;
  border: 1px solid rgba(232, 220, 203, 0.95) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  overflow: hidden !important;
  box-shadow: 0 10px 24px rgba(60, 40, 20, 0.06) !important;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease !important;
}
body.theme-light-print #library .lib-card:hover {
  border-color: rgba(229, 107, 31, 0.35) !important;
  box-shadow: 0 16px 32px rgba(60, 40, 20, 0.1) !important;
  transform: translateY(-3px) !important;
}

body.theme-light-print #library .lib-cover-wrap {
  aspect-ratio: 1 / 1 !important;
  background: #efe6d8 !important;
  overflow: hidden !important;
}
body.theme-light-print #library .lib-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body.theme-light-print #library .lib-badge {
  background: rgba(255, 255, 255, 0.94) !important;
  color: #c45f1a !important;
  border: 1px solid rgba(229, 107, 31, 0.18) !important;
  font-weight: 750 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.04em;
}

body.theme-light-print #library .lib-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  padding: 0.8rem 0.85rem 0.9rem !important;
  flex: 1 1 auto !important;
  background: transparent !important;
}

body.theme-light-print #library .lib-title {
  color: #1c1917 !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  min-height: 2.3em !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body.theme-light-print #library .lib-meta-line {
  display: block;
  font-size: 0.72rem;
  color: #9a8f84;
  margin: 0;
}

body.theme-light-print #library .lib-actions {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  gap: 0.4rem !important;
  margin-top: auto !important;
  padding-top: 0.2rem;
}
body.theme-light-print #library .lib-actions .btn {
  width: 100% !important;
  min-height: 2.3rem !important;
  justify-content: center !important;
  font-size: 0.76rem !important;
  border-radius: 10px !important;
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

body.theme-light-print #library .lib-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #8a8178 !important;
  padding: 2.25rem 1rem !important;
  border: 1px dashed #e0d4c4 !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.4) !important;
}

body.theme-light-print #library .lib-footnote-lite {
  margin-top: 1.1rem !important;
  color: #9a8f84 !important;
  font-size: 0.82rem !important;
  padding: 0 !important;
}

/* Override any leftover dark toolbar strips */
body.theme-light-print #library .lib-toolbar,
body.theme-light-print #library .lib-controls {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

@media (max-width: 960px) {
  body.theme-light-print #library .lib-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
  }
  body.theme-light-print #library .lib-search-row {
    grid-template-columns: 1fr !important;
    max-width: none;
  }
  body.theme-light-print #library #lib-search-btn {
    width: 100%;
  }
}
@media (max-width: 520px) {
  body.theme-light-print #library .lib-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
  }
  body.theme-light-print #library .lib-actions {
    grid-template-columns: 1fr !important;
  }
  body.theme-light-print #library .lib-chip {
    padding: 0.42rem 0.75rem !important;
    font-size: 0.78rem !important;
  }
}
/* ===== end v84 ===== */


/* ===== feature photo cards v85 ===== */
body.theme-light-print .feat-body h3 {
  margin: 0 0 0.4rem !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
}
body.theme-light-print .feat-body p {
  margin: 0 !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  color: var(--muted) !important;
}
@media (max-width: 900px) {
  body.theme-light-print .feature-strip-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 560px) {
  body.theme-light-print .feature-strip-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== hero-landing-stage v87 center full-width panel + offers ===== */
body.theme-light-print .hero-landing-stage {
  justify-content: center !important;
  align-items: stretch !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: min(var(--max), calc(100% - 2rem)) !important;
  max-width: var(--max) !important;
  margin-inline: auto !important;
  box-sizing: border-box;
}

body.theme-light-print .hero-panel {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

/* Offer banner inside existing panel */
body.theme-light-print .hero-offer {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 0.95rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(229, 107, 31, 0.12), rgba(229, 107, 31, 0.05));
  border: 1px solid rgba(229, 107, 31, 0.22);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
body.theme-light-print .hero-offer.is-swap {
  opacity: 0;
  transform: translateY(4px);
}
body.theme-light-print .hero-offer-tag {
  flex: 0 0 auto;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent, #e56b1f);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  line-height: 1.2;
  white-space: nowrap;
}
body.theme-light-print .hero-offer-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--text);
  font-weight: 600;
}
body.theme-light-print .hero-offer-dots {
  display: flex;
  gap: 0.35rem;
  margin: -0.35rem 0 0.95rem;
  justify-content: flex-start;
}
body.theme-light-print .hero-offer-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(40, 28, 18, 0.18);
  cursor: pointer;
}
body.theme-light-print .hero-offer-dots button.is-active {
  background: var(--accent, #e56b1f);
  width: 18px;
  border-radius: 999px;
}

@media (max-width: 640px) {
  body.theme-light-print .hero-landing-stage {
    justify-content: center !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  body.theme-light-print .hero-panel {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }
}
/* ===== end v86 ===== */


/* ===== hero panel v87 force center full page width ===== */
body.theme-light-print .hero-landing {
  align-items: center !important;
}
body.theme-light-print .hero-landing-stage.wrap,
body.theme-light-print .hero-landing-stage {
  display: flex !important;
  justify-content: center !important;
  align-items: stretch !important;
  width: min(var(--max), calc(100% - 2rem)) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
body.theme-light-print .hero-panel {
  width: 100% !important;
  max-width: none !important;
  margin: 0.25rem 0 0 !important;
  padding: 1.5rem 1.75rem 1.45rem !important;
}

/* wide panel: content breathes in a soft 2-col on large screens */
body.theme-light-print .hero-panel .hero-title {
  max-width: 22ch;
}
body.theme-light-print .hero-panel .hero-lead {
  max-width: 52ch;
}
@media (min-width: 900px) {
  body.theme-light-print .hero-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    grid-template-areas:
      "top top"
      "offer offer"
      "dots dots"
      "title flow"
      "lead flow"
      "cta cta";
    column-gap: 2rem;
    row-gap: 0.55rem;
    align-items: start;
    padding: 1.65rem 2rem 1.55rem !important;
  }
  body.theme-light-print .hero-panel-top { grid-area: top; margin-bottom: 0.25rem !important; }
  body.theme-light-print .hero-offer { grid-area: offer; margin-bottom: 0.25rem !important; }
  body.theme-light-print .hero-offer-dots { grid-area: dots; margin: 0 0 0.35rem !important; }
  body.theme-light-print .hero-title { grid-area: title; margin: 0 !important; }
  body.theme-light-print .hero-lead { grid-area: lead; margin: 0.15rem 0 0 !important; }
  body.theme-light-print .hero-flow { grid-area: flow; margin: 0 !important; align-self: center; }
  body.theme-light-print .hero-cta-bar { grid-area: cta; margin-top: 0.65rem !important; }
  body.theme-light-print .hero-flow-rail {
    flex-wrap: wrap;
    gap: 0.65rem 0.5rem;
  }
}
@media (max-width: 640px) {
  body.theme-light-print .hero-landing-stage {
    width: min(100% - 1.5rem, var(--max)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.theme-light-print .hero-panel {
    width: 100% !important;
    padding: 1.2rem 1.1rem 1.15rem !important;
  }
}
/* ===== end v87 ===== */


/* ===== hero panel v88 left compact (restore) ===== */
body.theme-light-print .hero-landing {
  align-items: stretch !important;
}
body.theme-light-print .hero-landing-stage.wrap,
body.theme-light-print .hero-landing-stage {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  width: min(var(--max), calc(100% - 2rem)) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(0.25rem, 2vw, 1rem) !important;
  padding-right: clamp(1rem, 4vw, 2rem) !important;
  box-sizing: border-box !important;
}
body.theme-light-print .hero-panel {
  display: block !important; /* kill v87 grid */
  width: min(100%, 690px) !important;
  max-width: 690px !important;
  margin: 0.25rem 0 0 !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding: 1.75rem 1.85rem 1.65rem !important;
  grid-template-columns: none !important;
  grid-template-areas: none !important;
}
body.theme-light-print .hero-panel-top,
body.theme-light-print .hero-offer,
body.theme-light-print .hero-offer-dots,
body.theme-light-print .hero-title,
body.theme-light-print .hero-lead,
body.theme-light-print .hero-flow,
body.theme-light-print .hero-cta-bar {
  grid-area: auto !important;
}
body.theme-light-print .hero-panel .hero-title {
  max-width: none;
}
body.theme-light-print .hero-panel .hero-lead {
  max-width: 38ch;
}
body.theme-light-print .hero-title,
body.theme-light-print .hero-lead,
body.theme-light-print .hero-flow,
body.theme-light-print .hero-cta-bar {
  margin-top: revert;
}
@media (max-width: 640px) {
  body.theme-light-print .hero-landing-stage {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.theme-light-print .hero-panel {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 1.2rem 1.1rem 1.15rem !important;
  }
}
/* ===== end v88 ===== */


/* v88 width 690 — 50% wider compact panel */
body.theme-light-print .hero-panel {
  width: min(100%, 690px) !important;
  max-width: 690px !important;
}


/* ===== hero panel v89 taller 30% ===== */
body.theme-light-print .hero-panel {
  /* was ~1.75 / 1.65 vertical; +30% */
  padding: 2.3rem 1.95rem 2.15rem !important;
  min-height: 520px !important;
  box-sizing: border-box !important;
}
body.theme-light-print .hero-panel-top {
  margin-bottom: 1.15rem !important;
}
body.theme-light-print .hero-offer {
  margin-bottom: 1.15rem !important;
  padding: 0.85rem 1rem !important;
}
body.theme-light-print .hero-title {
  margin-bottom: 0.85rem !important;
  line-height: 1.05 !important;
}
body.theme-light-print .hero-lead {
  margin-bottom: 1.15rem !important;
}
body.theme-light-print .hero-flow {
  margin-bottom: 1.25rem !important;
}
body.theme-light-print .hero-cta-bar {
  margin-top: 0.35rem !important;
  gap: 0.75rem !important;
}
@media (max-width: 640px) {
  body.theme-light-print .hero-panel {
    min-height: 0 !important;
    padding: 1.55rem 1.25rem 1.5rem !important;
  }
}
/* ===== end v89 ===== */


/* ===== process section v90 rules + soft btns ===== */
body.theme-light-print .section-process {
  position: relative !important;
  padding: 2.75rem 0 2.85rem !important;
  background: transparent !important;
  overflow: visible;
}
body.theme-light-print .process-rule {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #e56b1f 0%, #f08a3a 50%, #e56b1f 100%);
  border: 0;
  margin: 0;
  box-shadow: 0 1px 0 rgba(229, 107, 31, 0.25);
}
body.theme-light-print .process-rule-bottom {
  margin-top: 0;
}
body.theme-light-print .section-process .wrap.process-grid {
  padding-top: 2.35rem;
  padding-bottom: 2.35rem;
}
body.theme-light-print .process-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
  position: relative;
  z-index: 3;
  isolation: isolate;
}
body.theme-light-print .btn-soft,
body.theme-light-print .btn-soft-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  line-height: 1.2;
  position: relative;
  z-index: 4;
  pointer-events: auto;
  /* solid fill so the section mesh does not show through */
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
body.theme-light-print .btn-soft {
  background: #f3d2b8 !important;
  background-image: none !important;
  color: #9a3412 !important;
  border-color: rgba(229, 107, 31, 0.35) !important;
  box-shadow: 0 2px 8px rgba(154, 52, 18, 0.1) !important;
}
body.theme-light-print .btn-soft:hover {
  background: #eec09a !important;
  color: #7c2d12 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(154, 52, 18, 0.14) !important;
}
body.theme-light-print .btn-soft-outline {
  background: #fffaf4 !important;
  background-image: none !important;
  color: #c45f1a !important;
  border-color: rgba(229, 107, 31, 0.4) !important;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.06) !important;
}
body.theme-light-print .btn-soft-outline:hover {
  background: #ffffff !important;
  border-color: rgba(229, 107, 31, 0.55) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(60, 40, 20, 0.1) !important;
}
body.theme-light-print .process-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
/* ===== end v90 ===== */

/* ===== process section v91 4x4 pixel texture fill ===== */
body.theme-light-print .section-process {
  /* 4×4 pixel grid — chocolate brown on cream */
  background-color: #f7efe4 !important;
  background-image:
    linear-gradient(rgba(74, 44, 26, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 44, 26, 0.14) 1px, transparent 1px) !important;
  background-size: 4px 4px !important;
  background-position: 0 0 !important;
}
body.theme-light-print .section-process .process-rule {
  position: relative;
  z-index: 2;
}
body.theme-light-print .section-process .wrap.process-grid {
  position: relative;
  z-index: 2;
}
body.theme-light-print .section-process .process-copy {
  position: relative;
  z-index: 3;
}

/* process eyebrow solid over mesh */
body.theme-light-print .section-process .eyebrow,
body.theme-light-print #process .eyebrow {
  position: relative !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  background: #fffaf4 !important;
  background-image: none !important;
  color: #c45f1a !important;
  border: 1px solid rgba(229, 107, 31, 0.35) !important;
  border-radius: 999px !important;
  padding: 0.38rem 0.85rem !important;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.06) !important;
  -webkit-text-fill-color: #c45f1a !important;
}

body.theme-light-print .section-process .process-panel {
  position: relative;
  z-index: 2;
}
/* Mesh is background only — never capture clicks */
body.theme-light-print .section-process::before,
body.theme-light-print .section-process::after {
  pointer-events: none !important;
}
/* ===== end v91 ===== */


/* ===== library section v95 bg pop ===== */
body.theme-light-print #library {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  padding-top: 3.25rem !important;
  padding-bottom: 3.5rem !important;
  background-color: #f3ebe1 !important;
  background-image:
    linear-gradient(180deg, rgba(252, 247, 240, 0.72) 0%, rgba(247, 239, 228, 0.55) 40%, rgba(247, 239, 228, 0.78) 100%),
    url("/assets/img/library-bg.jpg") !important;
  background-size: cover !important;
  background-position: center 40% !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: inset 0 20px 40px rgba(255, 252, 247, 0.35), inset 0 -16px 32px rgba(255, 252, 247, 0.25);
}
body.theme-light-print #library .wrap {
  position: relative;
  z-index: 1;
}
body.theme-light-print #library .lib-shell {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 22px !important;
  padding: 1.35rem 1.35rem 1.5rem !important;
  box-shadow: 0 18px 50px rgba(60, 40, 20, 0.1) !important;
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}
body.theme-light-print #library .section-head h2 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
/* ===== end v95 ===== */


/* ===== sitewide section photo bands v96 ===== */
body.theme-light-print {
  --section-photo-a: url("/assets/img/library-bg.jpg");
  --section-photo-b: url("/assets/img/section-bg-soft.jpg");
  --section-wash: linear-gradient(
    180deg,
    rgba(252, 247, 240, 0.78) 0%,
    rgba(247, 239, 228, 0.58) 45%,
    rgba(247, 239, 228, 0.82) 100%
  );
  --section-wash-soft: linear-gradient(
    180deg,
    rgba(252, 247, 240, 0.88) 0%,
    rgba(247, 239, 228, 0.72) 50%,
    rgba(252, 247, 240, 0.9) 100%
  );
}

body.theme-light-print #services,
body.theme-light-print #materials,
body.theme-light-print #about,
body.theme-light-print #portfolio,
body.theme-light-print #contact,
body.theme-light-print #library,
body.theme-light-print .wizard-section,
body.theme-light-print .feature-strip {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  background-color: #f3ebe1 !important;
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow:
    inset 0 18px 36px rgba(255, 252, 247, 0.28),
    inset 0 -14px 28px rgba(255, 252, 247, 0.2);
}

body.theme-light-print #services { background-position: center 15% !important; }

body.theme-light-print .feature-strip {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 70% !important;
  padding-top: 1.75rem !important;
  padding-bottom: 2rem !important;
}

body.theme-light-print #materials {
  background-color: #f3ebe1 !important;
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-size: cover !important;
  background-position: center 55% !important;
  background-repeat: no-repeat !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body.theme-light-print #about { background-position: center 30% !important; }

body.theme-light-print #portfolio {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 75% !important;
  padding-top: 2.5rem !important;
  padding-bottom: 3rem !important;
}

body.theme-light-print #library { background-position: center 40% !important; }

body.theme-light-print .wizard-section {
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-position: center 25% !important;
  padding-top: 2.5rem !important;
  padding-bottom: 4rem !important;
}

body.theme-light-print #contact {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 45% !important;
}

/* Keep industries dark; process keeps chocolate pixel grid */
body.theme-light-print #industries {
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  background-color: transparent !important;
}

body.theme-light-print #process {
  background-image:
    linear-gradient(rgba(74, 44, 26, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 44, 26, 0.14) 1px, transparent 1px) !important;
  background-size: 4px 4px !important;
  background-color: #f7efe4 !important;
  box-shadow: none !important;
}

/* Frosted shells */
body.theme-light-print #materials .materials-shell {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 22px !important;
  padding: 1.25rem !important;
  box-shadow: 0 18px 50px rgba(60, 40, 20, 0.1) !important;
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

body.theme-light-print #about .about-grid > div:first-child {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 1.35rem 1.45rem 1.4rem;
  box-shadow: 0 16px 40px rgba(60, 40, 20, 0.08);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

body.theme-light-print #portfolio .section-head,
body.theme-light-print #services .section-head,
body.theme-light-print #contact .section-head,
body.theme-light-print #materials .section-head {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 10px 28px rgba(60, 40, 20, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.theme-light-print .wizard-section .wizard-shell {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 24px !important;
  box-shadow: 0 22px 60px rgba(60, 40, 20, 0.12) !important;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

body.theme-light-print #contact .contact-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.theme-light-print #services .service-card,
body.theme-light-print #portfolio .p-item {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.theme-light-print .feature-strip .feat-item {
  background: rgba(255, 255, 255, 0.9) !important;
}

body.theme-light-print #library .lib-shell {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  border-radius: 22px !important;
  padding: 1.35rem 1.35rem 1.5rem !important;
  box-shadow: 0 18px 50px rgba(60, 40, 20, 0.1) !important;
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
}

body.theme-light-print #services .wrap,
body.theme-light-print #materials .wrap,
body.theme-light-print #about .wrap,
body.theme-light-print #portfolio .wrap,
body.theme-light-print #contact .wrap,
body.theme-light-print #library .wrap,
body.theme-light-print .wizard-section .wrap,
body.theme-light-print .feature-strip .wrap {
  position: relative;
  z-index: 1;
}
/* ===== end v96 ===== */


/* ===== v97 hide section seams ===== */
body.theme-light-print #services,
body.theme-light-print #materials,
body.theme-light-print #about,
body.theme-light-print #portfolio,
body.theme-light-print #contact,
body.theme-light-print #library,
body.theme-light-print .wizard-section,
body.theme-light-print .feature-strip,
body.theme-light-print #process,
body.theme-light-print .section,
body.theme-light-print .section-materials {
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: none !important;
  box-shadow: none !important; /* remove inset seam-looking shadows */
}
/* keep soft lift only inside cards/shells, not section edges */
body.theme-light-print #library,
body.theme-light-print #services,
body.theme-light-print #materials,
body.theme-light-print #about,
body.theme-light-print #portfolio,
body.theme-light-print #contact,
body.theme-light-print .wizard-section,
body.theme-light-print .feature-strip {
  /* subtle continuous fill, no edge line */
  box-shadow: none !important;
}
/* ===== end v97 ===== */


/* ===== library lib-shell texture v98 / soft photo v101 ===== */
body.theme-light-print #library .lib-shell {
  /* soft light photo fill — no grid/net pattern */
  background-color: #f7efe6 !important;
  background-image:
    linear-gradient(180deg, rgba(255, 252, 247, 0.72) 0%, rgba(252, 247, 240, 0.55) 50%, rgba(247, 239, 228, 0.68) 100%),
    url("/assets/img/lib-shell-soft.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 22px !important;
  padding: 1.35rem 1.35rem 1.5rem !important;
  box-shadow: 0 18px 50px rgba(60, 40, 20, 0.1) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.theme-light-print #library .lib-card {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 8px 22px rgba(60, 40, 20, 0.08) !important;
}
body.theme-light-print #library .lib-search-row input,
body.theme-light-print #library .lib-search-row select {
  background: rgba(255, 255, 255, 0.9) !important;
}
body.theme-light-print #library .lib-chip {
  background: rgba(255, 255, 255, 0.82) !important;
}
/* ===== end v98 ===== */


/* ===== library pricing note v99 ===== */
body.theme-light-print #library .lib-pricing-note {
  margin: 0.65rem 0 0;
  max-width: 46rem;
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  background: rgba(229, 107, 31, 0.1);
  border: 1px solid rgba(229, 107, 31, 0.22);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 600;
}
body.theme-light-print #library .lib-pricing-note strong {
  color: #c45f1a;
}
/* Free library model panel — light */
body.theme-light-print .free-model-panel {
  background: #fffaf4 !important;
  border: 1px solid rgba(229, 107, 31, 0.22) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}
body.theme-light-print .free-model-kicker {
  color: #c45f1a !important;
}
body.theme-light-print .free-model-panel h4 {
  color: #1c1917 !important;
}
body.theme-light-print .free-model-panel .muted,
body.theme-light-print #free-model-meta {
  color: #57534e !important;
}
body.theme-light-print .free-model-panel .btn-secondary,
body.theme-light-print .free-model-panel .btn-sm {
  background: #fff !important;
  border: 1.5px solid rgba(28, 25, 23, 0.12) !important;
  color: #1c1917 !important;
}
body.theme-light-print .free-model-price-note {
  margin: 0.15rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(229, 107, 31, 0.1);
  border: 1px solid rgba(229, 107, 31, 0.22);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}
body.theme-light-print .free-model-price-note strong {
  color: #c45f1a;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.theme-light-print .free-model-check {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: flex-start !important;
  margin-top: 0.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1.5px solid rgba(229, 107, 31, 0.28) !important;
  background: #fff !important;
  color: #1c1917 !important;
  box-shadow: none !important;
}
body.theme-light-print .free-model-check span {
  color: #1c1917 !important;
  font-size: 0.9rem;
  line-height: 1.45;
}
body.theme-light-print .free-model-check strong {
  color: #c2410c !important;
}
body.theme-light-print .hint-ok {
  color: #15803d !important;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  margin-top: 0.35rem;
  line-height: 1.4;
}
/* Check rows sitewide in wizard/forms */
body.theme-light-print .check {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: flex-start !important;
  color: #1c1917 !important;
}
body.theme-light-print .check > span {
  color: #1c1917 !important;
  flex: 1;
  min-width: 0;
}
body.theme-light-print .shipping-rural,
body.theme-light-print .field.full > .check {
  margin-top: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(28, 25, 23, 0.1);
  background: #fff;
}
body.theme-light-print .shipping-rural {
  margin: 0.35rem 0 0.65rem;
}
/* Shipping radios — tight to label */
body.theme-light-print .ship-option {
  grid-template-columns: 1.25rem 1fr auto !important;
  column-gap: 0.7rem !important;
  align-items: start !important;
}
body.theme-light-print .ship-option input[type="radio"] {
  width: 1.15rem !important;
  height: 1.15rem !important;
  min-width: 1.15rem !important;
  margin: 0.2rem 0 0 !important;
  justify-self: start;
}
body.theme-light-print #library .lib-selected-text small {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.82rem;
}
/* ===== end v99 ===== */


/* ===== shipping options v100 ===== */
body.theme-light-print .shipping-box {
  margin-top: 0.35rem;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(229, 107, 31, 0.2);
}
body.theme-light-print .shipping-title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--text);
}
body.theme-light-print .shipping-sub {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}
body.theme-light-print .shipping-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: #c45f1a;
}
body.theme-light-print .shipping-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(229, 107, 31, 0.1);
  border: 1px solid rgba(229, 107, 31, 0.18);
}
body.theme-light-print .shipping-options {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
body.theme-light-print .ship-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 0.75rem;
  align-items: start;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(60, 40, 20, 0.1);
  background: #fff;
  cursor: pointer;
  transition: 0.15s ease;
}
body.theme-light-print .ship-option:hover {
  border-color: rgba(229, 107, 31, 0.35);
}

body.theme-light-print .ship-option-light {
  border-color: rgba(232, 120, 48, 0.28);
}
body.theme-light-print .ship-badge {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #8a3d12;
  background: rgba(232, 120, 48, 0.14);
  vertical-align: middle;
}

body.theme-light-print .ship-option.is-selected {
  border-color: rgba(229, 107, 31, 0.55);
  box-shadow: 0 0 0 3px rgba(229, 107, 31, 0.12);
  background: rgba(255, 248, 240, 0.95);
}
body.theme-light-print .ship-option input {
  margin-top: 0.2rem;
}
body.theme-light-print .ship-option-body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
body.theme-light-print .ship-option-body em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.78rem;
  color: #c45f1a;
  font-weight: 650;
}
body.theme-light-print .ship-option-body p {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}
body.theme-light-print .ship-option-price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}
body.theme-light-print .ship-option-price small {
  display: block;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--muted);
}
body.theme-light-print .shipping-rural {
  margin: 0.15rem 0 0.55rem;
}
body.theme-light-print .shipping-footnote {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
body.theme-light-print .shipping-footnote a {
  color: #c45f1a;
}
body.theme-light-print .pay-breakdown {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.86rem;
  color: var(--muted);
}
body.theme-light-print .pay-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0;
}
body.theme-light-print .pay-line span:last-child {
  font-weight: 700;
  color: var(--text);
}
/* ===== end v100 ===== */


/* ===== lib-shell final soft v102 ===== */
body.theme-light-print #library .lib-shell {
  background-color: #f7efe6 !important;
  background-image:
    linear-gradient(180deg, rgba(255,252,247,0.74) 0%, rgba(252,247,240,0.58) 45%, rgba(247,239,228,0.7) 100%),
    url("/assets/img/lib-shell-soft.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(255,255,255,0.92) !important;
  box-shadow: 0 18px 50px rgba(60,40,20,0.1) !important;
}
/* ===== end v102 ===== */


/* ===== orange fade dividers v106 — single line per seam ===== */
/* One 7px two-tone orange bar per section TOP only (no portfolio bottom = no double) */
body.theme-light-print #portfolio,
body.theme-light-print #library,
body.theme-light-print .wizard-section,
body.theme-light-print #contact,
body.theme-light-print .site-footer {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  position: relative !important;
}

/* Kill any previous portfolio bottom bar */
body.theme-light-print #portfolio::after {
  content: none !important;
  display: none !important;
}

body.theme-light-print #portfolio::before,
body.theme-light-print #library::before,
body.theme-light-print .wizard-section::before,
body.theme-light-print #contact::before,
body.theme-light-print .site-footer::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 7px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  ) !important;
  box-shadow:
    0 1px 0 rgba(255, 236, 214, 0.65),
    inset 0 1px 0 rgba(255, 248, 240, 0.55) !important;
}
/* ===== end v106 ===== */


/* ===== brand wordmark v107 ===== */
body.theme-light-print .brand.brand-wordmark,
body.theme-light-print a.brand.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0.15rem 0 !important;
}
body.theme-light-print .brand.brand-wordmark .brand-mark {
  display: none !important;
}
body.theme-light-print .brand.brand-wordmark .brand-text {
  font-family: "Roboto", "Arial Black", Arial, system-ui, sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-size: clamp(1.5rem, 2.86vw, 1.9rem) !important;
  letter-spacing: 0.01em !important;
  line-height: 1.05 !important;
  text-transform: none !important;
  color: var(--text) !important;
  background: linear-gradient(135deg, #1c1917 0%, #3d342c 40%, #e56b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* fallback solid if clip unsupported */
}
@supports not (background-clip: text) {
  body.theme-light-print .brand.brand-wordmark .brand-text {
    color: #1c1917 !important;
    background: none !important;
    -webkit-text-fill-color: unset;
  }
}
body.theme-light-print .brand.brand-wordmark .brand-tld {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.7em !important; /* 30% smaller than NYXLABS */
  letter-spacing: 0.02em !important;
  opacity: 0.92;
  background: linear-gradient(135deg, #e56b1f 0%, #f08a3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.theme-light-print .site-footer .brand.brand-wordmark .brand-text {
  background: linear-gradient(135deg, #fff7ed 0%, #ffd7b0 45%, #e56b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.05rem, 2vw, 1.3rem) !important;
}
body.theme-light-print .site-footer .brand.brand-wordmark .brand-tld {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.7em !important;
  background: linear-gradient(135deg, #f0d78c 0%, #e56b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* sticky header: keep wordmark crisp */
body.theme-light-print .site-header .brand.brand-wordmark:hover .brand-text {
  filter: brightness(1.05);
}
/* ===== end v107 ===== */


/* ===== plate sizes v108 ===== */
body.theme-light-print .printers-note {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(229, 107, 31, 0.08);
  border: 1px solid rgba(229, 107, 31, 0.2);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}
body.theme-light-print .printers-note strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c45f1a;
}
body.theme-light-print .printers-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}
body.theme-light-print .printers-note li span {
  display: inline-block;
  min-width: 3.2rem;
  margin-right: 0.35rem;
  font-weight: 750;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c45f1a;
}
body.theme-light-print .option-grid-plates {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
body.theme-light-print .option-card-enquiry {
  text-decoration: none !important;
  color: inherit;
  border-style: dashed !important;
  border-color: rgba(229, 107, 31, 0.45) !important;
  background: rgba(255, 248, 240, 0.95) !important;
  cursor: pointer;
}
body.theme-light-print .option-card-enquiry:hover {
  border-color: rgba(229, 107, 31, 0.75) !important;
  box-shadow: 0 10px 28px rgba(229, 107, 31, 0.12);
}
body.theme-light-print .option-card-enquiry .tag {
  background: rgba(229, 107, 31, 0.14);
  color: #c45f1a;
}
@media (max-width: 720px) {
  body.theme-light-print .option-grid-plates {
    grid-template-columns: 1fr !important;
  }
}
/* ===== end v108 ===== */


/* brand wordmark roboto black + arial tld */
.brand.brand-wordmark .brand-text {
  font-family: "Roboto", "Arial Black", Arial, system-ui, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.brand.brand-wordmark .brand-tld {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.7em;
}


/* materials ABS/ASA/PA props small text */
body.theme-light-print .mat-props {
  margin: 0.1rem 0 0;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: #faf6f0;
  border: 1px solid #f0e7da;
  font-size: 0.74rem;
  line-height: 1.4;
  color: #57534e !important;
  font-weight: 500;
}
body.theme-light-print .mat-props span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c45f1a;
}
body.theme-light-print .mat-props strong {
  color: #1c1917;
  font-weight: 700;
}
body.theme-light-print .option-card .option-props {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #78716c;
  font-weight: 500;
}
/* 7 material cards: keep 4-col then wrap; slightly denser on mid */
@media (min-width: 960px) {
  body.theme-light-print .materials-soft-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* shop catalog pages v120 */
body.theme-light-print .shop-page {
  padding: 2rem 0 4rem;
  min-height: 60vh;
}
body.theme-light-print .shop-hero {
  max-width: none;
  width: 100%;
  margin-bottom: 1.5rem;
}
body.theme-light-print .shop-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin: 0.35rem 0 0.65rem;
  color: #1c1917 !important;
  text-transform: none !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
body.theme-light-print .shop-hero p {
  color: #57534e;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
}
body.theme-light-print .shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0 1rem;
}
body.theme-light-print .shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
body.theme-light-print .shop-chip {
  appearance: none;
  border: 1px solid rgba(28, 25, 23, 0.1);
  background: #fff;
  color: #44403c;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  transition: 0.15s ease;
}
body.theme-light-print .shop-chip:hover {
  border-color: rgba(229, 107, 31, 0.35);
  color: #9a3412;
}
body.theme-light-print .shop-chip.is-active {
  background: rgba(229, 107, 31, 0.12);
  border-color: #e56b1f;
  color: #9a3412;
  box-shadow: 0 0 0 2px rgba(229, 107, 31, 0.15);
}
body.theme-light-print .shop-search {
  min-width: min(100%, 16rem);
  border-radius: 999px !important;
  padding: 0.55rem 0.95rem !important;
}
body.theme-light-print .shop-status {
  font-size: 0.82rem;
  color: #78716c;
  font-weight: 600;
  margin: 0 0 0.85rem;
}
body.theme-light-print .shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
body.theme-light-print .shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee4d6;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
body.theme-light-print .shop-card:hover,
body.theme-light-print .shop-card:focus-visible {
  border-color: rgba(229, 107, 31, 0.45);
  box-shadow: 0 12px 28px rgba(60, 40, 20, 0.1);
  transform: translateY(-2px);
  outline: none;
}
body.theme-light-print .shop-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3ebe1;
  overflow: hidden;
}
body.theme-light-print .shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.theme-light-print .shop-card-cta {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.82);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.15s ease;
}
body.theme-light-print .shop-card:hover .shop-card-cta,
body.theme-light-print .shop-card:focus-visible .shop-card-cta {
  opacity: 1;
  transform: none;
}
body.theme-light-print .shop-card-body {
  padding: 0.9rem 1rem 1.05rem;
  display: grid;
  gap: 0.35rem;
}
body.theme-light-print .shop-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
body.theme-light-print .shop-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a89c90;
}
body.theme-light-print .shop-card-price {
  font-size: 0.78rem;
  font-weight: 750;
  color: #c45f1a;
}
body.theme-light-print .shop-card-body h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #1c1917 !important;
  line-height: 1.25;
}
body.theme-light-print .shop-card-body p {
  margin: 0;
  font-size: 0.86rem;
  color: #6f675f;
  line-height: 1.45;
}
body.theme-light-print .shop-card-mat {
  font-size: 0.78rem !important;
  color: #9a3412 !important;
  font-weight: 650;
}
body.theme-light-print .shop-empty {
  grid-column: 1 / -1;
  padding: 2rem 1rem;
  text-align: center;
  color: #78716c;
}
body.theme-light-print .shop-note {
  margin-top: 1.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(229, 107, 31, 0.08);
  border: 1px solid rgba(229, 107, 31, 0.18);
  font-size: 0.9rem;
  color: #44403c;
  line-height: 1.45;
}
body.theme-light-print .shop-cross {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
/* product panel in wizard */
body.theme-light-print .product-order-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: #fffaf4 !important;
  border: 1px solid rgba(229, 107, 31, 0.22) !important;
}
body.theme-light-print .product-order-panel h4 {
  margin: 0;
  color: #1c1917 !important;
}
body.theme-light-print .product-order-kicker {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c45f1a;
}
body.theme-light-print .product-order-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.85rem;
  align-items: start;
}
body.theme-light-print .product-order-row img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee4d6;
}
/* nav links: default muted; active page orange */
/* top nav: caps, display font, faded vertical separators */
body.theme-light-print .nav-links {
  gap: 0 !important;
  align-items: center !important;
}
body.theme-light-print .nav-links a {
  position: relative;
  color: #3f3a36 !important; /* dark grey */
  font-family: "Space Grotesk", Inter, system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.79rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 0.4rem 0.8rem !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  transition: color 0.15s ease;
}
body.theme-light-print .nav-links a:hover {
  color: #1c1917 !important;
}
body.theme-light-print .nav-links a.is-active {
  color: #c45f1a !important;
  font-weight: 700 !important;
}
/* vertical faded edge lines between items */
body.theme-light-print .nav-links a:not(.nav-mobile-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(196, 95, 26, 0) 0%,
    rgba(196, 95, 26, 0.22) 18%,
    rgba(196, 95, 26, 0.45) 50%,
    rgba(196, 95, 26, 0.22) 82%,
    rgba(196, 95, 26, 0) 100%
  );
}
/* no line after last real nav item (before hidden mobile CTA) */
body.theme-light-print .nav-links a:nth-last-child(2)::after,
body.theme-light-print .nav-links a:last-child::after {
  display: none !important;
}
body.theme-light-print .nav-links a.nav-mobile-cta {
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
body.theme-light-print .nav-links a.nav-mobile-cta::after {
  display: none !important;
}
@media (max-width: 960px) {
  body.theme-light-print .nav-links {
    gap: 0.15rem !important;
  }
  body.theme-light-print .nav-links a {
    font-size: 0.82rem !important;
    letter-spacing: 0.06em !important;
    padding: 0.75rem 0.9rem !important;
    white-space: normal;
  }
  body.theme-light-print .nav-links a:not(.nav-mobile-cta)::after {
    display: none !important;
  }
  /* subtle bottom divider on mobile menu items instead */
  body.theme-light-print .nav-links a:not(.nav-mobile-cta):not(:last-child) {
    border-bottom: 1px solid rgba(232, 220, 203, 0.85);
  }
}


/* header logo +30% */
body.theme-light-print .site-header .brand.brand-wordmark .brand-text {
  font-size: clamp(1.5rem, 2.86vw, 1.9rem) !important;
}
body.theme-light-print .site-header .brand.brand-wordmark .brand-tld {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.7em !important; /* 30% smaller than NYXLABS */
}


/* lithophanes page v123 */
body.theme-light-print .litho-page {
  padding-bottom: 3rem;
}
body.theme-light-print .litho-hero {
  padding: 2.5rem 0 2rem;
}
body.theme-light-print .litho-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
body.theme-light-print .litho-hero-copy h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  margin: 0.35rem 0 0.85rem;
  color: #1c1917 !important;
  text-transform: none !important;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
body.theme-light-print .litho-hero-copy .lead {
  color: #57534e;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
body.theme-light-print .litho-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
body.theme-light-print .litho-price-note {
  margin: 0;
  font-size: 0.9rem;
  color: #6f675f;
  line-height: 1.45;
}
body.theme-light-print .litho-price-note strong {
  color: #c45f1a;
}
body.theme-light-print .litho-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee4d6;
  box-shadow: 0 18px 40px rgba(60, 40, 20, 0.1);
  background: #1c1917;
}
body.theme-light-print .litho-visual-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  filter: grayscale(0.15) contrast(1.05);
}
body.theme-light-print .litho-visual-caption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
body.theme-light-print .litho-section {
  padding: 2.25rem 0;
}
body.theme-light-print .litho-section-alt {
  /* photo band handled in v125 */
  border-top: 0;
  border-bottom: 0;
}
body.theme-light-print .litho-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
body.theme-light-print .litho-steps li {
  border-radius: 18px;
  padding: 1.05rem 1rem;
}
body.theme-light-print .litho-step-n {
  display: block;
  font-weight: 800;
  color: #c45f1a;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}
body.theme-light-print .litho-steps strong {
  display: block;
  color: #1c1917;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
body.theme-light-print .litho-steps p {
  margin: 0;
  color: #6f675f;
  font-size: 0.88rem;
  line-height: 1.45;
}
body.theme-light-print .litho-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
body.theme-light-print .litho-opt {
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
}
body.theme-light-print .litho-opt h3 {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  color: #1c1917 !important;
}
body.theme-light-print .litho-opt ul {
  margin: 0;
  padding: 0 0 0 1.05rem;
  color: #57534e;
  font-size: 0.9rem;
  line-height: 1.5;
}
body.theme-light-print .litho-opt li {
  margin-bottom: 0.35rem;
}
body.theme-light-print .litho-ideas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-bottom: 1.75rem;
}
body.theme-light-print .litho-idea {
  border-radius: 18px;
  overflow: hidden;
}
body.theme-light-print .litho-idea img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
body.theme-light-print .litho-idea h3 {
  margin: 0.85rem 1rem 0.3rem;
  font-size: 1.02rem;
  color: #1c1917 !important;
}
body.theme-light-print .litho-idea p {
  margin: 0 1rem 1rem;
  color: #6f675f;
  font-size: 0.88rem;
  line-height: 1.45;
}
body.theme-light-print .litho-bottom-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: rgba(229, 107, 31, 0.08);
  border: 1px solid rgba(229, 107, 31, 0.2);
}
body.theme-light-print .litho-bottom-cta h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: #1c1917 !important;
  text-transform: none !important;
}
body.theme-light-print .litho-bottom-cta p {
  margin: 0;
  color: #57534e;
  font-size: 0.92rem;
  max-width: 32rem;
  line-height: 1.45;
}
@media (max-width: 900px) {
  body.theme-light-print .litho-hero-grid,
  body.theme-light-print .litho-steps,
  body.theme-light-print .litho-options,
  body.theme-light-print .litho-ideas {
    grid-template-columns: 1fr;
  }
}
/* service grid 5 cards */
body.theme-light-print .service-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  body.theme-light-print .service-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  body.theme-light-print .service-grid-5 {
    grid-template-columns: 1fr;
  }
}


/* subpage chrome v124 */
body.theme-light-print .subpage {
  position: relative;
  z-index: 1;
  min-height: 55vh;
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
body.theme-light-print .shop-page.subpage {
  padding-top: 1.75rem;
}
body.theme-light-print .shop-page.subpage .shop-hero h1 {
  color: #1c1917 !important;
  text-transform: none !important;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.35rem 0 0.65rem;
}
body.theme-light-print .shop-page.subpage .shop-hero p {
  color: #57534e;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 48rem;
}
/* Keep nav-shell single-row; never stack brand/nav/cta on desktop */
body.theme-light-print .site-header .nav-shell {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
body.theme-light-print .site-header .nav-links {
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  min-width: 0;
}
body.theme-light-print .site-header .brand {
  flex: 0 0 auto;
}
body.theme-light-print .site-header .nav-actions {
  flex: 0 0 auto;
}
body.theme-light-print .nav-actions a.nav-shop-link {
  color: #3f3a36 !important;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.79rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 0.4rem 0.15rem 0.4rem 0.35rem !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.theme-light-print .nav-actions a.nav-shop-link:hover {
  color: #1c1917 !important;
}
body.theme-light-print .nav-actions a.nav-shop-link.is-active {
  color: #c45f1a !important;
  font-weight: 700 !important;
}
@media (max-width: 960px) {
  body.theme-light-print .site-header .nav-shell {
    flex-wrap: wrap;
  }
  body.theme-light-print .site-header .nav-links {
    justify-content: stretch;
  }
  body.theme-light-print .nav-links a.is-active {
    background: rgba(229, 107, 31, 0.1);
  }
}


/* ===== subpage photo bands + orange seams v125 ===== */
/* Same photo wash as homepage sections; orange fade line between bands */
body.theme-light-print .shop-page.subpage,
body.theme-light-print .litho-page .litho-hero,
body.theme-light-print .litho-page .litho-section {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  background-color: #f3ebe1 !important;
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center 30% !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow:
    inset 0 18px 36px rgba(255, 252, 247, 0.28),
    inset 0 -14px 28px rgba(255, 252, 247, 0.2) !important;
}

/* Alternate photo (section-bg-soft) between bands — like main page */
body.theme-light-print .litho-page .litho-section:nth-of-type(even),
body.theme-light-print .litho-page .litho-section-alt {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 55% !important;
}

body.theme-light-print .shop-page.subpage {
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-position: center 25% !important;
  padding-top: 2.25rem !important;
  padding-bottom: 3.5rem !important;
}

/* Ready prints: soft photo B for variety */
body.theme-light-print .shop-page.subpage[data-kind="ready_print"] {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 45% !important;
}

/* Orange fade line — shop pages */
body.theme-light-print .shop-page.subpage::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 7px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  ) !important;
  box-shadow:
    0 1px 0 rgba(255, 236, 214, 0.65),
    inset 0 1px 0 rgba(255, 248, 240, 0.55) !important;
}

/* Lithophanes: orange line only between some sections (not hero top, not HOW IT WORKS → OPTIONS) */
body.theme-light-print .litho-page .litho-section::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 7px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  ) !important;
  box-shadow:
    0 1px 0 rgba(255, 236, 214, 0.65),
    inset 0 1px 0 rgba(255, 248, 240, 0.55) !important;
}
/* No top line on hero */
body.theme-light-print .litho-page .litho-hero::before {
  content: none !important;
  display: none !important;
}
/* No line between HOW IT WORKS and OPTIONS (options uses litho-section-alt) */
body.theme-light-print .litho-page .litho-section.litho-section-alt::before {
  content: none !important;
  display: none !important;
}

/* Content sits above photo wash */
body.theme-light-print .shop-page.subpage > .wrap,
body.theme-light-print .litho-page .litho-hero > .wrap,
body.theme-light-print .litho-page .litho-section > .wrap {
  position: relative;
  z-index: 1;
}

/* Frosted panels so cards stay readable on photo bg */
body.theme-light-print .shop-page.subpage .shop-hero {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0 0 0.35rem;
  padding: 1.35rem 1.5rem 1.45rem;
  border-radius: 22px;
  /* satin glass */
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 247, 0.48) 45%, rgba(255, 255, 255, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 12px 36px rgba(60, 40, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}
body.theme-light-print .shop-page.subpage .shop-hero .eyebrow {
  margin-bottom: 0.65rem;
}
body.theme-light-print .shop-page.subpage .shop-hero h1 {
  max-width: none;
}
body.theme-light-print .shop-page.subpage .shop-hero p {
  max-width: 48rem;
  margin-bottom: 0;
}

body.theme-light-print .shop-page.subpage .shop-card {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.theme-light-print .shop-page.subpage .shop-note {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.theme-light-print .litho-page .litho-hero-copy {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  border-radius: 22px;
  padding: 1.35rem 1.5rem 1.45rem;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 247, 0.48) 45%, rgba(255, 255, 255, 0.38) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow:
    0 12px 36px rgba(60, 40, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(18px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
}

body.theme-light-print .litho-page .litho-steps li,
body.theme-light-print .litho-page .litho-opt,
body.theme-light-print .litho-page .litho-idea,
body.theme-light-print .litho-page .litho-bottom-cta {
  border-radius: 18px;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 247, 0.48) 45%, rgba(255, 255, 255, 0.38) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow:
    0 12px 36px rgba(60, 40, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(18px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
}

body.theme-light-print .litho-page .litho-idea {
  overflow: hidden;
}
body.theme-light-print .litho-page .litho-idea img {
  border-radius: 0;
}

body.theme-light-print .litho-page .litho-section-alt {
  /* keep alternating photo — cancel solid cream from older rule */
  background-color: #f3ebe1 !important;
}

body.theme-light-print .litho-page .section-head {
  border-radius: 18px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.25rem !important;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 247, 0.48) 45%, rgba(255, 255, 255, 0.38) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow:
    0 12px 36px rgba(60, 40, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(18px) saturate(1.25) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.25) !important;
}

/* Footer seam on subpages (restore orange line) */
body.theme-light-print .shell .site-footer {
  position: relative !important;
  border-top: 0 !important;
}
body.theme-light-print .shell .site-footer::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 7px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  ) !important;
  box-shadow:
    0 1px 0 rgba(255, 236, 214, 0.65),
    inset 0 1px 0 rgba(255, 248, 240, 0.55) !important;
}

/* Hero padding so line + content breathe */
body.theme-light-print .litho-page .litho-hero {
  padding: 2.75rem 0 2.5rem !important;
}
body.theme-light-print .litho-page .litho-section {
  padding: 2.5rem 0 !important;
}
/* ===== end v125 ===== */


/* shop page split bands */
body.theme-light-print .shop-page.subpage {
  /* main is a container — bands paint the photos */
  background-image: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}
body.theme-light-print .shop-page.subpage::before {
  display: none !important;
  content: none !important;
}
body.theme-light-print .shop-page.subpage .subpage-band {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  background-color: #f3ebe1 !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
  box-shadow:
    inset 0 18px 36px rgba(255, 252, 247, 0.28),
    inset 0 -14px 28px rgba(255, 252, 247, 0.2) !important;
  padding: 2.25rem 0 2.5rem !important;
}
body.theme-light-print .shop-page.subpage .subpage-band-a {
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-position: center 20% !important;
}
body.theme-light-print .shop-page.subpage .subpage-band-b {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 50% !important;
}
body.theme-light-print .shop-page.subpage .subpage-band::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  height: 7px !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  ) !important;
  box-shadow:
    0 1px 0 rgba(255, 236, 214, 0.65),
    inset 0 1px 0 rgba(255, 248, 240, 0.55) !important;
}
body.theme-light-print .shop-page.subpage .subpage-band > .wrap {
  position: relative;
  z-index: 1;
}


/* keyrings parametric page v129 */
body.theme-light-print .kr-page .subpage-band {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  background-color: #f3ebe1 !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  box-shadow:
    inset 0 18px 36px rgba(255, 252, 247, 0.28),
    inset 0 -14px 28px rgba(255, 252, 247, 0.2) !important;
  padding: 2.25rem 0 2.5rem !important;
}
body.theme-light-print .kr-page .subpage-band-a {
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-position: center 25% !important;
}
body.theme-light-print .kr-page .subpage-band-b {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 45% !important;
}
body.theme-light-print .kr-page .subpage-band::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0; right: 0; top: 0;
  height: 7px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  );
}
body.theme-light-print .kr-page .subpage-band-a::before {
  display: none !important;
  content: none !important;
}
body.theme-light-print .kr-page .subpage-band > .wrap {
  position: relative;
  z-index: 1;
}
body.theme-light-print .kr-hero h1 {
  color: #1c1917 !important;
  text-transform: none !important;
}
body.theme-light-print .kr-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
body.theme-light-print .kr-panel {
  border-radius: 22px;
  padding: 1.2rem 1.25rem 1.3rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 247, 0.48) 45%, rgba(255, 255, 255, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 12px 36px rgba(60, 40, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}
body.theme-light-print .kr-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
  color: #1c1917 !important;
  text-transform: none !important;
}
body.theme-light-print .kr-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
body.theme-light-print .kr-field {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: #44403c;
}
body.theme-light-print .kr-field em {
  font-weight: 500;
  color: #a8a29e;
  font-style: normal;
}
body.theme-light-print .kr-field input,
body.theme-light-print .kr-field select {
  width: 100%;
  border-radius: 11px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1.5px solid rgba(28, 25, 23, 0.1) !important;
  color: #1c1917 !important;
  padding: 0.65rem 0.75rem !important;
  font-weight: 500;
}
body.theme-light-print .kr-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
body.theme-light-print .kr-hint {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
  color: #78716c;
  line-height: 1.4;
}
body.theme-light-print .kr-preview-frame {
  background: #1a1714;
  border: 1px solid rgba(28, 25, 23, 0.18);
  border-radius: 16px;
  padding: 0;
  min-height: 260px;
  overflow: hidden;
}
body.theme-light-print .kr-preview-3d canvas {
  display: block;
  width: 100%;
  height: 320px;
}
body.theme-light-print .kr-preview-proof {
  margin-top: 0.75rem;
  background: #1a1714;
  border: 1px solid rgba(28, 25, 23, 0.18);
  border-radius: 16px;
  overflow: hidden;
}
body.theme-light-print .kr-preview-proof span {
  display: block;
  padding: 0.45rem 0.75rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6d3d1;
}
body.theme-light-print .kr-preview-proof canvas {
  display: block;
  width: 100%;
  height: 140px;
}
body.theme-light-print .kr-preview-actions {
  margin-top: 0.75rem;
}
body.theme-light-print .kr-cart-thumb {
  width: 72px;
  height: 40px;
  object-fit: contain;
  background: #1a1714;
  border-radius: 8px;
  border: 1px solid rgba(28, 25, 23, 0.12);
}
body.theme-light-print .kr-field-span {
  grid-column: 1 / -1;
}
body.theme-light-print .kr-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
body.theme-light-print .kr-swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(28, 25, 23, 0.15);
  cursor: pointer;
  padding: 0;
}
body.theme-light-print .kr-swatch.is-on {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #c45f1a;
}
body.theme-light-print .kr-cart-panel {
  margin-top: 0;
}
body.theme-light-print .kr-cart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
body.theme-light-print .kr-cart-head h2 { margin: 0; }
body.theme-light-print .kr-total {
  font-size: 0.9rem;
  color: #57534e;
}
body.theme-light-print .kr-total strong { color: #c45f1a; }
body.theme-light-print .kr-empty {
  margin: 0;
  color: #78716c;
  font-size: 0.9rem;
}
body.theme-light-print .kr-cart {
  display: grid;
  gap: 0.55rem;
}
body.theme-light-print .kr-cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
body.theme-light-print .kr-cart-main {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
body.theme-light-print .kr-cart-main strong {
  color: #1c1917;
  font-size: 0.95rem;
}
body.theme-light-print .kr-cart-main span {
  font-size: 0.8rem;
  color: #78716c;
}
body.theme-light-print .kr-cart-actions {
  display: flex;
  gap: 0.25rem;
}
body.theme-light-print .kr-checkout-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}
body.theme-light-print .kr-price-note {
  margin: 0;
  font-size: 0.88rem;
  color: #57534e;
  max-width: 28rem;
  line-height: 1.4;
}
body.theme-light-print .kr-price-note strong { color: #c45f1a; }
body.theme-light-print .kr-how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
body.theme-light-print .kr-how-card {
  border-radius: 18px;
  padding: 1.05rem 1.1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 247, 0.48) 45%, rgba(255, 255, 255, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}
body.theme-light-print .kr-how-card span {
  display: block;
  font-weight: 800;
  color: #c45f1a;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}
body.theme-light-print .kr-how-card strong {
  display: block;
  color: #1c1917;
  margin-bottom: 0.3rem;
}
body.theme-light-print .kr-how-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #6f675f;
  line-height: 1.45;
}
@media (max-width: 900px) {
  body.theme-light-print .kr-layout,
  body.theme-light-print .kr-form-grid,
  body.theme-light-print .kr-how {
    grid-template-columns: 1fr;
  }
}
/* ===== end keyrings v129 ===== */

/* keyrings service grid */
body.theme-light-print .service-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}


/* start-doors + product photos + step-tip v130 */
body.theme-light-print .start-doors {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2.5rem 0 2.75rem;
  background-color: #f3ebe1 !important;
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-size: cover !important;
  background-position: center 30% !important;
  background-repeat: no-repeat !important;
  box-shadow:
    inset 0 18px 36px rgba(255, 252, 247, 0.28),
    inset 0 -14px 28px rgba(255, 252, 247, 0.2);
}
body.theme-light-print .start-doors::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 7px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 236, 214, 0.65),
    inset 0 1px 0 rgba(255, 248, 240, 0.55);
}
body.theme-light-print .start-doors > .wrap {
  position: relative;
  z-index: 1;
}
body.theme-light-print .start-doors-head {
  max-width: 36rem;
  margin-bottom: 1.25rem;
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 252, 247, 0.48) 45%, rgba(255, 255, 255, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 10px 28px rgba(60, 40, 20, 0.06);
}
body.theme-light-print .start-doors-head h2 {
  margin: 0.2rem 0 0.35rem;
  color: #1c1917 !important;
  text-transform: none !important;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}
body.theme-light-print .start-doors-head .section-sub {
  margin: 0;
  color: #57534e;
}
body.theme-light-print .start-doors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 0.9rem;
}
body.theme-light-print .start-door {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 252, 247, 0.55) 100%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(60, 40, 20, 0.08);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
body.theme-light-print .start-door:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 107, 31, 0.4);
  box-shadow: 0 18px 44px rgba(60, 40, 20, 0.12);
}
body.theme-light-print .start-door-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8dfd2;
}
body.theme-light-print .start-door-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
body.theme-light-print .start-door:hover .start-door-media img {
  transform: scale(1.04);
}
body.theme-light-print .start-door-body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.35rem;
}
body.theme-light-print .start-door-kicker {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c45f1a;
}
body.theme-light-print .start-door-body h3 {
  margin: 0;
  font-size: 1.12rem;
  color: #1c1917 !important;
  line-height: 1.25;
}
body.theme-light-print .start-door-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #6f675f;
  line-height: 1.45;
}
body.theme-light-print .start-door-cta {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 750;
  color: #c45f1a;
}
body.theme-light-print .start-doors-foot {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  color: #57534e;
}
body.theme-light-print .start-doors-foot a {
  color: #c45f1a;
  font-weight: 650;
  text-decoration: none;
}
body.theme-light-print .start-doors-foot a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  body.theme-light-print .start-doors-grid {
    grid-template-columns: 1fr;
  }
}

/* Product page photo strip */
body.theme-light-print .product-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}
body.theme-light-print .product-photo-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 252, 247, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 28px rgba(60, 40, 20, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.theme-light-print .product-photo-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
body.theme-light-print .product-photo-item figcaption {
  padding: 0.45rem 0.65rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #78716c;
}
@media (max-width: 800px) {
  body.theme-light-print .product-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Wizard step tip */
body.theme-light-print .step-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.65rem 0 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  background: rgba(229, 107, 31, 0.08);
  border: 1px solid rgba(229, 107, 31, 0.18);
  color: #57534e;
  font-size: 0.88rem;
  line-height: 1.4;
}
body.theme-light-print .step-tip span {
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c45f1a;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(229, 107, 31, 0.12);
}
/* ===== end v130 ===== */


/* library title + pill inline */
body.theme-light-print #library .lib-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.45rem;
}
body.theme-light-print #library .lib-title-row h2 {
  margin: 0 !important;
  line-height: 1.15;
}
body.theme-light-print #library .lib-eyebrow-inline {
  margin: 0 !important;
  position: relative;
  top: 0;
}
@media (max-width: 520px) {
  body.theme-light-print #library .lib-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ===== model library page gallery v134 ===== */
body.theme-light-print .lib-page .subpage-band {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  background-color: #f3ebe1 !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  box-shadow:
    inset 0 18px 36px rgba(255, 252, 247, 0.28),
    inset 0 -14px 28px rgba(255, 252, 247, 0.2) !important;
  padding: 2.25rem 0 2.5rem !important;
}
body.theme-light-print .lib-page .subpage-band-a {
  background-image: var(--section-wash), var(--section-photo-a) !important;
  background-position: center 25% !important;
}
body.theme-light-print .lib-page .subpage-band-b {
  background-image: var(--section-wash-soft), var(--section-photo-b) !important;
  background-position: center 40% !important;
}
body.theme-light-print .lib-page .subpage-band::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0; right: 0; top: 0;
  height: 7px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 180, 0.35) 0%,
    rgba(245, 176, 120, 0.85) 18%,
    rgba(229, 107, 31, 0.95) 50%,
    rgba(245, 176, 120, 0.85) 82%,
    rgba(255, 214, 180, 0.35) 100%
  );
}
body.theme-light-print .lib-page .subpage-band-a::before {
  display: none !important;
  content: none !important;
}
body.theme-light-print .lib-page .subpage-band > .wrap {
  position: relative;
  z-index: 1;
}
body.theme-light-print .lib-page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: #1c1917 !important;
  text-transform: none !important;
  letter-spacing: -0.03em;
}
body.theme-light-print .lib-shell-gallery {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 252, 247, 0.55) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 22px !important;
  padding: 1.25rem 1.25rem 1.4rem !important;
  box-shadow: 0 18px 50px rgba(60, 40, 20, 0.1) !important;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
body.theme-light-print .lib-grid-gallery,
body.theme-light-print .lib-page #lib-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 1rem !important;
  margin-top: 0.5rem;
}
body.theme-light-print .lib-page .lib-card {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(232, 220, 203, 0.95) !important;
  box-shadow: 0 8px 24px rgba(60, 40, 20, 0.06) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
  cursor: default;
}
body.theme-light-print .lib-page .lib-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(229, 107, 31, 0.4) !important;
  box-shadow: 0 18px 40px rgba(60, 40, 20, 0.12) !important;
}
body.theme-light-print .lib-page .lib-cover-wrap {
  position: relative;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden;
  background: #f3ebe0;
}
body.theme-light-print .lib-page .lib-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.35s ease;
}
body.theme-light-print .lib-page .lib-card:hover .lib-cover {
  transform: scale(1.05);
}
body.theme-light-print .lib-page .lib-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(60, 40, 20, 0.1);
}
body.theme-light-print .lib-page .lib-zoom-hint {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: rgba(28, 25, 23, 0.72);
  opacity: 0;
  transform: translateY(4px);
  transition: 0.15s ease;
}
body.theme-light-print .lib-page .lib-card:hover .lib-zoom-hint {
  opacity: 1;
  transform: none;
}
body.theme-light-print .lib-page .lib-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.35rem !important;
  padding: 0.9rem 0.95rem 1rem !important;
  flex: 1 !important;
}
body.theme-light-print .lib-page .lib-title {
  margin: 0 !important;
  font-size: 0.98rem !important;
  font-weight: 750 !important;
  color: #1c1917 !important;
  line-height: 1.3 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.theme-light-print .lib-page .lib-meta-line {
  font-size: 0.8rem !important;
  color: #8a8178 !important;
}
body.theme-light-print .lib-page .lib-actions {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 0.45rem !important;
  margin-top: auto !important;
  padding-top: 0.55rem !important;
}
body.theme-light-print .lib-page .lib-pick,
body.theme-light-print .lib-lightbox-print {
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 800 !important;
  font-size: 0.78rem !important;
  padding: 0.55rem 0.75rem !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 16px rgba(229, 107, 31, 0.22) !important;
}
body.theme-light-print .lib-page .lib-pick:hover {
  transform: translateY(-1px);
}
body.theme-light-print .lib-page .lib-open {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 0.55rem 0.7rem !important;
  border-radius: 10px !important;
}
body.theme-light-print .lib-page .lib-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
body.theme-light-print .lib-page .lib-search-row input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
  border-radius: 12px !important;
  background: #fff !important;
  border: 1.5px solid rgba(28, 25, 23, 0.1) !important;
  padding: 0.7rem 0.9rem !important;
}
@media (max-width: 640px) {
  body.theme-light-print .lib-page #lib-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.7rem !important;
  }
  body.theme-light-print .lib-page .lib-actions {
    grid-template-columns: 1fr !important;
  }
}
/* ===== end library gallery v134 ===== */


/* home library teaser */
body.theme-light-print .lib-teaser-section {
  padding: 2.25rem 0;
}
body.theme-light-print .lib-teaser-card {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 252, 247, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(60, 40, 20, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
body.theme-light-print .lib-teaser-copy h2 {
  margin: 0;
  color: #1c1917 !important;
  text-transform: none !important;
}
body.theme-light-print .lib-teaser-copy .section-sub {
  margin: 0.55rem 0 1rem;
  color: #57534e;
}
body.theme-light-print .lib-teaser-visual {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #f3ebe0;
}
body.theme-light-print .lib-teaser-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 800px) {
  body.theme-light-print .lib-teaser-card {
    grid-template-columns: 1fr;
  }
}


/* home model library mini search + 4 options */
body.theme-light-print .lib-home-card {
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 252, 247, 0.55) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(60, 40, 20, 0.08);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
body.theme-light-print .lib-home-card .lib-title-row {
  margin-bottom: 0.35rem;
}
body.theme-light-print .lib-home-card h2 {
  margin: 0;
  color: #1c1917 !important;
  text-transform: none !important;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}
body.theme-light-print .lib-home-sub {
  margin: 0 0 1rem;
  color: #57534e;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 40rem;
}
body.theme-light-print .lib-home-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
body.theme-light-print .lib-home-search input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
  border-radius: 12px !important;
  background: #fff !important;
  border: 1.5px solid rgba(28, 25, 23, 0.1) !important;
  color: #1c1917 !important;
  padding: 0.78rem 0.95rem !important;
  font: inherit;
}
body.theme-light-print .lib-home-search input[type="search"]:focus {
  border-color: #e56b1f !important;
  box-shadow: 0 0 0 3px rgba(229, 107, 31, 0.14) !important;
  outline: none;
}
body.theme-light-print .lib-home-search .btn {
  flex: 0 0 auto;
  padding: 0.78rem 1.2rem;
}
body.theme-light-print .lib-home-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
body.theme-light-print .lib-home-opt {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #eee4d6;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(60, 40, 20, 0.04);
}
body.theme-light-print .lib-home-opt:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 107, 31, 0.45);
  box-shadow:
    0 12px 28px rgba(60, 40, 20, 0.1),
    0 0 0 3px rgba(229, 107, 31, 0.1);
}
body.theme-light-print .lib-home-opt-ico {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}
body.theme-light-print .lib-home-opt strong {
  font-size: 0.95rem;
  color: #1c1917;
  font-weight: 750;
}
body.theme-light-print .lib-home-opt em {
  font-style: normal;
  font-size: 0.8rem;
  color: #8a8178;
}
body.theme-light-print .lib-home-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  align-items: baseline;
  margin: 1rem 0 0;
  font-size: 0.86rem;
  color: #8a8178;
  line-height: 1.4;
}
body.theme-light-print .lib-home-foot a {
  font-weight: 750;
  color: #c45f1a;
  text-decoration: none;
}
body.theme-light-print .lib-home-foot a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  body.theme-light-print .lib-home-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  body.theme-light-print .lib-home-options {
    grid-template-columns: 1fr;
  }
}


/* nav dark grey final */
body.theme-light-print .site-header .nav-links a:not(.nav-mobile-cta):not(.is-active) {
  color: #3f3a36 !important;
}
body.theme-light-print .site-header .nav-links a:not(.nav-mobile-cta):hover {
  color: #1c1917 !important;
}
body.theme-light-print .site-header .nav-links a.is-active {
  color: #c45f1a !important;
}


/* nav words 10% bigger */
body.theme-light-print .site-header .nav-links a:not(.nav-mobile-cta) {
  font-size: 0.79rem !important;
}
@media (max-width: 960px) {
  body.theme-light-print .site-header .nav-links a:not(.nav-mobile-cta) {
    font-size: 0.9rem !important;
  }
}


/* library 3-way switcher (Community / Ready / My STL) + gallery */
body.theme-light-print .lib-tabs-wrap {
  padding: 0.35rem 0 0.55rem;
}
body.theme-light-print .lib-tabs-sticky {
  position: sticky;
  top: 4.1rem;
  z-index: 45;
  background: linear-gradient(180deg, rgba(246, 239, 230, 0.97) 0%, rgba(246, 239, 230, 0.92) 70%, rgba(246, 239, 230, 0.75) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 220, 203, 0.85);
  padding-top: 0.55rem;
  padding-bottom: 0.65rem;
  margin-bottom: 0.15rem;
}
body.theme-light-print .lib-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.4rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 220, 203, 0.95);
  box-shadow: 0 10px 28px rgba(60, 40, 20, 0.07);
  margin-bottom: 0.55rem;
  max-width: 52rem;
}
body.theme-light-print .lib-switch-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #57534e;
  font: inherit;
  text-align: left;
  padding: 0.65rem 0.8rem;
  border-radius: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
  min-width: 0;
}
body.theme-light-print .lib-switch-btn:hover {
  color: #1c1917;
  background: rgba(255, 255, 255, 0.95);
}
body.theme-light-print .lib-switch-btn.is-active {
  background: #e56b1f;
  color: #fff;
  box-shadow: 0 8px 18px rgba(229, 107, 31, 0.28);
}
body.theme-light-print .lib-switch-label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
body.theme-light-print .lib-switch-sub {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.78;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-light-print .lib-switch-btn.is-active .lib-switch-sub {
  opacity: 0.92;
}
/* legacy pill tabs (if any remain) */
body.theme-light-print .lib-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(232, 220, 203, 0.95);
  box-shadow: 0 8px 22px rgba(60, 40, 20, 0.06);
  margin-bottom: 0.65rem;
}
body.theme-light-print .lib-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #57534e;
  font: inherit;
  font-weight: 750;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
body.theme-light-print .lib-tab:hover {
  color: #1c1917;
  background: rgba(255, 255, 255, 0.9);
}
body.theme-light-print .lib-tab.is-active {
  background: #e56b1f;
  color: #fff;
  box-shadow: 0 6px 16px rgba(229, 107, 31, 0.25);
}
body.theme-light-print .lib-tab-note {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  color: #6f675f;
  max-width: 48rem;
  line-height: 1.45;
}
body.theme-light-print #lib-panel-ready .shop-toolbar {
  margin-top: 0.35rem;
  margin-bottom: 0.55rem;
}
body.theme-light-print #lib-panel-ready .shop-grid {
  margin-top: 0.35rem;
}
@media (max-width: 720px) {
  body.theme-light-print .lib-tabs-sticky {
    top: 3.55rem;
  }
  body.theme-light-print .lib-switch {
    grid-template-columns: 1fr;
    border-radius: 1rem;
    max-width: none;
  }
  body.theme-light-print .lib-switch-btn {
    text-align: left;
    padding: 0.7rem 0.85rem;
  }
  body.theme-light-print .lib-switch-sub {
    white-space: normal;
  }
}
@media (min-width: 721px) and (max-width: 900px) {
  body.theme-light-print .lib-switch-label {
    font-size: 0.84rem;
  }
  body.theme-light-print .lib-switch-sub {
    font-size: 0.68rem;
  }
}
body.theme-light-print .studio-stl-head {
  margin-bottom: 0.85rem;
}
body.theme-light-print .studio-stl-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: #1c1917 !important;
  text-transform: none !important;
}
body.theme-light-print .studio-stl-head p {
  margin: 0;
  color: #57534e;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 44rem;
}
body.theme-light-print .studio-stl-file {
  display: block;
  font-size: 0.75rem;
  font-weight: 650;
  color: #a16207;
  font-family: ui-monospace, monospace;
  margin-top: 0.15rem;
}
body.theme-light-print .studio-stl-card .lib-badge {
  background: rgba(229, 107, 31, 0.12) !important;
  color: #9a3412 !important;
  border-color: rgba(229, 107, 31, 0.25) !important;
}

body.theme-light-print .lib-home-foot-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}
body.theme-light-print .lib-home-foot-switch a {
  font-weight: 750;
}
body.theme-light-print .lib-home-sep {
  color: #a8a29e;
}


/* ===== Model library vault gallery (3D Vault–style) ===== */
body.vault-page .shell {
  max-width: none;
}
body.vault-page .bg-fx {
  opacity: 0.55;
}
body.theme-light-print.vault-page {
  background: #f7f1e8;
}
body.theme-light-print .vault-app {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 5.5rem);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 2.5rem;
  align-items: start;
}
body.theme-light-print .vault-sidebar {
  position: sticky;
  top: 4.25rem;
  align-self: start;
  max-height: calc(100vh - 4.5rem);
  overflow: auto;
  padding: 1.1rem 0.95rem 1.25rem;
  border-right: 1px solid rgba(232, 220, 203, 0.95);
  background: rgba(255, 252, 247, 0.92);
}
body.theme-light-print .vault-side-brand {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.95rem;
  padding: 0.15rem 0.2rem;
}
body.theme-light-print .vault-side-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, #f0a35a, #e56b1f);
  box-shadow: 0 6px 14px rgba(229, 107, 31, 0.28);
  flex: 0 0 auto;
}
body.theme-light-print .vault-side-brand strong {
  display: block;
  font-size: 0.95rem;
  color: #1c1917;
  font-weight: 800;
  line-height: 1.15;
}
body.theme-light-print .vault-side-brand span {
  display: block;
  font-size: 0.72rem;
  color: #78716c;
  margin-top: 0.1rem;
}
body.theme-light-print .vault-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  background: #f6e2cf;
  color: #9a3412 !important;
  font-weight: 750;
  font-size: 0.88rem;
  text-decoration: none !important;
  border: 1px solid rgba(229, 107, 31, 0.18);
  transition: background 0.15s ease, transform 0.12s ease;
}
body.theme-light-print .vault-upload:hover {
  background: #f3d6bb;
  transform: translateY(-1px);
}
body.theme-light-print .vault-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.15rem;
}
body.theme-light-print .vault-nav-item {
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  text-align: left;
  padding: 0.58rem 0.7rem;
  border-radius: 0.75rem;
  color: #57534e;
  font: inherit;
  font-weight: 650;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
body.theme-light-print .vault-nav-item:hover {
  background: rgba(255, 255, 255, 0.85);
  color: #1c1917;
}
body.theme-light-print .vault-nav-item.is-active {
  background: #f6e2cf;
  color: #9a3412;
  font-weight: 800;
}
body.theme-light-print .vault-nav-ico {
  width: 1.25rem;
  text-align: center;
  opacity: 0.85;
  font-size: 0.85rem;
}
body.theme-light-print .vault-cats-label,
body.theme-light-print .vault-storage-label {
  margin: 0 0 0.45rem;
  padding: 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8a29e;
}
body.theme-light-print .vault-cats {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
body.theme-light-print .vault-cat,
body.theme-light-print #shop-filters .vault-cat,
body.theme-light-print #shop-filters .shop-chip {
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  color: #57534e;
  font: inherit;
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
}
body.theme-light-print .vault-cat:hover,
body.theme-light-print #shop-filters .shop-chip:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1c1917;
}
body.theme-light-print .vault-cat.is-active,
body.theme-light-print #shop-filters .shop-chip.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: #1c1917;
  font-weight: 750;
  box-shadow: inset 0 0 0 1px rgba(232, 220, 203, 0.95);
}
body.theme-light-print .vault-side-note {
  margin: 0 0 0.75rem;
  padding: 0 0.35rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #78716c;
}
body.theme-light-print .vault-side-foot {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(232, 220, 203, 0.9);
}
body.theme-light-print .vault-side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(214, 200, 180, 0.95);
  background: #fff;
  color: #44403c !important;
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none !important;
}
body.theme-light-print .vault-side-btn:hover {
  border-color: #e56b1f;
  color: #9a3412 !important;
}

/* main gallery */
body.theme-light-print .vault-main {
  padding: 1.15rem 1.35rem 2rem;
  min-width: 0;
}
body.theme-light-print .vault-main-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0.85rem;
}
body.theme-light-print .vault-titles h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: #1c1917 !important;
  letter-spacing: -0.02em;
  text-transform: none !important;
}
body.theme-light-print .vault-titles p {
  margin: 0.25rem 0 0;
  color: #78716c;
  font-size: 0.92rem;
}
body.theme-light-print .vault-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
body.theme-light-print .vault-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: min(100%, 260px);
}
body.theme-light-print .vault-search-ico {
  position: absolute;
  left: 0.75rem;
  color: #a8a29e;
  font-size: 0.95rem;
  pointer-events: none;
}
body.theme-light-print .vault-search input {
  width: 100%;
  min-width: 220px;
  padding: 0.62rem 0.85rem 0.62rem 2.1rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(232, 220, 203, 0.95) !important;
  background: #fff !important;
  font: inherit !important;
  font-size: 0.9rem !important;
  color: #1c1917 !important;
  box-shadow: 0 4px 14px rgba(60, 40, 20, 0.04);
}
body.theme-light-print .vault-search-btn {
  border-radius: 999px !important;
  padding: 0.58rem 1rem !important;
  font-size: 0.85rem !important;
}
body.theme-light-print .vault-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(232, 220, 203, 0.85);
}
body.theme-light-print .vault-all-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.7rem;
}
body.theme-light-print .vault-all-row strong {
  font-size: 1.05rem;
  color: #1c1917;
  font-weight: 800;
}
body.theme-light-print .vault-count,
body.theme-light-print .shop-status.vault-count {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 220, 203, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  color: #78716c;
}
body.theme-light-print .vault-tab-note {
  margin: 0;
  font-size: 0.86rem;
  color: #78716c;
  max-width: 48rem;
}

/* cards grid */
body.theme-light-print .vault-grid,
body.theme-light-print #library .vault-grid.lib-grid,
body.theme-light-print #library .shop-grid.vault-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)) !important;
  gap: 1rem !important;
}
body.theme-light-print .vault-card,
body.theme-light-print #library .lib-card.vault-card,
body.theme-light-print #library .shop-card.vault-card {
  display: flex;
  flex-direction: column;
  background: #fffefb !important;
  border: 1px solid rgba(232, 220, 203, 0.95) !important;
  border-radius: 1rem !important;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(60, 40, 20, 0.05) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
body.theme-light-print .vault-card:hover,
body.theme-light-print #library .lib-card.vault-card:hover,
body.theme-light-print #library .shop-card.vault-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(60, 40, 20, 0.1) !important;
}
body.theme-light-print .vault-card-media,
body.theme-light-print #library .vault-card .lib-cover-wrap,
body.theme-light-print #library .vault-card .shop-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f3ebe0;
  overflow: hidden;
}
body.theme-light-print .vault-card-media img,
body.theme-light-print #library .vault-card .lib-cover,
body.theme-light-print #library .vault-card .shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.theme-light-print .vault-type {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.92);
  color: #44403c;
  border: 1px solid rgba(232, 220, 203, 0.9);
}
body.theme-light-print .vault-type-free { color: #166534; background: #ecfdf3; border-color: #bbf7d0; }
body.theme-light-print .vault-type-stl { color: #6b21a8; background: #f3e8ff; border-color: #e9d5ff; }
body.theme-light-print .vault-type-ready { color: #9a3412; background: #ffedd5; border-color: #fed7aa; }
body.theme-light-print .vault-card-body,
body.theme-light-print #library .vault-card .lib-body,
body.theme-light-print #library .vault-card .shop-card-body {
  padding: 0.75rem 0.85rem 0.85rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
body.theme-light-print .vault-card-title,
body.theme-light-print #library .vault-card .lib-title,
body.theme-light-print #library .vault-card h3 {
  margin: 0 !important;
  font-size: 0.9rem !important;
  font-weight: 750 !important;
  color: #1c1917 !important;
  line-height: 1.3 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: none !important;
}
body.theme-light-print .vault-card-meta {
  margin: 0;
  font-size: 0.75rem;
  color: #78716c;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.theme-light-print .vault-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.45rem;
}
body.theme-light-print .vault-tag {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #f5efe6;
  color: #57534e;
  font-size: 0.7rem;
  font-weight: 700;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-light-print .vault-price {
  font-size: 0.78rem;
  font-weight: 800;
  color: #9a3412;
}
body.theme-light-print .vault-card .lib-pick {
  border-radius: 999px !important;
  padding: 0.28rem 0.7rem !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
}
body.theme-light-print .vault-source-link {
  font-size: 0.72rem;
  color: #a8a29e !important;
  text-decoration: none !important;
  margin-top: 0.15rem;
}
body.theme-light-print .vault-source-link:hover {
  color: #e56b1f !important;
}
/* hide legacy chrome inside vault cards */
body.theme-light-print .vault-card .lib-badge,
body.theme-light-print .vault-card .lib-zoom-hint,
body.theme-light-print .vault-card .shop-card-cta,
body.theme-light-print .vault-card .shop-card-top {
  display: none !important;
}

body.theme-light-print .vault-side-toggle {
  display: none;
}

@media (max-width: 960px) {
  body.theme-light-print .vault-app {
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
  }
  body.theme-light-print .vault-side-toggle {
    display: inline-flex;
    align-items: center;
    margin: 0.5rem 1rem 0;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(232, 220, 203, 0.95);
    background: #fff;
    font: inherit;
    font-weight: 750;
    font-size: 0.85rem;
    color: #44403c;
    cursor: pointer;
    width: fit-content;
  }
  body.theme-light-print .vault-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 90;
    width: min(300px, 88vw);
    max-height: none;
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    box-shadow: 12px 0 40px rgba(40, 20, 10, 0.12);
  }
  body.vault-side-open .vault-sidebar {
    transform: translateX(0);
  }
  body.vault-side-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.28);
    z-index: 85;
  }
  body.theme-light-print .vault-main {
    padding: 0.85rem 1rem 2rem;
  }
  body.theme-light-print .vault-grid,
  body.theme-light-print #library .vault-grid.lib-grid,
  body.theme-light-print #library .shop-grid.vault-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
  }
}
@media (max-width: 420px) {
  body.theme-light-print .vault-grid,
  body.theme-light-print #library .vault-grid.lib-grid,
  body.theme-light-print #library .shop-grid.vault-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===== Model library top-nav shop CTA (TEMU-style standout) ===== */
body.theme-light-print .site-header .nav-links a.nav-library-shop,
body.theme-light-print .site-header .nav-links a.nav-library-shop:not(.nav-mobile-cta) {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  padding: 0.42rem 0.7rem 0.42rem 0.58rem !important;
  border-radius: 999px !important;
  background: linear-gradient(145deg, #ff9a4a 0%, #e56b1f 48%, #c25712 100%) !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 6px 16px rgba(229, 107, 31, 0.38) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  transform: translateY(0);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease !important;
  position: relative;
  white-space: nowrap;
}
body.theme-light-print .site-header .nav-links a.nav-library-shop:hover,
body.theme-light-print .site-header .nav-links a.nav-library-shop:focus-visible {
  color: #fff !important;
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32) inset,
    0 10px 22px rgba(229, 107, 31, 0.45) !important;
}
body.theme-light-print .site-header .nav-links a.nav-library-shop.is-active {
  color: #fff !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 0 0 2px rgba(255, 255, 255, 0.55),
    0 8px 18px rgba(229, 107, 31, 0.4) !important;
}
body.theme-light-print .site-header .nav-links a.nav-library-shop .nav-shop-ico {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  opacity: 0.95;
}
body.theme-light-print .site-header .nav-links a.nav-library-shop .nav-shop-label {
  font-weight: 800;
  line-height: 1;
}
body.theme-light-print .site-header .nav-links a.nav-library-shop .nav-shop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.1rem;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #c25712 !important;
  font-size: 0.62rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(120, 50, 10, 0.12);
}
/* soft pulse so it draws the eye without being annoying */
@keyframes nav-shop-pulse {
  0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 6px 16px rgba(229,107,31,0.38); }
  50% { box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 8px 22px rgba(229,107,31,0.55), 0 0 0 3px rgba(229,107,31,0.18); }
}
@media (prefers-reduced-motion: no-preference) {
  body.theme-light-print .site-header .nav-links a.nav-library-shop:not(:hover) {
    animation: nav-shop-pulse 2.8s ease-in-out infinite;
  }
}
@media (max-width: 960px) {
  body.theme-light-print .site-header .nav-links a.nav-library-shop,
  body.theme-light-print .site-header .nav-links a.nav-library-shop:not(.nav-mobile-cta) {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem !important;
    padding: 0.7rem 0.9rem !important;
    margin: 0.15rem 0;
  }
}

.addr-suggest { position: relative; }
.addr-suggest-wrap { position: relative; }
.addr-suggest-hint {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-2, #a1a1aa);
}
.addr-suggest-list {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  background: #161616;
  border: 1px solid rgba(255,140,0,0.35);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  max-height: 240px;
  overflow: auto;
}
.addr-suggest-list li { margin: 0; }
.addr-suggest-list button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #f4f4f5;
  font: inherit;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}
.addr-suggest-list button:hover,
.addr-suggest-list button.is-on {
  background: rgba(255,140,0,0.16);
}

/* Coming soon labels on library nav (PRINTED / NYXLABS 3D models) */
body.vault-body .vnav-copy {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  min-width: 0;
}
body.vault-body .vnav-name {
  min-width: 0;
}
body.vault-body .vnav-soon {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #c45a12;
  line-height: 1;
  white-space: nowrap;
}
body.vault-body .vnav-item.is-soon,
body.vault-body .v-mobile-tab.is-soon {
  cursor: default;
  opacity: 0.78;
}
body.vault-body .vnav-item.is-soon:hover {
  background: transparent;
}
body.vault-body .v-mobile-tab.is-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1.05;
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
}
body.vault-body .v-mobile-tab.is-soon .vnav-soon {
  font-size: 0.48rem;
  letter-spacing: 0.04em;
}
