@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,650;9..144,760&family=Manrope:wght@500;650;750;850;900&display=swap");

:root {
  --ink: #141514;
  --muted: #626861;
  --paper: #fbfaf6;
  --soft: #f0eee6;
  --line: #ded9ce;
  --forest: #4a2f1e;
  --forest-2: #2b1a10;
  --clay: #745840;
  --copper: #9b6a43;
  --sage: #c8ae88;
  --smoke: #526f78;
  --cream: #fffdf7;
  --gold: #b9a879;
  --glovo-yellow: #ffd84d;
  --play-green: #8b5e3c;
  --cartoon-red: #ff6b45;
  --cartoon-blue: #5cc8ff;
  --cartoon-ink: #101614;
  --neon-blue: #5cc8ff;
  --neon-mint: #e2c9a6;
  --neon-gold: #ffe27a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 21, 20, 0.14);
  --soft-shadow: 0 18px 48px rgba(20, 21, 20, 0.1);
  --lift-shadow: 0 28px 72px rgba(20, 21, 20, 0.18);
  --radius: 8px;
  --page-max: 1180px;
  --gutter: clamp(18px, 5vw, 70px);
  --control-h: 48px;
  --control-h-lg: 52px;
  --tap-target: 48px;
  --section-y: clamp(76px, 10vw, 128px);
  --section-y-tight: clamp(56px, 7vw, 92px);
  --measure: 66ch;
  color-scheme: light;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0%, var(--paper) 42%, #f5f2ea 100%);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--forest);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--glovo-yellow), var(--play-green), var(--cartoon-blue), var(--cartoon-red));
  box-shadow: 0 0 18px rgba(92, 200, 255, 0.28);
  transform-origin: left;
  transform: scaleX(var(--scroll-progress, 0));
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open::before {
  position: fixed;
  inset: 0;
  z-index: 39;
  content: "";
  background: rgba(8, 10, 9, 0.82);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(27, 96, 78, 0.8);
  outline-offset: 4px;
}

section[id],
footer[id] {
  scroll-margin-top: 128px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(222, 217, 206, 0.75);
  box-shadow: 0 14px 38px rgba(20, 21, 20, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(92, 200, 255, 0.26), rgba(255, 216, 77, 0.2), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.site-header.is-scrolled .topbar {
  display: none;
}

.site-header.is-scrolled .nav-shell {
  min-height: 62px;
}

.site-header.is-scrolled .brand img {
  width: 74px;
}

.site-header.is-scrolled .brand-meta {
  opacity: 0;
  transform: translateX(-5px);
  pointer-events: none;
  width: 0;
  padding-left: 0;
  border-left: 0;
}

.site-header.is-scrolled .brand {
  padding-right: 12px;
  min-height: 50px;
  height: 50px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  padding: 6px var(--gutter);
  color: var(--white);
  background: linear-gradient(90deg, rgba(43, 26, 16, 0.98), rgba(74, 47, 30, 0.96));
  font-size: 0.84rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-right span {
  padding: 3px 9px;
  color: #eadac3;
  border: 1px solid rgba(224, 195, 154, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8b979;
  box-shadow: 0 0 0 5px rgba(216, 185, 121, 0.16);
}

.topbar a {
  font-weight: 750;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  min-height: 80px;
  padding: 0 var(--gutter);
}

.nav-shell > * {
  position: relative;
  z-index: 1;
}

.nav-shell::after {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(74, 47, 30, 0.22), rgba(216, 185, 121, 0.36), transparent);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: var(--control-h);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.language-toggle button {
  min-width: var(--tap-target);
  padding: 0 10px;
  color: var(--forest);
  border: 0;
  background: transparent;
  font-weight: 900;
}

.language-toggle button.is-active {
  color: var(--white);
  background: var(--forest);
}

.theme-toggle {
  position: relative;
  width: var(--control-h);
  min-height: var(--control-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  color: var(--forest);
  border: 1px solid rgba(74, 47, 30, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 239, 0.82));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 12px 26px rgba(74, 47, 30, 0.08);
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(155, 106, 67, 0.48);
  box-shadow: 0 0 0 1px rgba(155, 106, 67, 0.2), 0 18px 34px rgba(74, 47, 30, 0.12);
  transform: translateY(-1px);
}

.theme-toggle [data-theme-icon] {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 5px -3px 0 currentColor;
}

.theme-toggle [data-theme-icon]::after {
  display: none;
  content: none;
}

.theme-toggle strong {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 116px;
  height: auto;
  transition: width 180ms ease;
}

.brand {
  position: relative;
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 8px 14px 8px 12px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(43, 26, 16, 0.98), rgba(74, 47, 30, 0.94));
  border: 1px solid rgba(224, 195, 154, 0.16);
  box-shadow: 0 12px 26px rgba(74, 47, 30, 0.14);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.brand::before {
  position: absolute;
  inset: -1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(224, 195, 154, 0.42), transparent 34%, rgba(216, 185, 121, 0.22));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.brand::after {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(135deg, rgba(43, 26, 16, 0.98), rgba(74, 47, 30, 0.94));
  pointer-events: none;
}

.brand:hover,
.brand:focus-visible {
  border-color: rgba(224, 195, 154, 0.44);
  box-shadow: 0 0 0 1px rgba(155, 106, 67, 0.22), 0 18px 34px rgba(74, 47, 30, 0.18);
  transform: translateY(-1px);
}

.brand:hover::before,
.brand:focus-visible::before {
  opacity: 1;
}

.brand-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  padding-left: 12px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-meta strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-meta small {
  color: #eadac3;
  font-size: 0.78rem;
  font-weight: 850;
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  color: #2e332f;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-menu a {
  position: relative;
  display: inline-flex;
  min-height: var(--tap-target);
  align-items: center;
  padding: 16px 0;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-menu a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-menu a:hover::after {
  transform: scaleX(1);
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--forest);
  text-shadow: 0 0 18px rgba(92, 200, 255, 0.16);
}

.site-menu a.is-current {
  color: var(--forest);
}

.site-menu a.is-current::after {
  transform: scaleX(1);
}

@media (min-width: 1041px) and (max-width: 1480px) {
  .nav-shell {
    gap: 14px;
  }

  .brand {
    padding-right: 12px;
  }

  .brand img {
    width: 106px;
  }

  .brand-meta {
    display: none;
  }

  .site-menu {
    gap: clamp(12px, 1.1vw, 18px);
    font-size: 0.86rem;
  }

  .site-menu a {
    padding-inline: 3px;
  }

  .nav-tools {
    gap: 8px;
  }

  .nav-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 760px) {
  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .feature-photo {
    border: 0 !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .feature-photo figcaption {
    margin-top: 10px !important;
    padding: 0 !important;
    color: rgba(244, 249, 255, 0.88) !important;
    border: 0 !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.gallery-item, .gallery-photo-button, .atelier-photo, .skill-media, .service-card, .quality-proof-board, .material-stage) {
    border-color: rgba(217, 230, 247, 0.08) !important;
    box-shadow: 0 10px 24px rgba(2, 13, 31, 0.14) !important;
  }

  html:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .feature-photo.feature-photo {
    border: 0 !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  html:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.gallery-item.gallery-item, .gallery-photo-button.gallery-photo-button, .atelier-photo.atelier-photo, .skill-media.skill-media, .service-card.service-card, .quality-proof-board.quality-proof-board, .material-stage.material-stage) {
    border-color: rgba(217, 230, 247, 0.08) !important;
    box-shadow: 0 10px 24px rgba(2, 13, 31, 0.14) !important;
  }
}

.mobile-menu-actions {
  display: none;
}

.mobile-quick-bar {
  display: none;
}

.journey-pilot {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  z-index: 17;
  width: min(1120px, calc(100vw - 36px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(190px, 0.82fr) minmax(330px, 1.16fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 auto;
  padding: 12px;
  color: #f8fff9;
  border: 1px solid rgba(183, 255, 232, 0.2);
  border-radius: 999px 28px 999px 34px;
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.14), transparent 34%),
    rgba(5, 12, 10, 0.82);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.journey-pilot.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.assistant-open .journey-pilot,
.lightbox-open .journey-pilot,
.menu-open .journey-pilot {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(0.985);
}

.journey-pilot:hover,
.journey-pilot:focus-within {
  border-color: rgba(92, 200, 255, 0.44);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.18), 0 0 42px rgba(92, 200, 255, 0.12), 0 26px 78px rgba(0, 0, 0, 0.38);
}

.journey-pilot-meter {
  position: absolute;
  inset: 7px;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.journey-pilot-meter span {
  position: absolute;
  inset: auto auto 0 0;
  width: calc(var(--journey-progress, 0) * 100%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--glovo-yellow), var(--play-green), var(--cartoon-blue));
  box-shadow: 0 0 18px rgba(92, 200, 255, 0.45);
}

.journey-pilot > strong {
  position: relative;
  z-index: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-pilot-intel {
  position: relative;
  z-index: 1;
  min-height: 50px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  padding: 8px 13px;
  overflow: hidden;
  border: 1px solid rgba(183, 255, 232, 0.16);
  border-radius: 22px 12px 26px 14px;
  background:
    linear-gradient(135deg, rgba(183, 255, 232, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.journey-pilot-intel::after {
  position: absolute;
  inset: -35% auto auto -18%;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 200, 255, 0.22), transparent 64%);
  pointer-events: none;
}

.journey-pilot-intel span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: #e2c9a6;
  box-shadow: 0 4px 0 var(--cartoon-ink);
  font-size: 0.72rem;
  font-weight: 950;
}

.journey-pilot-intel strong,
.journey-pilot-intel small {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-pilot-intel strong {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

.journey-pilot-intel small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
}

.journey-pilot-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.journey-pilot-steps a {
  position: relative;
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(183, 255, 232, 0.14);
  border-radius: 18px 12px 22px 12px;
  background: rgba(255, 255, 255, 0.055);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.journey-pilot-steps a:hover,
.journey-pilot-steps a:focus-visible,
.journey-pilot-steps a.is-active {
  color: #ffffff;
  border-color: rgba(92, 200, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 24px rgba(92, 200, 255, 0.12);
  transform: translateY(-1px);
}

.journey-pilot-steps a.is-complete {
  color: #fff6c8;
  border-color: rgba(255, 216, 77, 0.36);
}

.journey-pilot-steps span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: rgba(255, 216, 77, 0.88);
  font-size: 0.68rem;
  font-weight: 950;
}

.journey-pilot-steps a.is-complete span::after {
  content: "";
  width: 8px;
  height: 13px;
  border: solid var(--cartoon-ink);
  border-width: 0 3px 3px 0;
  transform: rotate(42deg);
}

.journey-pilot-steps a.is-complete span {
  font-size: 0;
  background: #7bd88f;
}

.journey-pilot-steps small {
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-pilot-cta {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 22px 999px 28px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.86rem;
  font-weight: 950;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.journey-pilot-cta:hover,
.journey-pilot-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 0 32px rgba(255, 216, 77, 0.22);
}

@media (max-width: 980px) {
  .journey-pilot {
    display: none;
  }
}

@media (max-width: 1180px) {
  .journey-pilot {
    grid-template-columns: auto minmax(180px, 0.74fr) minmax(260px, 1fr) auto;
    width: min(1010px, calc(100vw - 36px));
  }

  .journey-pilot-steps small {
    max-width: 68px;
  }
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-h);
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), #0d322b);
}

.auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-h);
  padding: 0 15px;
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(224, 195, 154, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.auth-link::before {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 168, 121, 0.16);
}

.auth-link:hover,
.auth-link.is-current {
  border-color: rgba(23, 60, 51, 0.34);
  background: #ffffff;
  transform: translateY(-1px);
}

.nav-cta::after {
  margin-left: 10px;
  content: ">";
  color: #eadac3;
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--clay);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button.ghost {
  color: var(--forest);
  border-color: rgba(23, 60, 51, 0.25);
  background: var(--white);
}

.button.danger {
  color: #7d241d;
  border-color: rgba(125, 36, 29, 0.28);
  background: #fff1ee;
}

.menu-toggle {
  display: none;
  width: var(--tap-target);
  height: var(--tap-target);
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  min-height: min(820px, calc(100vh - 138px));
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: var(--cartoon-ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.06);
  opacity: 1;
  transition: opacity 520ms ease, transform 900ms ease;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 216, 77, 0.12), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(92, 200, 255, 0.11), transparent 28%),
    linear-gradient(90deg, rgba(5, 10, 9, 0.9) 0%, rgba(9, 17, 15, 0.62) 34%, rgba(9, 17, 15, 0.12) 78%, rgba(9, 17, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 10, 9, 0.78) 0%, transparent 58%);
}

.hero::before {
  position: absolute;
  inset: clamp(12px, 1.4vw, 24px);
  z-index: 2;
  content: "";
  border: 1px solid rgba(183, 255, 232, 0.18);
  border-radius: 26px 18px 34px 18px;
  background:
    linear-gradient(90deg, rgba(92, 200, 255, 0.18), transparent 22%, transparent 78%, rgba(255, 216, 77, 0.16)) border-box;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 0 70px rgba(92, 200, 255, 0.08);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 30%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(15, 45, 39, 0.78));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(34px, 6vw, 78px) clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 22px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.45rem, 4.4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 8vw, 8.3rem);
  line-height: 0.84;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

h2 {
  margin-bottom: 18px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

.hero-proofline span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(183, 255, 232, 0.24);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.36);
  box-shadow: inset 0 0 0 1px rgba(92, 200, 255, 0.05);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.hero-actions .button {
  min-height: var(--control-h-lg);
}

.hero-actions .button.primary {
  min-width: 190px;
  color: var(--cartoon-ink);
  border-color: #101614;
  border-width: 2px;
  border-radius: 999px 26px 999px 34px;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 #101614, 0 18px 34px rgba(0, 0, 0, 0.24), 0 0 42px rgba(255, 216, 77, 0.14);
}

.hero-actions .button.secondary {
  min-width: 148px;
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(183, 255, 232, 0.28);
  border-width: 2px;
  border-radius: 26px 999px 34px 999px;
  background: rgba(7, 17, 15, 0.28);
  box-shadow: 0 7px 0 rgba(183, 255, 232, 0.18), 0 0 34px rgba(92, 200, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-facts {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 22px 0 0;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  margin-bottom: 4px;
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.hero-service-stack {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(22px, 4vw, 42px);
  z-index: 4;
  display: grid;
  gap: 8px;
  width: min(292px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(183, 255, 232, 0.18);
  border-radius: 22px 14px 28px 16px;
  background: rgba(5, 12, 10, 0.58);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(92, 200, 255, 0.06);
  backdrop-filter: blur(16px);
}

.hero-service-stack span {
  color: #eadac3;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service-stack a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--control-h);
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(183, 255, 232, 0.14);
  border-radius: 18px 12px 22px 12px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-service-stack a::after {
  content: ">";
  color: var(--gold);
}

.hero-service-stack a:hover {
  border-color: rgba(92, 200, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 28px rgba(92, 200, 255, 0.12);
  transform: translateX(2px);
}

.build-sticker-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
  transition: opacity 520ms ease;
}

:root[data-hero3d-ready="true"] .build-sticker-layer {
  opacity: 0.22;
}

:root[data-hero3d-ready="true"] .build-sticker:not(.sticker-hat) {
  display: none;
}

.build-sticker {
  position: absolute;
  width: clamp(62px, 8vw, 112px);
  height: clamp(62px, 8vw, 112px);
  display: grid;
  place-items: center;
  border: 3px solid var(--cartoon-ink);
  background: var(--glovo-yellow);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 22px 42px rgba(0, 0, 0, 0.24);
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0) rotate(var(--float-rot, 0deg));
  transition: transform 120ms linear;
  will-change: transform;
}

.build-sticker svg {
  width: 72%;
  height: 72%;
  fill: none;
  stroke: var(--cartoon-ink);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: sticker-wiggle 2.8s ease-in-out infinite;
}

.build-sticker path:first-child {
  fill: rgba(255, 255, 255, 0.34);
}

.sticker-hat {
  top: 22%;
  right: 8%;
  border-radius: 48% 52% 38% 62% / 44% 30% 70% 56%;
  background: var(--glovo-yellow);
}

.sticker-roller {
  top: 54%;
  right: 31%;
  border-radius: 34% 66% 55% 45% / 58% 36% 64% 42%;
  background: var(--cartoon-blue);
}

.sticker-tape {
  top: 13%;
  left: 49%;
  border-radius: 64% 36% 42% 58% / 38% 56% 44% 62%;
  background: #fff4a8;
}

.sticker-drill {
  bottom: 12%;
  right: 5%;
  border-radius: 58% 42% 68% 32% / 40% 62% 38% 60%;
  background: var(--cartoon-red);
}

.sticker-tape,
.sticker-drill {
  display: none;
}

.site-build-swarm {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.32;
  transition: opacity 220ms ease;
}

:root[data-hero3d-ready="true"] .site-build-swarm {
  opacity: 0.18;
}

.assistant-open .site-build-swarm,
.lightbox-open .site-build-swarm,
.menu-open .site-build-swarm {
  opacity: 0.18;
}

.swarm-tool {
  position: absolute;
  display: block;
  border: 3px solid var(--cartoon-ink);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 18px 36px rgba(8, 13, 12, 0.18);
  opacity: 0.88;
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0) rotate(var(--float-rot, 0deg));
  transition: transform 120ms linear;
  will-change: transform;
}

.swarm-hook,
.swarm-roller,
.swarm-pencil {
  display: none;
}

.quote-page .site-build-swarm,
.quote-page .premium-cursor-light {
  display: none;
}

.swarm-tool::before,
.swarm-tool::after {
  position: absolute;
  content: "";
}

.swarm-cone {
  top: 32vh;
  left: clamp(12px, 2.8vw, 42px);
  width: 58px;
  height: 70px;
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(0deg, var(--cartoon-ink) 0 8px, transparent 8px),
    repeating-linear-gradient(0deg, var(--cartoon-red) 0 15px, #fff3c4 15px 24px, var(--cartoon-red) 24px 42px);
  clip-path: polygon(50% 0, 88% 82%, 100% 82%, 100% 100%, 0 100%, 0 82%, 12% 82%);
  animation: swarm-bob 4.4s ease-in-out infinite;
}

.swarm-hook {
  top: 18vh;
  right: clamp(16px, 4vw, 64px);
  width: 34px;
  height: 92px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.82;
  animation: swarm-swing 5.8s ease-in-out infinite;
}

.swarm-hook::before {
  top: 0;
  left: 13px;
  width: 7px;
  height: 58px;
  border: 2px solid var(--cartoon-ink);
  background: var(--glovo-yellow);
  box-shadow: 3px 3px 0 var(--cartoon-ink);
}

.swarm-hook::after {
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  border: 7px solid var(--cartoon-ink);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 32px 0;
  transform: rotate(20deg);
}

.swarm-tile {
  top: 64vh;
  right: clamp(18px, 5vw, 82px);
  width: 66px;
  height: 66px;
  border-radius: 14px 8px 18px 10px;
  background:
    linear-gradient(90deg, transparent 48%, var(--cartoon-ink) 48% 54%, transparent 54%),
    linear-gradient(0deg, transparent 48%, var(--cartoon-ink) 48% 54%, transparent 54%),
    #fff8df;
  animation: swarm-bob 5.2s ease-in-out infinite reverse;
}

.swarm-roller {
  top: 78vh;
  left: clamp(20px, 8vw, 120px);
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: var(--cartoon-blue);
  animation: swarm-roll 4.9s ease-in-out infinite;
}

.swarm-roller::after {
  top: 17px;
  left: 24px;
  width: 40px;
  height: 54px;
  border-right: 5px solid var(--cartoon-ink);
  border-bottom: 5px solid var(--cartoon-ink);
  transform: skewX(-16deg);
}

.swarm-pencil {
  top: 46vh;
  right: 19vw;
  width: 96px;
  height: 24px;
  border-radius: 999px 12px 12px 999px;
  background:
    linear-gradient(90deg, #f7e7c4 0 16px, var(--cartoon-red) 16px 78%, var(--glovo-yellow) 78% 100%);
  transform-origin: center;
  animation: swarm-swing 6.3s ease-in-out infinite reverse;
}

.swarm-pencil::after {
  right: -15px;
  top: 2px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid var(--cartoon-ink);
}

.swarm-spark {
  top: 84vh;
  right: 30vw;
  width: 54px;
  height: 54px;
  background: var(--play-green);
  clip-path: polygon(50% 0, 61% 34%, 96% 28%, 68% 51%, 82% 88%, 50% 66%, 18% 88%, 32% 51%, 4% 28%, 39% 34%);
  animation: swarm-pop 3.6s ease-in-out infinite;
}

@keyframes sticker-wiggle {
  0%,
  100% {
    transform: rotate(-4deg) scale(1);
  }

  50% {
    transform: rotate(5deg) scale(1.04);
  }
}

@keyframes swarm-bob {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -12px;
  }
}

@keyframes swarm-swing {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: 10px;
  }
}

@keyframes swarm-roll {
  0%,
  100% {
    margin-left: 0;
  }

  50% {
    margin-left: 16px;
  }
}

@keyframes swarm-pop {
  0%,
  100% {
    opacity: 0.72;
    scale: 1;
  }

  45% {
    opacity: 0.96;
    scale: 1.13;
  }
}

.intro-band {
  background: var(--forest);
}

.intro-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--page-max), calc(100% - 36px));
  margin: 0 auto;
}

.intro-inner a {
  display: grid;
  align-content: center;
  min-height: 140px;
  padding: 28px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.intro-inner a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.intro-inner a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.intro-inner a:focus-visible {
  position: relative;
  z-index: 1;
}

.intro-inner span {
  display: block;
  margin-bottom: 9px;
  color: #eadac3;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-inner strong {
  display: block;
  max-width: 280px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.renovation-compass-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 70px);
  color: var(--cartoon-ink);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.78), transparent 18%),
    radial-gradient(circle at 84% 88%, rgba(255, 107, 69, 0.26), transparent 26%),
    linear-gradient(135deg, #ffe15e, #fff5bc 46%, #d8f7df);
}

.renovation-compass-section::before,
.renovation-compass-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.renovation-compass-section::before {
  inset: 20px auto auto -56px;
  width: 170px;
  height: 170px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 47% 53% 42% 58% / 58% 40% 60% 42%;
  background: var(--play-green);
  box-shadow: 0 9px 0 var(--cartoon-ink);
  transform: rotate(-12deg);
}

.renovation-compass-section::after {
  right: -76px;
  bottom: 34px;
  width: 210px;
  height: 210px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 61% 39% 65% 35% / 39% 56% 44% 61%;
  background: var(--cartoon-blue);
  box-shadow: 0 9px 0 var(--cartoon-ink);
  transform: rotate(14deg);
}

.cartoon-build-marquee {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 1;
  display: flex;
  gap: 12px;
  width: max-content;
  color: var(--cartoon-ink);
  font-size: clamp(1.1rem, 3vw, 2.15rem);
  font-weight: 950;
  text-transform: uppercase;
  animation: build-marquee 26s linear infinite;
  opacity: 0.38;
}

.cartoon-build-marquee span {
  padding: 6px 16px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 22px 999px 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

@keyframes build-marquee {
  from {
    transform: translateX(-6%);
  }

  to {
    transform: translateX(-48%);
  }
}

.compass-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: stretch;
}

.compass-visual,
.compass-panel {
  min-height: 560px;
}

.compass-visual {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--cartoon-ink);
  border-radius: 34px 76px 42px 60px / 48px 32px 74px 38px;
  background: #0d1513;
  box-shadow: 0 12px 0 var(--cartoon-ink), 0 28px 84px rgba(0, 0, 0, 0.2);
}

.compass-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  opacity: 0.82;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.compass-visual::before,
.compass-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.compass-visual::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 16, 0.76), rgba(7, 19, 16, 0.12) 42%, rgba(7, 19, 16, 0.74)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 96px);
}

.compass-visual::after {
  inset: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.48);
  border-radius: 28px 64px 36px 54px / 42px 26px 66px 32px;
}

.compass-scanline {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 32%;
  z-index: 2;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  box-shadow: 0 0 26px rgba(185, 168, 121, 0.62);
  animation: compass-scan 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes compass-scan {
  0%,
  100% {
    transform: translateX(-80px);
    opacity: 0.48;
  }

  50% {
    transform: translateX(120px);
    opacity: 1;
  }
}

.compass-hotspots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.compass-hotspots button {
  min-height: 82px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  color: var(--white);
  text-align: left;
  border: 2px solid rgba(16, 22, 20, 0.82);
  border-radius: 22px 14px 28px 16px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--cartoon-ink);
  box-shadow: 0 5px 0 rgba(16, 22, 20, 0.82);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.compass-hotspots button:hover,
.compass-hotspots button.is-active {
  border-color: var(--cartoon-ink);
  background: var(--glovo-yellow);
  transform: translateY(-3px) rotate(-0.6deg);
}

.compass-hotspots span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--forest);
  border-radius: 50%;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.compass-hotspots strong {
  font-size: 1rem;
  line-height: 1.1;
}

.compass-hotspots small {
  color: #31413b;
  font-size: 0.78rem;
  font-weight: 800;
}

.compass-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 46px);
  border: 3px solid var(--cartoon-ink);
  border-radius: 64px 32px 76px 38px / 36px 76px 42px 68px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 0 var(--cartoon-ink), 0 24px 70px rgba(0, 0, 0, 0.14);
}

.compass-panel .eyebrow {
  color: var(--play-green);
}

.compass-panel h2 {
  max-width: 780px;
  margin: 0;
  color: var(--cartoon-ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 5.1rem);
  line-height: 0.94;
}

.compass-panel > p {
  max-width: 68ch;
  margin: 0;
  color: #30423a;
  font-size: 1.02rem;
}

.compass-route-card {
  display: grid;
  gap: 12px;
  max-width: 720px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 26px 18px 34px 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 20px 54px rgba(0, 0, 0, 0.12);
}

.compass-route-card > span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compass-route-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.compass-route-card p {
  margin: 0;
  color: var(--muted);
}

.compass-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  counter-reset: compass-step;
  list-style: none;
}

.compass-steps li {
  position: relative;
  min-height: 36px;
  padding-left: 34px;
  display: flex;
  align-items: center;
  color: #2e3733;
  font-size: 0.92rem;
  font-weight: 850;
  counter-increment: compass-step;
}

.compass-steps li::before {
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--forest);
  content: counter(compass-step);
  font-size: 0.72rem;
  font-weight: 950;
}

.compass-route-card .button {
  justify-self: start;
  min-height: var(--control-h-lg);
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 24px 999px 30px;
  background: var(--glovo-yellow);
  box-shadow: 0 6px 0 var(--cartoon-ink);
}

.compass-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compass-proof span {
  min-height: 44px;
  padding: 0 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 20px 999px 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.compass-proof strong {
  color: var(--play-green);
  font-weight: 950;
}

.compass-gif-badges {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.gif-badge {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border: 3px solid var(--cartoon-ink);
  border-radius: 50% 50% 42% 58% / 46% 38% 62% 54%;
  background: #fffdf7;
  box-shadow: 0 6px 0 var(--cartoon-ink), 0 14px 26px rgba(0, 0, 0, 0.18);
  animation: gif-hop 2.4s cubic-bezier(0.32, 1.56, 0.64, 1) infinite;
}

.gif-badge:nth-child(2) {
  animation-delay: 160ms;
}

.gif-badge:nth-child(3) {
  animation-delay: 320ms;
}

.gif-badge::before,
.gif-badge::after {
  position: absolute;
  content: "";
}

.badge-saw {
  background: var(--glovo-yellow);
}

.badge-saw::before {
  width: 34px;
  height: 18px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 12px 6px 16px 8px;
  background: #fffdf7;
  transform: rotate(-18deg);
  animation: saw-cut 850ms steps(2, end) infinite;
}

.badge-saw::after {
  right: 9px;
  bottom: 12px;
  width: 22px;
  height: 9px;
  border: 3px solid var(--cartoon-ink);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  transform: rotate(-18deg);
}

.badge-spark {
  background: var(--cartoon-blue);
}

.badge-spark::before {
  width: 34px;
  height: 34px;
  border: 3px solid var(--cartoon-ink);
  background: #fff36d;
  clip-path: polygon(50% 0, 61% 33%, 96% 20%, 72% 49%, 96% 80%, 61% 67%, 50% 100%, 39% 67%, 4% 80%, 28% 49%, 4% 20%, 39% 33%);
  animation: spark-pop 1.2s ease-in-out infinite;
}

.badge-brick {
  overflow: hidden;
  background: var(--cartoon-red);
}

.badge-brick::before {
  inset: 8px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 12px 8px 14px 10px;
  background:
    linear-gradient(90deg, transparent 47%, var(--cartoon-ink) 47% 53%, transparent 53%) 0 0 / 28px 16px,
    linear-gradient(var(--cartoon-ink) 0 3px, transparent 3px) 0 0 / 100% 16px,
    #ffd1bf;
  animation: brick-slide 1.6s linear infinite;
}

@keyframes gif-hop {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  45% {
    transform: translateY(-9px) rotate(4deg);
  }
}

@keyframes saw-cut {
  0%,
  100% {
    transform: translateX(-2px) rotate(-18deg);
  }

  50% {
    transform: translateX(4px) rotate(-12deg);
  }
}

@keyframes spark-pop {
  0%,
  100% {
    transform: scale(0.82) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(18deg);
  }
}

@keyframes brick-slide {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 28px 0, 0 16px, 0 0;
  }
}

.kinetic-renovation-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: clamp(680px, 84vh, 900px);
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 86px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 92px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 92px),
    radial-gradient(circle at 74% 28%, rgba(92, 200, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #0b0f10 0%, #111b18 46%, #050707 100%);
  isolation: isolate;
}

.kinetic-renovation-section::before,
.kinetic-renovation-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.kinetic-renovation-section::before {
  top: 34px;
  left: clamp(18px, 5vw, 74px);
  width: min(360px, 36vw);
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px 24px 999px 32px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 42px rgba(92, 200, 255, 0.18);
}

.kinetic-renovation-section::after {
  right: -72px;
  bottom: -92px;
  width: 210px;
  height: 210px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 62% 38% 52% 48% / 43% 58% 42% 57%;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink);
  opacity: 0.58;
  transform: rotate(-16deg);
}

.kinetic-word-wall {
  position: absolute;
  inset: 8% 0 auto;
  z-index: -1;
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4.8rem, 14vw, 15rem);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.72;
}

.kinetic-word-wall span:nth-child(2) {
  margin-left: 16vw;
  color: rgba(255, 216, 77, 0.09);
}

.kinetic-word-wall span:nth-child(3) {
  margin-left: 6vw;
}

.kinetic-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.kinetic-copy .eyebrow {
  color: var(--glovo-yellow);
}

.kinetic-copy h2 {
  max-width: 12ch;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6.8vw, 7.2rem);
  line-height: 0.86;
  overflow-wrap: normal;
}

.kinetic-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
}

.kinetic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.kinetic-actions .button {
  min-height: 54px;
  border-width: 2px;
}

.kinetic-actions .button.primary {
  color: var(--cartoon-ink);
  border-color: var(--cartoon-ink);
  border-radius: 999px 22px 999px 30px;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink);
}

.kinetic-actions .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 24px 999px 30px 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 34px rgba(92, 200, 255, 0.08);
}

.kinetic-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  min-height: 560px;
  padding: clamp(18px, 3vw, 32px);
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 56px 28px 74px 36px / 34px 70px 42px 62px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 204, 0.96)),
    var(--glovo-yellow);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 28px 72px rgba(0, 0, 0, 0.26);
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0) rotate(var(--float-rot, 0deg));
  transition: transform 120ms linear;
  will-change: transform;
}

.kinetic-board::before {
  position: absolute;
  inset: 16px;
  border: 2px dashed rgba(16, 22, 20, 0.42);
  border-radius: 42px 20px 58px 28px / 26px 54px 34px 48px;
  content: "";
  pointer-events: none;
}

.kinetic-board-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.kinetic-board-head span,
.kinetic-board-head strong {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--cartoon-ink);
  font-weight: 950;
}

.kinetic-board-head span {
  padding: 0 12px;
  border-radius: 999px 18px 999px 22px;
  background: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kinetic-board-head strong {
  gap: 8px;
  padding: 0 14px;
  border-radius: 18px 999px 22px 999px;
  background: #d8f7df;
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.86rem;
}

.kinetic-board-head strong::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--play-green);
  content: "";
  box-shadow: 0 0 0 5px rgba(0, 169, 107, 0.16);
  animation: reward-pulse 1.8s ease-in-out infinite;
}

.kinetic-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 320px;
  padding: 42px 18px 22px;
}

.kinetic-route-line {
  position: absolute;
  top: 54%;
  left: 10%;
  width: 80%;
  height: 80px;
  border: 4px solid var(--cartoon-ink);
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 60px;
  transform: skewX(-14deg);
}

.kinetic-route-line::after {
  position: absolute;
  right: -10px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--cartoon-ink);
  border-bottom: 0;
  border-left: 0;
  content: "";
  transform: rotate(45deg);
}

.kinetic-chip {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 172px;
  align-content: center;
  padding: 18px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 28px 14px 34px 18px;
  background: rgba(255, 253, 247, 0.95);
  box-shadow: 0 8px 0 var(--cartoon-ink);
  transition: transform 180ms ease, background 180ms ease;
}

.kinetic-chip:nth-of-type(2) {
  transform: translateY(-54px) rotate(-2deg);
}

.kinetic-chip:nth-of-type(3) {
  transform: translateY(28px) rotate(2.4deg);
}

.kinetic-chip:nth-of-type(4) {
  transform: translateY(-18px) rotate(-1deg);
}

.kinetic-chip:hover {
  background: #d8f7df;
  transform: translateY(-62px) rotate(-3deg);
}

.kinetic-chip span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--cartoon-ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.kinetic-chip.is-active span {
  color: var(--cartoon-ink);
  background: var(--glovo-yellow);
}

.kinetic-chip strong {
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 0.95;
}

.kinetic-chip small {
  color: #3a473f;
  font-size: 0.86rem;
  font-weight: 850;
}

.kinetic-tools {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.tool-brick,
.tool-spark {
  display: none;
}

.kinetic-tool {
  position: absolute;
  width: clamp(62px, 7vw, 92px);
  height: clamp(62px, 7vw, 92px);
  display: grid;
  place-items: center;
  border: 3px solid var(--cartoon-ink);
  box-shadow: 0 6px 0 var(--cartoon-ink), 0 16px 32px rgba(0, 0, 0, 0.16);
  opacity: 0.64;
  transform: translate3d(0, var(--float-y, 0px), 0) rotate(var(--float-rot, 0deg));
  transition: transform 120ms linear;
  will-change: transform;
}

.kinetic-tool svg {
  width: 70%;
  height: 70%;
  fill: none;
  stroke: var(--cartoon-ink);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: sticker-wiggle 2.6s ease-in-out infinite;
}

.tool-pencil {
  top: 80px;
  right: -26px;
  border-radius: 40% 60% 44% 56% / 54% 35% 65% 46%;
  background: var(--cartoon-blue);
}

.tool-brick {
  bottom: 36px;
  left: -24px;
  border-radius: 60% 40% 52% 48% / 38% 58% 42% 62%;
  background: var(--cartoon-red);
}

.tool-spark {
  right: 18%;
  bottom: -34px;
  border-radius: 50% 50% 42% 58% / 46% 38% 62% 54%;
  background: var(--play-green);
}

.renovation-world-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: center;
  overflow: hidden;
  min-height: clamp(860px, 148vh, 1360px);
  padding: clamp(86px, 12vw, 168px) clamp(18px, 7vw, 108px);
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(92, 200, 255, 0.22), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(255, 216, 77, 0.18), transparent 24%),
    linear-gradient(135deg, #050807 0%, #0b1714 52%, #020403 100%);
  isolation: isolate;
}

.renovation-world-section::before {
  position: absolute;
  top: 8%;
  left: -4vw;
  z-index: 1;
  color: rgba(255, 255, 255, 0.035);
  content: "MAAK";
  font-size: clamp(6rem, 22vw, 22rem);
  font-weight: 950;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.renovation-world-section::after {
  position: absolute;
  right: clamp(18px, 5vw, 80px);
  bottom: 52px;
  z-index: 2;
  width: clamp(104px, 10vw, 164px);
  height: clamp(104px, 10vw, 164px);
  border: 3px solid var(--cartoon-ink);
  border-radius: 62% 38% 50% 50% / 44% 56% 44% 56%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 44%),
    var(--glovo-yellow);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 24px 60px rgba(0, 0, 0, 0.32);
  content: "";
  pointer-events: none;
  transform: rotate(-14deg);
}

.renovation-world-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #1a110b;
}

.world-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.78), rgba(5, 8, 7, 0.34) 38%, rgba(5, 8, 7, 0.02) 72%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.52), transparent 22%, rgba(5, 8, 7, 0.62));
}

.world-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  align-self: start;
  max-width: 700px;
  margin-top: clamp(24px, 6vh, 92px);
  padding: 4px 0;
}

.world-copy .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 22px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink), 0 0 38px rgba(255, 216, 77, 0.2);
}

.world-copy h2 {
  max-width: 10ch;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.4rem, 8.3vw, 9.2rem);
  line-height: 0.82;
  text-wrap: balance;
}

.world-copy p:not(.eyebrow) {
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
}

.world-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.world-step {
  min-height: 132px;
  padding: 16px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 24px 18px 30px 20px / 18px 28px 20px 32px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 20px 42px rgba(0, 0, 0, 0.22);
}

.world-step:nth-child(2) {
  border-radius: 18px 30px 20px 24px / 30px 18px 32px 20px;
  background: #d9f7e3;
  transform: translateY(18px) rotate(1.6deg);
}

.world-step:nth-child(3) {
  border-radius: 28px 22px 18px 30px / 20px 34px 24px 18px;
  background: #dff2ff;
  transform: translateY(-8px) rotate(-1.2deg);
}

.world-step span {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  padding: 0 0 5px;
  color: #f6fbff;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 950;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42);
}

.world-step strong {
  display: block;
  color: var(--cartoon-ink);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1;
}

.world-step small {
  display: block;
  margin-top: 8px;
  color: #38443f;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.world-cta {
  min-height: 56px;
  margin-top: 30px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 22px 999px 30px;
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 0 46px rgba(255, 216, 77, 0.16);
}

.world-plan-board {
  position: sticky;
  top: 128px;
  z-index: 2;
  grid-column: 2;
  justify-self: end;
  width: min(440px, 34vw);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 2.8vw, 30px);
  color: #fffdf7;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(255, 253, 247, 0.03)), #2b1a10;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.world-plan-board > span {
  color: rgba(255, 253, 247, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-plan-board > strong {
  max-width: 12ch;
  color: #fffdf7;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.02;
}

.world-plan-board ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.world-plan-board li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 247, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.08);
}

.world-plan-board li > span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #2b1a10;
  border-radius: 50%;
  background: #fffdf7;
  font-size: 0.76rem;
  font-weight: 950;
}

.world-plan-board li strong {
  display: block;
  color: #fffdf7;
  font-size: 1rem;
  line-height: 1.15;
}

.world-plan-board li small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.35;
}

.world-plan-board .button {
  width: 100%;
}

@keyframes reward-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(0, 169, 107, 0.16);
  }

  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 10px rgba(0, 169, 107, 0);
  }
}

.renovation-story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  overflow: clip;
  min-height: 152vh;
  padding: clamp(76px, 10vw, 138px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 216, 77, 0.3), transparent 22%),
    radial-gradient(circle at 86% 72%, rgba(92, 200, 255, 0.2), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, #f5f1e6 100%);
  isolation: isolate;
}

.renovation-story-section::before {
  position: absolute;
  top: 5%;
  left: -5vw;
  z-index: -1;
  color: rgba(16, 22, 20, 0.045);
  content: "LAGEN";
  font-size: clamp(5.5rem, 19vw, 18rem);
  font-weight: 950;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.story-copy {
  position: sticky;
  top: 132px;
  align-self: start;
  max-width: 700px;
  padding-top: 20px;
}

.story-copy .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 22px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.story-copy h2 {
  max-width: 10ch;
  margin-bottom: 22px;
  color: var(--cartoon-ink);
  font-size: clamp(3.2rem, 7vw, 8rem);
  line-height: 0.84;
}

.story-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: #35423d;
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
}

.story-progress {
  width: min(420px, 100%);
  height: 13px;
  margin: 30px 0 14px;
  overflow: hidden;
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.story-progress span {
  display: block;
  width: var(--story-progress-pct, 0%);
  height: 100%;
  border-right: 2px solid var(--cartoon-ink);
  background: linear-gradient(90deg, var(--glovo-yellow), var(--play-green), var(--cartoon-blue));
  transition: width 80ms linear;
}

.story-stage-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-stage-labels span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--cartoon-ink);
  border: 2px solid rgba(16, 22, 20, 0.76);
  border-radius: 999px 18px 999px 22px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
}

.story-stage {
  position: sticky;
  top: 120px;
  align-self: start;
  min-height: min(700px, calc(100svh - 150px));
  overflow: hidden;
  color: var(--white);
  border: 3px solid var(--cartoon-ink);
  border-radius: 68px 28px 78px 38px / 36px 72px 42px 64px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 72px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px),
    #08100f;
  box-shadow: 0 13px 0 var(--cartoon-ink), 0 34px 100px rgba(0, 0, 0, 0.28);
}

.story-world-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  background:
    radial-gradient(circle at 62% 26%, rgba(92, 200, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #1a110b 0%, #2b1a10 56%, #090503 100%);
  opacity: 0;
  transition: opacity 520ms ease;
}

:root[data-story3d-ready="true"] .story-world-canvas {
  opacity: 1;
}

.story-stage::before,
.story-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.story-stage::before {
  inset: 18px;
  z-index: 3;
  border: 1px solid rgba(92, 200, 255, 0.34);
  border-radius: 54px 20px 62px 30px / 28px 58px 34px 52px;
  box-shadow: inset 0 0 34px rgba(92, 200, 255, 0.12), 0 0 32px rgba(92, 200, 255, 0.08);
}

.story-stage::after {
  right: -42px;
  bottom: -52px;
  width: 190px;
  height: 190px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 62% 38% 48% 52% / 42% 58% 42% 58%;
  background: var(--glovo-yellow);
  box-shadow: 0 9px 0 var(--cartoon-ink);
  transform: rotate(12deg);
}

.story-photo {
  position: absolute;
  inset: 38px 38px 116px;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px 20px 54px 28px / 30px 50px 34px 46px;
  background: #0b1412;
  opacity: 0;
  transform: translate3d(0, var(--story-photo-y, 0px), 0) scale(var(--story-photo-scale, 1)) rotate(var(--story-photo-rotate, 0deg));
  transition: opacity 420ms ease, transform 90ms linear, filter 90ms linear;
  will-change: transform;
}

:root[data-story3d-ready="unsupported"] .story-photo,
:root[data-story3d-ready="error"] .story-photo {
  opacity: 1;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08) brightness(0.82);
}

.story-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 16, 15, 0.72), transparent 48%, rgba(8, 16, 15, 0.46)),
    radial-gradient(circle at 62% 20%, rgba(255, 216, 77, 0.22), transparent 28%);
}

.story-layer {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 7px;
  width: min(250px, 42%);
  min-height: 148px;
  padding: 18px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 28px 16px 34px 18px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 20px 48px rgba(0, 0, 0, 0.22);
  transition: transform 90ms linear;
  will-change: transform;
}

.story-layer span {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 0 0 5px;
  color: #f6fbff;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 950;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42);
}

.story-layer strong {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1;
}

.story-layer small {
  color: #3a473f;
  font-size: 0.82rem;
  font-weight: 850;
}

.story-layer-plan {
  top: 78px;
  left: 54px;
  transform: translate3d(var(--story-plan-x, 0px), var(--story-plan-y, 0px), 0) rotate(var(--story-plan-rotate, -3deg));
}

.story-layer-material {
  top: 42%;
  right: 42px;
  background: #d8f7df;
  transform: translate3d(var(--story-material-x, 0px), var(--story-material-y, 0px), 0) rotate(var(--story-material-rotate, 3deg));
}

.story-layer-finish {
  bottom: 88px;
  left: 36%;
  background: #fff4a8;
  transform: translate3d(var(--story-finish-x, 0px), var(--story-finish-y, 0px), 0) rotate(var(--story-finish-rotate, -1deg));
}

.story-orbit {
  position: absolute;
  inset: 74px 72px 118px;
  z-index: 2;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: rotate(var(--story-orbit-rotate, 0deg));
  transition: transform 90ms linear;
}

.story-orbit-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--cartoon-blue);
  box-shadow: 0 0 22px rgba(92, 200, 255, 0.5);
}

.dot-one {
  top: 8%;
  left: 18%;
}

.dot-two {
  right: 12%;
  top: 42%;
  background: var(--glovo-yellow);
}

.dot-three {
  bottom: 12%;
  left: 48%;
  background: var(--play-green);
}

.story-cta {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 5;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 999px 22px 999px 30px;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink);
  font-weight: 950;
}

.impact-rail {
  width: 100%;
  padding: 28px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(240, 238, 230, 0.9)),
    var(--paper);
  border-bottom: 1px solid rgba(222, 217, 206, 0.72);
}

.impact-rail-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
}

.impact-rail-inner div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-items: start;
  padding: 18px 0;
}

.impact-rail-inner span {
  grid-row: span 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.18);
  border-radius: 50%;
  background: #edf5ef;
  font-weight: 900;
}

.impact-rail-inner strong {
  font-size: 1.02rem;
  line-height: 1.22;
}

.impact-rail-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.runway-section {
  position: relative;
  z-index: 3;
  min-height: 122vh;
  overflow: clip;
  color: var(--cartoon-ink);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 216, 77, 0.28), transparent 22%),
    radial-gradient(circle at 82% 62%, rgba(92, 200, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf7 0%, #f3f0e7 100%);
  isolation: isolate;
}

.runway-section::before {
  position: absolute;
  top: 7vh;
  left: -3vw;
  z-index: -1;
  content: "PRECISIE";
  color: rgba(16, 22, 20, 0.03);
  font-size: clamp(5.2rem, 15vw, 13rem);
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
  transform: translateX(calc(var(--runway-progress, 0) * -4vw));
  white-space: nowrap;
}

.runway-section::after {
  position: absolute;
  right: clamp(18px, 5vw, 84px);
  bottom: 7vh;
  z-index: 0;
  width: clamp(120px, 13vw, 220px);
  height: clamp(120px, 13vw, 220px);
  content: "";
  border: 3px solid var(--cartoon-ink);
  border-radius: 58% 42% 64% 36% / 42% 56% 44% 58%;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 22px 58px rgba(20, 21, 20, 0.14);
  opacity: 0.62;
  transform: rotate(calc(-8deg + var(--runway-progress, 0) * 12deg));
}

.runway-sticky {
  position: sticky;
  top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  min-height: calc(100svh - 72px);
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 92px) 0 clamp(96px, 9vw, 138px);
}

.runway-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-content: center;
}

.runway-copy .eyebrow {
  width: fit-content;
  padding: 8px 13px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  background: var(--glovo-yellow);
  box-shadow: 0 6px 0 var(--cartoon-ink);
}

.runway-copy h2 {
  max-width: 11.2ch;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.8rem, 7.2vw, 8.8rem);
  line-height: 0.82;
  text-wrap: balance;
}

.runway-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: #35423d;
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

.runway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.runway-actions .button.secondary {
  color: var(--forest);
  border-color: rgba(23, 60, 51, 0.2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.runway-actions .button.secondary:hover {
  border-color: rgba(23, 60, 51, 0.38);
  background: var(--white);
}

.runway-stage {
  position: relative;
  z-index: 2;
  min-height: min(590px, calc(100svh - 184px));
  border: 3px solid var(--cartoon-ink);
  border-radius: 70px 30px 82px 38px / 42px 78px 44px 70px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 72px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 72px),
    radial-gradient(circle at 72% 20%, rgba(92, 200, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #1a110b 0%, #2b1a10 56%, #090503 100%);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 28px 82px rgba(20, 21, 20, 0.22);
  overflow: hidden;
}

.runway-stage::before,
.runway-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.runway-stage::before {
  inset: 24px;
  border: 1px solid rgba(183, 255, 232, 0.28);
  border-radius: 52px 20px 66px 28px / 30px 60px 36px 54px;
  box-shadow: inset 0 0 42px rgba(92, 200, 255, 0.14);
}

.runway-stage::after {
  top: 12%;
  right: -58px;
  width: 210px;
  height: 210px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 50%;
  background: rgba(255, 216, 77, 0.92);
  box-shadow: 0 10px 0 var(--cartoon-ink);
  opacity: 0.56;
  transform: translateY(calc(var(--runway-progress, 0) * 74px)) rotate(-10deg);
}

.runway-track {
  position: absolute;
  inset: 16%;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: rotate(calc(-16deg + var(--runway-progress, 0) * 28deg));
  transition: transform 90ms linear;
}

.runway-track span {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--dot, var(--glovo-yellow));
  box-shadow: 0 0 28px rgba(92, 200, 255, 0.36);
}

.runway-track span:nth-child(1) {
  top: 4%;
  left: 18%;
  --dot: var(--glovo-yellow);
}

.runway-track span:nth-child(2) {
  top: 36%;
  right: 5%;
  --dot: var(--cartoon-blue);
}

.runway-track span:nth-child(3) {
  right: 18%;
  bottom: 6%;
  --dot: var(--play-green);
}

.runway-track span:nth-child(4) {
  bottom: 20%;
  left: 8%;
  --dot: var(--cartoon-red);
}

.runway-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: min(238px, 36%);
  min-height: 132px;
  padding: 18px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 30px 16px 36px 20px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 6px 0 var(--cartoon-ink), 0 18px 38px rgba(0, 0, 0, 0.18);
  transform:
    translate3d(
      calc(var(--card-x, 0px) + (var(--runway-progress, 0) - 0.5) * var(--drift-x, 0px)),
      calc(var(--card-y, 0px) + (var(--runway-progress, 0) - 0.5) * var(--drift-y, 0px)),
      0
    )
    rotate(var(--card-rot, 0deg));
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 90ms linear;
}

.runway-card span {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 0 0 5px;
  color: #f6fbff;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 950;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42);
}

.runway-card strong {
  font-size: clamp(1.14rem, 1.7vw, 1.56rem);
  line-height: 1;
}

.runway-card small {
  color: #3a473f;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.35;
}

.runway-card.is-active {
  border-color: var(--cartoon-blue);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 0 0 1px rgba(92, 200, 255, 0.42), 0 0 46px rgba(92, 200, 255, 0.22);
}

.runway-card.is-complete span {
  background: #7bd88f;
}

.card-one {
  top: 11%;
  left: 8%;
  --card-rot: -4deg;
  --drift-x: -18px;
  --drift-y: -26px;
}

.card-two {
  top: 16%;
  right: 10%;
  background: #dff2ff;
  --card-rot: 4deg;
  --drift-x: 22px;
  --drift-y: -18px;
}

.card-three {
  right: 17%;
  bottom: 12%;
  background: #d8f7df;
  --card-rot: -2deg;
  --drift-x: 18px;
  --drift-y: 24px;
}

.card-four {
  bottom: 10%;
  left: 11%;
  background: #fff4a8;
  --card-rot: 3deg;
  --drift-x: -22px;
  --drift-y: 24px;
}

.runway-device {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 10px;
  width: min(330px, 42%);
  min-height: 210px;
  padding: 24px;
  color: #f7fff9;
  border: 1px solid rgba(183, 255, 232, 0.22);
  border-radius: 38px 18px 48px 24px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 216, 77, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(5, 12, 10, 0.94), rgba(15, 45, 39, 0.9));
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.12), 0 26px 72px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) rotate(calc(-2deg + var(--runway-progress, 0) * 4deg));
}

.runway-device > span {
  color: var(--glovo-yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.runway-device strong {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.runway-device small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.runway-device-meter {
  height: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.runway-device-meter span {
  display: block;
  width: calc(var(--runway-progress, 0) * 100%);
  height: 100%;
  border-right: 2px solid var(--cartoon-ink);
  background: linear-gradient(90deg, var(--glovo-yellow), var(--play-green), var(--cartoon-blue));
  transition: width 90ms linear;
}

@media (max-width: 1040px) {
  .runway-section {
    min-height: auto;
  }

  .runway-sticky {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .runway-copy h2 {
    max-width: 11ch;
  }

  .runway-stage {
    min-height: 720px;
  }
}

@media (max-width: 760px) {
  .quote-page .quote-launch-map {
    display: none;
  }

  .runway-section {
    background:
      radial-gradient(circle at 16% 12%, rgba(255, 216, 77, 0.24), transparent 30%),
      linear-gradient(180deg, #fffdf7 0%, #f3f0e7 100%);
  }

  .runway-section::before {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .runway-section::after {
    width: 116px;
    height: 116px;
  }

  .runway-sticky {
    width: min(100% - 28px, 560px);
    padding: 54px 0 72px;
  }

  .runway-copy h2 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 16vw, 4.8rem);
    line-height: 0.84;
  }

  .runway-actions .button {
    width: 100%;
  }

  .runway-stage {
    min-height: 740px;
    border-width: 2px;
    border-radius: 34px 20px 48px 24px / 24px 44px 28px 40px;
    box-shadow: 0 8px 0 var(--cartoon-ink), 0 24px 64px rgba(20, 21, 20, 0.24);
  }

  .runway-stage::before {
    inset: 14px;
  }

  .runway-card {
    width: calc(100% - 34px);
    min-height: 98px;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    padding: 13px;
    border-width: 2px;
    transform: rotate(var(--card-rot, 0deg));
  }

  .runway-card span {
    grid-row: span 2;
    width: 36px;
    height: 36px;
  }

  .runway-card small {
    font-size: 0.78rem;
  }

  .card-one {
    top: 24px;
    left: 16px;
  }

  .card-two {
    top: 142px;
    right: 16px;
  }

  .card-three {
    right: 16px;
    bottom: 142px;
  }

  .card-four {
    bottom: 24px;
    left: 16px;
  }

  .runway-device {
    width: calc(100% - 58px);
    min-height: 166px;
    padding: 18px;
  }
}

.section,
.work-section,
.quote-section,
.faq-section {
  width: min(var(--page-max), calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.section-text p,
.section-heading p,
.quote-copy p {
  max-width: var(--measure);
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2d332f;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  content: "";
  background: var(--forest);
  box-shadow: inset 0 0 0 6px var(--gold);
}

.feature-photo {
  position: relative;
  margin: 0;
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(23, 60, 51, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.modular-homes-section {
  width: 100%;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(83, 151, 207, 0.28), transparent 32%),
    linear-gradient(145deg, #0a2a4f 0%, #124877 54%, #071f3f 100%);
}

.modular-homes-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  width: min(var(--page-max), 100%);
  margin: 0 auto 26px;
}

.modular-homes-head .eyebrow {
  width: fit-content;
  color: #071f3f;
  background: #fff;
}

.modular-homes-head h2 {
  max-width: 15ch;
  margin: 0;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.7rem, 5.2vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.modular-homes-head p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: rgba(238, 246, 255, 0.86);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.6;
}

.modular-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(220px, 0.82fr));
  grid-auto-rows: 260px;
  gap: 14px;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
}

.modular-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(217, 230, 247, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 31, 63, 0.48);
  box-shadow: 0 22px 58px rgba(2, 13, 31, 0.22);
}

.modular-card-large {
  grid-row: span 2;
}

.modular-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modular-card:first-child img,
:root body .modular-card:first-child img,
:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-card:first-child img {
  object-position: center 20% !important;
}

.modular-card:hover img {
  transform: scale(1.035);
}

.modular-card figcaption {
  min-height: 48px;
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(7, 31, 63, 0.72);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
}

.painting-section {
  width: 100%;
  padding: clamp(72px, 8vw, 112px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(99, 178, 230, 0.24), transparent 30%),
    linear-gradient(150deg, #08264a 0%, #155a89 48%, #0b335f 100%);
}

.painting-head {
  display: grid;
  gap: 12px;
  width: min(var(--page-max), 100%);
  margin: 0 auto 28px;
}

.painting-head .eyebrow {
  width: fit-content;
  color: #071f3f;
  background: #fff;
}

.painting-head h2 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.painting-head p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: rgba(238, 246, 255, 0.88);
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.6;
}

.painting-carousel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(168px, 17vw, 238px);
  gap: 14px;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
}

.painting-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(217, 230, 247, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 31, 63, 0.42);
  box-shadow: 0 20px 54px rgba(2, 13, 31, 0.24);
}

.painting-card:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.painting-card:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
}

.painting-card:nth-child(3) {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.painting-card:nth-child(4) {
  grid-column: 4 / 7;
  grid-row: 3 / 4;
}

.painting-card:nth-child(5) {
  grid-column: 7 / 10;
  grid-row: 3 / 4;
}

.painting-card:nth-child(6) {
  grid-column: 10 / 13;
  grid-row: 3 / 4;
}

.painting-card:nth-child(7) {
  grid-column: 1 / 5;
  grid-row: 4 / 5;
}

.painting-card:nth-child(8) {
  grid-column: 5 / 9;
  grid-row: 4 / 5;
}

.painting-card:nth-child(9) {
  grid-column: 9 / 13;
  grid-row: 4 / 5;
}

.painting-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.painting-card:hover img {
  transform: scale(1.035);
}

.painting-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 24px);
  min-height: 36px;
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(238, 246, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 31, 63, 0.74);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.atelier-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  width: min(var(--page-max), calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.atelier-copy {
  display: grid;
  gap: 16px;
}

.atelier-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.atelier-metrics {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.atelier-metrics span {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(222, 217, 206, 0.82);
  color: #2d332f;
  font-weight: 850;
}

.atelier-metrics strong {
  font-family: Fraunces, Georgia, serif;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

.atelier-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.52fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 560px;
}

.atelier-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: #111715;
  box-shadow: var(--soft-shadow);
}

.atelier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.atelier-photo:hover img {
  transform: scale(1.045);
}

.atelier-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 44%);
}

.atelier-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

.atelier-photo.main {
  grid-row: 1 / -1;
}

.atelier-photo.side,
.atelier-photo.bottom,
.atelier-photo.extra {
  min-height: 0;
}

.services {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 5vw, 70px);
  padding-left: clamp(18px, 5vw, 70px);
  background: var(--soft);
}

.services .section-heading {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.service-grid {
  counter-reset: service-card;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
}

.service-card {
  position: relative;
  counter-increment: service-card;
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 2px solid #111715;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 7px 7px 0 #111715, 0 20px 42px rgba(20, 21, 20, 0.12);
  clip-path: polygon(0.4% 0, 99.5% 1.2%, 100% 98.5%, 1% 100%);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    repeating-linear-gradient(135deg, rgba(255, 216, 77, 0.18) 0 12px, transparent 12px 26px),
    linear-gradient(135deg, rgba(255, 216, 77, 0.1), transparent 48%, rgba(0, 169, 107, 0.12));
  opacity: 0.52;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.service-card::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--glovo-yellow) 0 28px, var(--cartoon-blue) 28px 48px, var(--cartoon-red) 48px 60px);
  opacity: 0.96;
}

.service-card:hover::before {
  opacity: 0.72;
}

.service-card:hover {
  border-color: rgba(92, 200, 255, 0.72);
  box-shadow: 10px 10px 0 #111715, 0 0 0 1px rgba(92, 200, 255, 0.24), 0 0 44px rgba(92, 200, 255, 0.16), 0 30px 68px rgba(20, 21, 20, 0.18);
  transform: translateY(-5px) rotate(-0.35deg);
}

.service-card:nth-child(even) img {
  grid-column: 2;
  grid-row: 1;
}

.service-card:nth-child(even) .service-card-body {
  grid-column: 1;
  grid-row: 1;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
}

.service-card-body::before {
  width: max-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 13px;
  content: "0" counter(service-card);
  color: #111715;
  border: 2px solid #111715;
  border-radius: 999px;
  background: var(--glovo-yellow);
  box-shadow: 4px 4px 0 #111715;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 760;
  line-height: 1;
  transform: rotate(-2deg);
}

.service-card-body::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 64px;
  height: 18px;
  content: "";
  border: 2px solid #111715;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #f7e7c4 0 8px, #111715 8px 10px, #f7e7c4 10px 16px);
  box-shadow: 4px 4px 0 #111715;
  transform: rotate(10deg);
  animation: assistant-tool-slide 6s ease-in-out infinite;
}

.service-card-body span {
  margin-bottom: 24px;
  color: var(--clay);
  font-weight: 900;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.98rem;
}

.material-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(var(--page-max), calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.material-lab-copy {
  display: grid;
  gap: 16px;
}

.material-lab-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.material-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.material-tabs button {
  min-height: var(--control-h);
  padding: 0 16px;
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.18);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
}

.material-tabs button.is-active {
  color: var(--white);
  border-color: transparent;
  background: var(--forest);
}

.material-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(23, 60, 51, 0.14);
  border-radius: var(--radius);
  background: #111715;
  box-shadow: var(--lift-shadow);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.material-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.material-stage.is-switching img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.material-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 12, 0.62), transparent 58%),
    linear-gradient(0deg, rgba(8, 13, 12, 0.64), transparent 54%);
}

.material-swatch-strip {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 12, 10, 0.62);
  box-shadow: 0 0 32px rgba(92, 200, 255, 0.12);
  backdrop-filter: blur(14px);
}

.material-swatch-strip span {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--swatch, var(--glovo-yellow));
  box-shadow: 0 4px 0 rgba(5, 12, 10, 0.82);
  transition: background 220ms ease, transform 220ms ease;
}

.material-stage.is-switching .material-swatch-strip span {
  transform: translateY(-2px) scale(1.04);
}

.material-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 520px;
  color: var(--white);
}

.material-panel span {
  color: #eadac3;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-panel h3 {
  max-width: 520px;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
  line-height: 1.05;
}

.material-panel p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.material-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 540px;
  margin-top: 6px;
}

.material-specs span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 10px;
  color: var(--white);
  border: 1px solid rgba(183, 255, 232, 0.2);
  border-radius: 16px 10px 18px 10px;
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.12), transparent 42%),
    rgba(5, 12, 10, 0.56);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.material-specs strong {
  color: var(--glovo-yellow);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.material-specs small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
}

.material-panel a {
  justify-self: start;
  min-height: var(--control-h);
  margin-top: 8px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
}

.work-section {
  width: 100%;
  max-width: none;
  padding-top: var(--section-y-tight);
  padding-bottom: var(--section-y);
  padding-right: clamp(18px, 5vw, 70px);
  padding-left: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.86), rgba(240, 238, 230, 0.72)),
    repeating-linear-gradient(90deg, rgba(23, 60, 51, 0.05) 0 1px, transparent 1px 118px),
    var(--paper);
}

.work-section .section-heading,
.filter-bar,
.gallery {
  width: min(var(--page-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: var(--control-h);
  padding: 0 18px;
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.2);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--forest);
}

.work-proof-cockpit {
  position: relative;
  width: min(var(--page-max), 100%);
  min-height: 112px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  margin: 0 auto 22px;
  overflow: hidden;
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(183, 255, 232, 0.2);
  border-radius: 34px 18px 42px 22px / 22px 44px 24px 38px;
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(255, 216, 77, 0.12), transparent 58%),
    rgba(5, 12, 10, 0.9);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.08), 0 24px 70px rgba(8, 13, 12, 0.22);
  backdrop-filter: blur(18px);
}

.work-proof-cockpit::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px dashed rgba(183, 255, 232, 0.16);
  border-radius: 26px 14px 34px 18px / 18px 34px 20px 28px;
  pointer-events: none;
}

.work-proof-cockpit::after {
  position: absolute;
  top: -36px;
  right: 18%;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.22), transparent 66%);
  pointer-events: none;
}

.work-proof-cockpit > * {
  position: relative;
  z-index: 1;
}

.work-proof-count {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.58), transparent 22%),
    var(--glovo-yellow);
  box-shadow: 0 6px 0 var(--cartoon-ink), 0 0 30px rgba(255, 216, 77, 0.2);
}

.work-proof-count strong {
  font-size: 1.52rem;
  font-weight: 950;
  line-height: 0.9;
}

.work-proof-count span {
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.work-proof-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.work-proof-copy span {
  color: var(--glovo-yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.work-proof-copy h3 {
  margin: 0;
  overflow: hidden;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 2vw, 2rem);
  line-height: 0.98;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-proof-copy p {
  max-width: 66ch;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-proof-flow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(183, 255, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.work-proof-flow span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  white-space: nowrap;
}

.work-proof-flow span.is-active {
  color: var(--cartoon-ink);
  background: #e2c9a6;
}

.work-proof-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-proof-cta:hover,
.work-proof-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 0 32px rgba(255, 216, 77, 0.22);
}

@media (max-width: 1040px) {
  .work-proof-cockpit {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .work-proof-flow {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .work-proof-cockpit {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px;
    border-radius: 28px 16px 34px 18px / 18px 34px 20px 28px;
  }

  .work-proof-count {
    width: 64px;
    height: 64px;
  }

  .work-proof-copy h3,
  .work-proof-copy p {
    white-space: normal;
  }

  .work-proof-flow {
    grid-column: auto;
    width: 100%;
    justify-content: space-between;
  }

  .work-proof-flow span {
    flex: 1;
    justify-content: center;
    padding: 0 6px;
  }

  .work-proof-cta {
    width: 100%;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  min-height: 268px;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(23, 60, 51, 0.12);
  border-radius: var(--radius);
  background: #1b1d1b;
  box-shadow: 0 16px 34px rgba(20, 21, 20, 0.08);
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 552px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-photo-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 58%);
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  gap: 5px;
  align-items: start;
  padding: 14px;
  color: var(--ink);
  border: 2px solid #111715;
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 5px 5px 0 #111715, 0 14px 28px rgba(8, 13, 12, 0.18);
  clip-path: polygon(0 2%, 99% 0, 100% 97%, 2% 100%);
}

.gallery-caption::before {
  position: absolute;
  top: -2px;
  right: 18px;
  width: 74px;
  height: 11px;
  content: "";
  border: 2px solid #111715;
  background: var(--glovo-yellow);
  transform: rotate(2deg);
}

.gallery-item span {
  position: static;
  font-size: 1.02rem;
  font-weight: 900;
  text-align: left;
}

.gallery-item small {
  position: static;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  text-align: left;
}

.gallery-case-meta {
  margin: 1px 0 3px;
  color: #33413b;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.24;
}

.gallery-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.gallery-proof-tags em {
  min-height: 26px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  color: #244237;
  border: 1px solid rgba(23, 60, 51, 0.12);
  border-radius: 999px;
  background: rgba(224, 195, 154, 0.72);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
}

.gallery-model-link,
.gallery-quote-link {
  justify-self: start;
  min-height: 40px;
  margin-top: 5px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-model-link {
  color: var(--white);
  background: var(--forest);
}

.gallery-quote-link {
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.2);
  background: #edf5ef;
}

.gallery-model-link::after,
.gallery-quote-link::after {
  margin-left: 8px;
  content: ">";
}

.gallery-model-link::after {
  color: #eadac3;
}

.gallery-quote-link::after {
  color: var(--copper);
}

.gallery-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.gallery-card-actions strong {
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.14);
  border-radius: 999px;
  background: rgba(224, 195, 154, 0.6);
  font-size: 0.76rem;
  font-weight: 900;
}

.gallery-item:hover {
  border-color: rgba(92, 200, 255, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.16), 0 0 36px rgba(92, 200, 255, 0.12), var(--soft-shadow);
}

.gallery-item.is-proof-active {
  border-color: rgba(92, 200, 255, 0.52);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.16), 0 0 46px rgba(92, 200, 255, 0.14), 0 22px 44px rgba(20, 21, 20, 0.14);
}

.gallery-item.is-proof-active .gallery-caption {
  box-shadow: 6px 6px 0 #111715, 0 0 32px rgba(92, 200, 255, 0.2), 0 18px 34px rgba(8, 13, 12, 0.2);
}

.gallery-item:hover img,
.gallery-photo-button:focus-visible img {
  transform: scale(1.035);
}

.gallery.is-scroll-enhanced .gallery-item {
  opacity: 1;
  transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery.is-scroll-enhanced .gallery-item img {
  clip-path: inset(0 round 0);
  filter: none;
  transform: none;
  transition: transform 180ms ease;
}

.gallery.is-scroll-enhanced .gallery-item::before {
  display: none;
  content: none;
}

.gallery.is-scroll-enhanced .gallery-item.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery.is-scroll-enhanced .gallery-item.is-revealed img {
  clip-path: inset(0 round 0);
  filter: blur(0) saturate(1) contrast(1);
  transform: scale(1);
}

.gallery.is-scroll-enhanced .gallery-item.is-revealed::before {
  display: none;
}

.gallery.is-scroll-enhanced .gallery-item.is-revealed:hover img {
  transform: scale(1.035);
}

.quality-dossier-section {
  width: 100%;
  max-width: none;
  padding: var(--section-y) clamp(18px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 45, 39, 0.98), rgba(82, 111, 120, 0.94) 54%, rgba(116, 88, 64, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 132px),
    var(--forest-2);
}

.quality-dossier-head,
.quality-dossier-grid {
  width: min(var(--page-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.quality-dossier-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.quality-dossier-section .eyebrow {
  color: #e5d5a3;
}

.quality-dossier-section h2 {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--white);
}

.quality-dossier-head p[data-quality-copy] {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.quality-dossier-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}

.quality-proof-board {
  position: sticky;
  top: 102px;
  min-height: 668px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: #111715;
  box-shadow: 0 34px 80px rgba(8, 13, 12, 0.34);
}

.quality-proof-board img {
  width: 100%;
  height: 668px;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.03) contrast(1.02);
}

.quality-proof-carousel {
  display: flex;
  width: 100%;
  height: 668px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quality-proof-carousel::-webkit-scrollbar {
  display: none;
}

.quality-proof-carousel img {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.quality-proof-board::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(8, 13, 12, 0.58), rgba(8, 13, 12, 0.08) 58%, rgba(8, 13, 12, 0.04)),
    linear-gradient(90deg, rgba(8, 13, 12, 0.2), transparent 58%);
  pointer-events: none;
}

.quality-proof-board figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 760;
  line-height: 1.05;
}

.quality-proof-notes {
  position: absolute;
  right: 18px;
  bottom: 92px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-proof-notes li {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  padding: 9px 12px;
  color: var(--forest);
  border: 1px solid rgba(22, 24, 22, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 10px 24px rgba(8, 13, 12, 0.12);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.22;
}

.quality-proof-notes li::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--forest);
}

.quality-system-panel {
  display: grid;
  gap: 14px;
}

.quality-score-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quality-score-strip span {
  display: grid;
  min-height: 112px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 4px solid rgba(229, 213, 163, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.95);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(8, 13, 12, 0.18);
}

.quality-score-strip strong {
  font-family: Fraunces, Georgia, serif;
  color: var(--forest);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
}

.quality-score-strip small {
  align-self: end;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quality-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quality-check-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(8, 13, 12, 0.14);
}

.quality-check-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, #ffffff, #edf4f6);
}

.quality-check-card:nth-child(3n + 3) {
  background: linear-gradient(135deg, #ffffff, #f5f0eb);
}

.quality-check-card > span {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 0 0 5px;
  color: #f6fbff;
  border-radius: 0;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 950;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42);
}

.quality-check-card h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1rem;
}

.quality-check-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.quality-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.quality-action-row .button {
  min-height: var(--control-h-lg);
}

.quality-action-row .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.quality-action-row .button.ghost:hover {
  color: var(--forest);
  background: var(--white);
}

.gallery-admin-main {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  padding: clamp(22px, 4vw, 48px) clamp(16px, 4vw, 48px) clamp(42px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 88px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 88px),
    radial-gradient(circle at 16% 16%, rgba(255, 216, 77, 0.25), transparent 27%),
    radial-gradient(circle at 82% 74%, rgba(92, 200, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #07100e 0%, #111a17 44%, #030606 100%);
  isolation: isolate;
}

.gallery-admin-main::before,
.gallery-admin-main::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.gallery-admin-main::before {
  top: 7%;
  right: -6vw;
  z-index: -1;
  color: rgba(255, 255, 255, 0.044);
  content: "GALLERY";
  font-size: clamp(5rem, 14vw, 15rem);
  font-weight: 950;
  line-height: 0.8;
  white-space: nowrap;
}

.gallery-admin-main::after {
  right: -74px;
  bottom: -96px;
  z-index: 0;
  width: 250px;
  height: 250px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 62% 38% 58% 42% / 44% 58% 42% 56%;
  background: var(--glovo-yellow);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 28px 72px rgba(0, 0, 0, 0.32);
  transform: rotate(-12deg);
}

.gallery-admin-floaters {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.admin-floater {
  position: absolute;
  display: block;
  border: 3px solid var(--cartoon-ink);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 20px 46px rgba(0, 0, 0, 0.24);
  animation: model-tool-float 7.4s ease-in-out infinite;
}

.admin-folder {
  top: 118px;
  right: 32%;
  width: 106px;
  height: 70px;
  border-radius: 20px 14px 24px 16px;
  background: var(--glovo-yellow);
  transform: rotate(-10deg);
}

.admin-folder::before {
  position: absolute;
  top: -17px;
  left: 14px;
  width: 52px;
  height: 22px;
  border: 3px solid var(--cartoon-ink);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: var(--glovo-yellow);
  content: "";
}

.admin-camera {
  top: 42%;
  left: 3vw;
  width: 78px;
  height: 54px;
  border-radius: 24px 14px 28px 16px;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 10px, var(--cartoon-ink) 11px 14px, transparent 15px),
    var(--cartoon-blue);
  animation-delay: -2.4s;
}

.admin-pin {
  right: 7vw;
  bottom: 28%;
  width: 48px;
  height: 72px;
  border-radius: 999px 999px 999px 18px;
  background:
    radial-gradient(circle at 50% 34%, var(--white) 0 7px, var(--cartoon-ink) 8px 11px, transparent 12px),
    var(--cartoon-red);
  transform: rotate(20deg);
  animation-delay: -4.2s;
}

.gallery-admin-gate[hidden],
.gallery-admin-app[hidden],
.gallery-admin-session-link[hidden] {
  display: none !important;
}

.gallery-admin-hero,
.gallery-admin-app,
.gallery-admin-gate,
.gallery-admin-status {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.gallery-admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.gallery-admin-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  line-height: 0.95;
}

.gallery-admin-hero .eyebrow,
.gallery-admin-gate .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.gallery-admin-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 750;
}

.gallery-admin-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 740px;
  margin-top: 20px;
  padding: 12px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 30px 16px 38px 20px / 22px 38px 26px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 246, 190, 0.94)),
    var(--glovo-yellow);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 24px 58px rgba(0, 0, 0, 0.22);
}

.gallery-admin-flow span {
  display: grid;
  gap: 8px;
  min-height: 86px;
  align-content: center;
  padding: 10px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 22px 14px 28px 16px;
  background: rgba(255, 253, 247, 0.95);
}

.gallery-admin-flow span:first-child {
  background: #d8f7df;
  box-shadow: 0 5px 0 var(--cartoon-ink);
  transform: rotate(-1deg);
}

.gallery-admin-flow strong {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--glovo-yellow);
  font-size: 0.72rem;
}

.gallery-admin-flow small {
  font-size: 0.82rem;
  font-weight: 950;
}

.gallery-admin-health,
.gallery-admin-gate {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 30px 16px 40px 20px / 22px 38px 26px 34px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 9px 0 var(--cartoon-ink), 0 24px 58px rgba(0, 0, 0, 0.24);
}

.gallery-admin-health > small {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-admin-health span,
.gallery-admin-health strong {
  overflow-wrap: anywhere;
}

.gallery-admin-stats,
.gallery-photo-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gallery-admin-stats span,
.gallery-photo-tools span {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 14px 999px 18px;
  background: #d8f7df;
  box-shadow: 0 3px 0 var(--cartoon-ink);
  font-size: 0.74rem;
  font-weight: 950;
}

.gallery-photo-tools {
  justify-content: flex-end;
}

.gallery-photo-tools .button {
  min-height: 38px;
  padding: 0 12px;
}

.gallery-admin-gate {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 18px;
}

.gallery-admin-gate h2 {
  margin: 0;
  color: var(--cartoon-ink);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
}

.gallery-admin-gate p {
  margin-bottom: 0;
  color: #435047;
  font-weight: 800;
}

.gallery-admin-app {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.gallery-admin-sidebar,
.gallery-admin-editor,
.gallery-upload-panel {
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 26px 16px 34px 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 24px 58px rgba(0, 0, 0, 0.18);
}

.gallery-admin-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding: 14px;
}

.gallery-admin-toolbar,
.editor-section-head,
.photo-admin-actions,
.photo-admin-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.gallery-admin-toolbar span,
.gallery-admin-toolbar strong,
.editor-section-head span {
  display: block;
}

.gallery-admin-toolbar span,
.editor-section-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.gallery-search {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-project-list {
  display: grid;
  gap: 8px;
}

.gallery-project-button {
  min-height: 72px;
  padding: 12px;
  display: grid;
  gap: 5px;
  text-align: left;
  border: 2px solid var(--cartoon-ink);
  border-radius: 20px 12px 26px 14px;
  background: #fbfaf6;
  box-shadow: 0 4px 0 rgba(16, 22, 20, 0.85);
}

.gallery-project-button span {
  color: var(--ink);
  font-weight: 950;
}

.gallery-project-button small {
  color: var(--muted);
  font-weight: 800;
}

.gallery-project-button.is-active {
  background: var(--glovo-yellow);
  transform: rotate(-1deg);
}

.gallery-admin-editor {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.gallery-project-form,
.gallery-upload-panel {
  display: grid;
  gap: 16px;
  padding: clamp(16px, 3vw, 26px);
}

.gallery-project-form {
  border-bottom: 1px solid rgba(23, 60, 51, 0.12);
}

.editor-section-head h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field-row.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.editorial-row {
  align-items: end;
}

.focal-row,
.photo-admin-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.toggle-line {
  min-height: var(--control-h);
  padding: 0 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 16px 999px 18px;
  background: #fbfaf6;
  box-shadow: 0 3px 0 var(--cartoon-ink);
  font-weight: 900;
}

.toggle-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.toggle-line.mini {
  min-height: 42px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.drop-zone {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 22px;
  text-align: center;
  border: 3px dashed var(--cartoon-ink);
  border-radius: 30px 16px 38px 20px;
  background:
    linear-gradient(135deg, rgba(216, 247, 223, 0.82), rgba(255, 246, 190, 0.94));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.drop-zone span {
  color: var(--cartoon-ink);
  font-size: 1.15rem;
  font-weight: 950;
}

.drop-zone small {
  color: var(--muted);
  font-weight: 800;
}

.drop-zone.is-dragging {
  border-color: var(--cartoon-ink);
  background: var(--glovo-yellow);
}

.upload-preview,
.photo-manager-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.upload-preview:empty {
  display: none;
}

.upload-preview-item,
.photo-admin-card {
  overflow: hidden;
  border: 2px solid var(--cartoon-ink);
  border-radius: 22px 14px 28px 16px;
  background: #fbfaf6;
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.upload-preview-item img,
.photo-admin-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #101211;
}

.upload-preview-item figcaption {
  display: grid;
  gap: 6px;
  padding: 10px;
  font-size: 0.8rem;
}

.upload-preview-item em {
  color: var(--forest);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.upload-preview-item button {
  justify-self: start;
  min-height: 32px;
  padding: 0 9px;
  color: #7d241d;
  border: 1px solid rgba(125, 36, 29, 0.18);
  border-radius: 999px;
  background: #fff1ee;
  font-weight: 900;
}

.photo-admin-card form {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.photo-admin-card label {
  display: grid;
  gap: 5px;
}

.photo-admin-card label span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.photo-admin-card input,
.photo-admin-card textarea,
.photo-admin-card select,
.gallery-search input {
  width: 100%;
  border: 1px solid rgba(23, 60, 51, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
}

.photo-admin-card input,
.photo-admin-card select,
.gallery-search input {
  min-height: 42px;
  padding: 0 10px;
}

.photo-admin-card textarea {
  padding: 9px 10px;
}

.photo-admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
}

.photo-admin-meta span,
.photo-admin-meta strong {
  min-height: 30px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e9f2ec;
}

.photo-admin-controls {
  align-items: stretch;
}

.photo-admin-controls-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr auto;
}

.photo-admin-controls select,
.photo-admin-controls input {
  min-width: 0;
}

.photo-quality-note {
  margin: 0;
  padding: 9px 10px;
  color: #7d5d21;
  border: 1px solid rgba(125, 93, 33, 0.16);
  border-radius: calc(var(--radius) - 2px);
  background: #fff7e4;
  font-size: 0.78rem;
  font-weight: 850;
}

.photo-admin-actions .button {
  min-height: 42px;
  padding: 0 12px;
}

.gallery-admin-empty {
  margin: 0;
  padding: 14px;
  color: var(--muted);
  border: 2px dashed var(--cartoon-ink);
  border-radius: 22px 14px 28px 16px;
  background: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.gallery-admin-status {
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.gallery-admin-status[data-state="success"] {
  color: var(--cartoon-ink);
  background: #d8f7df;
}

.gallery-admin-status[data-state="error"] {
  color: var(--cartoon-ink);
  background: #ffe1d8;
}

.gallery-admin-reward {
  position: fixed;
  right: clamp(14px, 4vw, 34px);
  bottom: 108px;
  z-index: 66;
  min-height: 56px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0 18px 0 12px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 999px 22px 999px 30px;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 18px 36px rgba(0, 0, 0, 0.24);
  font-weight: 950;
  animation: auth-reward-in 520ms cubic-bezier(0.32, 1.56, 0.64, 1);
  pointer-events: none;
}

.gallery-admin-reward span {
  width: 32px;
  height: 32px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, var(--cartoon-ink) 42% 50%, transparent 50%),
    var(--play-green);
  box-shadow: 0 0 0 6px rgba(0, 169, 107, 0.16);
}

.gallery-admin-reward strong {
  font-size: 0.95rem;
}

.gallery-admin-reward.is-leaving {
  animation: auth-reward-out 360ms ease forwards;
}

.gallery-admin-readonly .drop-zone,
.gallery-admin-readonly .editor-actions,
.gallery-admin-readonly .gallery-photo-form {
  opacity: 0.58;
}

.model-main {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 86px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px),
    radial-gradient(circle at 20% 14%, rgba(255, 216, 77, 0.26), transparent 28%),
    radial-gradient(circle at 78% 74%, rgba(92, 200, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #07100e 0%, #111a17 42%, #030606 100%);
  isolation: isolate;
}

.model-main::before,
.model-main::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.model-main::before {
  top: 8%;
  right: -4vw;
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  content: "MODEL";
  font-size: clamp(5.4rem, 15vw, 16rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: 0;
}

.model-main::after {
  right: -68px;
  bottom: -92px;
  z-index: 0;
  width: 246px;
  height: 246px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 60% 40% 46% 54% / 42% 58% 42% 58%;
  background: var(--glovo-yellow);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 28px 72px rgba(0, 0, 0, 0.34);
  transform: rotate(12deg);
}

.model-floating-tools {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.model-tool {
  position: absolute;
  display: block;
  border: 3px solid var(--cartoon-ink);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 22px 48px rgba(0, 0, 0, 0.24);
  animation: model-tool-float 7s ease-in-out infinite;
}

.tool-ruler {
  top: 122px;
  right: 36%;
  width: 128px;
  height: 30px;
  border-radius: 999px 16px 999px 18px;
  background:
    repeating-linear-gradient(90deg, transparent 0 11px, rgba(16, 22, 20, 0.45) 11px 13px),
    var(--glovo-yellow);
  transform: rotate(-12deg);
}

.tool-roller {
  top: 42%;
  left: 4vw;
  width: 86px;
  height: 46px;
  border-radius: 24px 14px 26px 16px;
  background: var(--cartoon-blue);
  animation-delay: -1.8s;
}

.tool-roller::after {
  position: absolute;
  top: 39px;
  left: 52px;
  width: 18px;
  height: 68px;
  border: 3px solid var(--cartoon-ink);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  content: "";
  transform: rotate(-18deg);
}

.tool-pencil {
  right: 8vw;
  bottom: 24%;
  width: 30px;
  height: 132px;
  border-radius: 18px 18px 6px 6px;
  background:
    linear-gradient(180deg, #f7f0dc 0 14px, var(--cartoon-red) 14px 70%, var(--glovo-yellow) 70%);
  transform: rotate(18deg);
  animation-delay: -3.1s;
}

@keyframes model-tool-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

.model-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 430px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  width: min(1380px, 100%);
  min-height: calc(100vh - 130px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 46px) clamp(18px, 4vw, 46px);
}

.model-panel {
  display: grid;
  align-self: start;
  gap: 18px;
}

.back-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0 14px;
  justify-self: start;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 16px 999px 18px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.model-panel .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  background: var(--white);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.model-panel h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 0.96;
}

.model-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.model-progress-strip {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 30px 16px 36px 20px / 22px 34px 24px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 246, 190, 0.9)),
    var(--glovo-yellow);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 24px 58px rgba(0, 0, 0, 0.22);
}

.model-progress-strip span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 18px 12px 22px 14px;
  background: rgba(255, 253, 247, 0.94);
}

.model-progress-strip span.is-active {
  background: #d8f7df;
  box-shadow: 0 5px 0 var(--cartoon-ink);
  transform: rotate(-1deg);
}

.model-progress-strip strong {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--glovo-yellow);
  font-size: 0.72rem;
}

.model-progress-strip small {
  font-size: 0.82rem;
  font-weight: 950;
}

.model-reference {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 28px 16px 34px 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 8px 0 var(--cartoon-ink), 0 22px 52px rgba(0, 0, 0, 0.22);
}

.model-reference img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 2px solid var(--cartoon-ink);
  border-radius: 20px 12px 24px 14px;
}

.model-reference figcaption {
  color: var(--cartoon-ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.model-control-block {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 24px 14px 30px 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 6px 0 var(--cartoon-ink);
}

.model-control-block h2 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.1;
}

.model-chip-list,
.model-swatch-list,
.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-chip,
.model-swatch,
.model-toolbar button {
  min-height: var(--control-h);
  padding: 0 13px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 16px 999px 18px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 3px 0 rgba(16, 22, 20, 0.85);
}

.model-chip.is-active {
  color: var(--cartoon-ink);
  background: var(--glovo-yellow);
  transform: rotate(-1deg);
}

.model-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.model-swatch::before {
  width: 18px;
  height: 18px;
  content: "";
  border: 1px solid rgba(20, 21, 20, 0.16);
  border-radius: 50%;
  background: var(--swatch);
}

.model-swatch.is-active {
  background: #d8f7df;
  box-shadow: 0 3px 0 var(--cartoon-ink), inset 0 0 0 2px rgba(0, 169, 107, 0.18);
}

.model-control-block label {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  align-items: center;
  color: #34423a;
  font-size: 0.88rem;
  font-weight: 850;
}

.model-control-block input[type="range"] {
  width: 100%;
  accent-color: var(--play-green);
}

.model-view-area {
  position: sticky;
  top: 102px;
  display: block;
  align-self: start;
  min-height: 0;
  height: clamp(560px, calc(100vh - 170px), 820px);
  max-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(92, 200, 255, 0.22), transparent 34%),
    radial-gradient(circle at 30% 76%, rgba(255, 216, 77, 0.16), transparent 28%),
    #050908;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 38px 120px rgba(0, 0, 0, 0.42);
}

.model-view-area::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 74px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 74px);
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 54%, transparent 0 38%, black 76%);
}

.model-toolbar {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 9, 8, 0.62);
  backdrop-filter: blur(16px);
  font-weight: 900;
}

.model-toolbar span {
  max-width: min(44ch, 62%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-toolbar button {
  color: var(--cartoon-ink);
  background: var(--glovo-yellow);
}

.model-canvas-wrap {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.model-scene-halo {
  position: absolute;
  inset: 13% 10% 8%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.13), transparent 34%),
    radial-gradient(circle at 50% 52%, rgba(92, 200, 255, 0.2), transparent 46%);
  filter: blur(8px);
  pointer-events: none;
}

.model-scene-tags {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 240px);
  pointer-events: none;
}

.model-scene-tags span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 14px 999px 18px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 4px 0 var(--cartoon-ink);
  font-size: 0.75rem;
  font-weight: 950;
}

.model-canvas-wrap canvas {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.model-status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  max-width: min(340px, calc(100% - 32px));
  margin: 0;
  padding: 10px 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 16px 999px 20px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.86rem;
  font-weight: 950;
  transition: opacity 220ms ease;
}

.model-status:empty {
  display: none;
}

.auth-main {
  position: relative;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 88px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 88px),
    radial-gradient(circle at 12% 20%, rgba(255, 216, 77, 0.24), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(92, 200, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #08100f 0%, #111b18 46%, #050707 100%);
  isolation: isolate;
}

.auth-main::before,
.auth-main::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.auth-main::before {
  top: 8%;
  left: -6vw;
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  content: "LOGIN";
  font-size: clamp(5rem, 17vw, 16rem);
  font-weight: 950;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.auth-main::after {
  right: -72px;
  bottom: -88px;
  z-index: -1;
  width: 240px;
  height: 240px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 58% 42% 64% 36% / 42% 60% 40% 58%;
  background: var(--glovo-yellow);
  box-shadow: 0 10px 0 var(--cartoon-ink);
  transform: rotate(-16deg);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 520px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.auth-copy {
  display: grid;
  gap: 18px;
}

.auth-copy .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 22px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.auth-copy h1 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 7.8rem);
  line-height: 0.86;
}

.auth-copy h1 span {
  display: block;
}

.auth-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.auth-proof {
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.auth-proof span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.auth-proof span::before {
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 3px, transparent 4px),
    var(--play-green);
  box-shadow: 0 0 0 7px rgba(0, 169, 107, 0.12);
}

.auth-account-map {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(580px, 100%);
  min-height: 330px;
  margin-top: 8px;
  overflow: hidden;
  padding: 18px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 44px 20px 56px 26px / 28px 54px 34px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 190, 0.96)),
    var(--glovo-yellow);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 24px 64px rgba(0, 0, 0, 0.26);
}

.auth-account-map::before,
.auth-account-map::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.auth-account-map::before {
  inset: 14px;
  border: 2px dashed rgba(16, 22, 20, 0.34);
  border-radius: 34px 16px 46px 20px / 22px 44px 28px 38px;
}

.auth-account-map::after {
  right: -34px;
  bottom: -42px;
  width: 126px;
  height: 126px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 56% 44% 62% 38% / 38% 58% 42% 62%;
  background: var(--cartoon-blue);
  box-shadow: 0 8px 0 var(--cartoon-ink);
  transform: rotate(12deg);
}

.auth-map-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.auth-map-head span,
.auth-map-head strong {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--cartoon-ink);
  font-weight: 950;
}

.auth-map-head span {
  padding: 0 10px;
  border-radius: 999px 16px 999px 20px;
  background: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-map-head strong {
  gap: 7px;
  padding: 0 12px;
  border-radius: 16px 999px 20px 999px;
  background: #d8f7df;
  box-shadow: 0 4px 0 var(--cartoon-ink);
  font-size: 0.78rem;
}

.auth-map-head strong::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--play-green);
  content: "";
  box-shadow: 0 0 0 5px rgba(0, 169, 107, 0.16);
  animation: reward-pulse 1.8s ease-in-out infinite;
}

.auth-map-line {
  position: absolute;
  right: 12%;
  bottom: 68px;
  left: 14%;
  z-index: 1;
  height: 90px;
  border: 4px solid var(--cartoon-ink);
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 62px;
  transform: skewX(-14deg);
}

.auth-map-line::after {
  position: absolute;
  right: -11px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--cartoon-ink);
  border-bottom: 0;
  border-left: 0;
  content: "";
  transform: rotate(45deg);
}

.auth-map-node {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(198px, 55%);
  min-height: 112px;
  align-content: center;
  padding: 14px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 24px 14px 30px 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 7px 0 var(--cartoon-ink);
}

.auth-map-node span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--glovo-yellow);
  font-size: 0.72rem;
  font-weight: 950;
}

.auth-map-node strong {
  font-size: 1.08rem;
  line-height: 1;
}

.auth-map-node small {
  color: #3a473f;
  font-size: 0.76rem;
  font-weight: 850;
}

.node-profile {
  margin-top: 18px;
}

.node-request {
  justify-self: end;
  margin-top: -42px;
  background: #d8f7df;
  transform: rotate(2deg);
}

.node-access {
  margin-top: -16px;
  margin-left: 18%;
  background: #fff4a8;
  transform: rotate(-2deg);
}

.auth-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 3px solid var(--cartoon-ink);
  border-radius: 36px 18px 48px 24px / 24px 44px 30px 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 247, 0.94)),
    var(--cream);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 30px 86px rgba(0, 0, 0, 0.28);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  background: rgba(255, 216, 77, 0.22);
}

.auth-tabs button {
  min-height: var(--control-h);
  color: var(--cartoon-ink);
  border: 0;
  border-radius: 999px 14px 999px 18px;
  background: transparent;
  font-weight: 900;
}

.auth-tabs button.is-active {
  color: var(--cartoon-ink);
  background: var(--glovo-yellow);
  box-shadow: 0 4px 0 var(--cartoon-ink);
}

.auth-status {
  margin: 0;
  padding: 12px 13px;
  color: var(--muted);
  border-radius: var(--radius);
  background: var(--soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.auth-status:empty {
  display: none;
}

.auth-status[data-state="success"] {
  color: #114232;
  background: #dff1e8;
}

.auth-status[data-state="error"] {
  color: #6f211c;
  background: #f8dfdc;
}

.auth-form,
.auth-session {
  display: grid;
  gap: 14px;
}

.auth-form[hidden],
.auth-session[hidden],
.auth-register-only[hidden] {
  display: none;
}

.auth-session {
  padding: 18px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 26px 16px 34px 18px;
  background: linear-gradient(135deg, #edf5ef, #ffffff 52%);
  box-shadow: 0 6px 0 var(--cartoon-ink);
}

.auth-session span {
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-session strong {
  color: var(--forest);
  font-size: 1.12rem;
}

.auth-session p {
  margin: 0;
  color: var(--muted);
}

.auth-reward {
  position: fixed;
  right: clamp(14px, 4vw, 34px);
  bottom: 108px;
  z-index: 64;
  min-height: 56px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0 18px 0 12px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 999px 22px 999px 30px;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 18px 36px rgba(0, 0, 0, 0.22);
  font-weight: 950;
  animation: auth-reward-in 520ms cubic-bezier(0.32, 1.56, 0.64, 1);
  pointer-events: none;
}

.auth-reward span {
  width: 32px;
  height: 32px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, var(--cartoon-ink) 42% 50%, transparent 50%),
    var(--play-green);
  box-shadow: 0 0 0 6px rgba(0, 169, 107, 0.16);
}

.auth-reward strong {
  font-size: 0.95rem;
}

.auth-reward.is-leaving {
  animation: auth-reward-out 360ms ease forwards;
}

@keyframes auth-reward-in {
  from {
    transform: translateY(18px) rotate(3deg) scale(0.88);
    opacity: 0;
  }

  to {
    transform: translateY(0) rotate(-1deg) scale(1);
    opacity: 1;
  }
}

@keyframes auth-reward-out {
  to {
    transform: translateY(12px) rotate(2deg) scale(0.92);
    opacity: 0;
  }
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal]:target {
  opacity: 1;
  transform: none;
}

.premium-cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(92, 200, 255, 0.22), rgba(183, 255, 232, 0.12) 28%, transparent 66%);
  filter: blur(8px);
  mix-blend-mode: screen;
  transition: opacity 160ms ease;
  will-change: transform, opacity;
}

.premium-cursor-light.is-active {
  opacity: 0.72;
}

:is(
  .service-card,
  .gallery-item,
  .quality-check-card,
  .process-grid article,
  .testimonial-grid figure,
  .faq-list details,
  .runway-card,
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .quote-launch-node,
  .quote-cockpit,
  .material-stage,
  .quality-proof-board,
  .atelier-photo
) {
  --premium-x: 50%;
  --premium-y: 50%;
  outline: 1px solid transparent;
  outline-offset: -1px;
}

:is(
  .service-card,
  .gallery-item,
  .quality-check-card,
  .process-grid article,
  .testimonial-grid figure,
  .faq-list details,
  .runway-card,
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .quote-launch-node,
  .quote-cockpit,
  .material-stage,
  .quality-proof-board,
  .atelier-photo
).is-premium-lit {
  outline-color: rgb(92 200 255 / 52%);
  filter: drop-shadow(0 0 22px rgb(92 200 255 / 13%));
}

:root[data-theme="dark"] :is(
  .service-card,
  .gallery-item,
  .quality-check-card,
  .process-grid article,
  .testimonial-grid figure,
  .faq-list details,
  .runway-card,
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .quote-launch-node,
  .quote-cockpit,
  .material-stage,
  .quality-proof-board,
  .atelier-photo
).is-premium-lit {
  outline-color: rgb(183 255 232 / 68%);
  filter: drop-shadow(0 0 28px rgb(92 200 255 / 20%));
}

.service-card,
.process-grid article,
.testimonial-grid figure,
.faq-list details {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover,
.process-grid article:hover,
.testimonial-grid figure:hover,
.faq-list details:hover {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(23, 60, 51, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .compass-scanline {
    animation: none;
  }

  .build-sticker,
  .site-build-swarm,
  .swarm-tool,
  .kinetic-board,
  .kinetic-tool,
  .story-world-canvas,
  .runway-track,
  .runway-card,
  .runway-device,
  .runway-device-meter span,
  .world-plan-board,
  .story-photo,
  .story-layer,
  .story-orbit,
  .story-progress span,
  .journey-pilot,
  .journey-pilot-steps a,
  .journey-pilot-cta {
    transition: none;
  }

  .build-sticker svg,
  .cartoon-build-marquee,
  .gif-badge,
  .gif-badge::before,
  .gif-badge::after,
  .swarm-tool,
  .swarm-tool::before,
  .swarm-tool::after,
  .floating-call::after,
  .assistant-tool,
  .assistant-reward,
  .service-card-body::after,
  .model-tool,
  .admin-floater,
  .kinetic-tool svg,
  .kinetic-board-head strong::before,
  .auth-map-head strong::before,
  .auth-reward,
  .gallery-admin-reward,
  .sequence-guide li.is-complete span::after,
  .sequence-reward {
    animation: none;
  }

  .premium-cursor-light {
    display: none;
  }

  .gallery.is-scroll-enhanced .gallery-item,
  .gallery.is-scroll-enhanced .gallery-item img,
  .gallery.is-scroll-enhanced .gallery-item::before {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-grid span {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  margin-bottom: 34px;
  padding: 0 0 5px;
  color: #f6fbff;
  border-radius: 0;
  background: transparent;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42);
}

.process-grid p {
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

@media (min-width: 1041px) {
  .quote-copy {
    position: sticky;
    top: 112px;
  }
}

.quote-page-main {
  background:
    linear-gradient(90deg, rgba(240, 238, 230, 0.72), rgba(251, 250, 246, 0.96) 38%),
    var(--paper);
}

.quote-page-section {
  padding-top: clamp(48px, 6vw, 78px);
}

.quote-page-section h1 {
  color: var(--ink);
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
}

.quote-launch-map {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(520px, 100%);
  max-width: 520px;
  min-height: 350px;
  margin-top: 30px;
  overflow: hidden;
  padding: 18px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 44px 20px 56px 26px / 28px 54px 34px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 190, 0.96)),
    var(--glovo-yellow);
  box-shadow: 0 10px 0 var(--cartoon-ink), 0 24px 64px rgba(20, 21, 20, 0.16);
}

.quote-launch-map::before,
.quote-launch-map::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.quote-launch-map::before {
  inset: 14px;
  border: 2px dashed rgba(16, 22, 20, 0.34);
  border-radius: 34px 16px 46px 20px / 22px 44px 28px 38px;
}

.quote-launch-map::after {
  right: -38px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 56% 44% 62% 38% / 38% 58% 42% 62%;
  background: var(--cartoon-blue);
  box-shadow: 0 8px 0 var(--cartoon-ink);
  transform: rotate(-12deg);
}

.quote-launch-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.quote-launch-head span,
.quote-launch-head strong {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--cartoon-ink);
  font-weight: 950;
}

.quote-launch-head span {
  padding: 0 10px;
  border-radius: 999px 16px 999px 20px;
  background: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-launch-head strong {
  gap: 7px;
  padding: 0 12px;
  border-radius: 16px 999px 20px 999px;
  background: #d8f7df;
  box-shadow: 0 4px 0 var(--cartoon-ink);
  font-size: 0.78rem;
}

.quote-launch-head strong::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--play-green);
  content: "";
  box-shadow: 0 0 0 5px rgba(0, 169, 107, 0.16);
  animation: reward-pulse 1.8s ease-in-out infinite;
}

.quote-launch-path {
  position: absolute;
  right: 14%;
  bottom: 72px;
  left: 14%;
  z-index: 1;
  height: 94px;
  border: 4px solid var(--cartoon-ink);
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 62px;
  transform: skewX(-14deg);
}

.quote-launch-path::after {
  position: absolute;
  right: -11px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--cartoon-ink);
  border-bottom: 0;
  border-left: 0;
  content: "";
  transform: rotate(45deg);
}

.quote-launch-node {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(190px, 52%);
  min-height: 112px;
  align-content: center;
  padding: 14px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 24px 14px 30px 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 7px 0 var(--cartoon-ink);
  transition: transform 180ms ease, background 180ms ease;
}

.quote-launch-node:hover {
  background: #d8f7df;
  transform: translateY(-5px) rotate(-1deg);
}

.quote-launch-node.is-active {
  background: #e2c9a6;
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 0 34px rgba(92, 200, 255, 0.22);
}

.quote-launch-node.is-complete span::after {
  width: 8px;
  height: 13px;
  content: "";
  border: solid var(--cartoon-ink);
  border-width: 0 3px 3px 0;
  transform: rotate(42deg);
}

.quote-launch-node.is-complete span {
  font-size: 0;
  background: transparent;
}

.quote-launch-node span {
  position: relative;
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 0 0 5px;
  color: #f6fbff;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 950;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42);
}

.quote-launch-node strong {
  font-size: 1.08rem;
  line-height: 1;
}

.quote-launch-node small {
  color: #3a473f;
  font-size: 0.76rem;
  font-weight: 850;
}

.node-scope {
  margin-top: 18px;
}

.node-context {
  justify-self: end;
  margin-top: -42px;
  background: #d8f7df;
  transform: rotate(2deg);
}

.node-send {
  margin-top: -16px;
  margin-left: 18%;
  background: #fff4a8;
  transform: rotate(-2deg);
}

.quote-teaser-section {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  text-align: left;
}

.quote-teaser-section .quote-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
}

.quote-route-card {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 21, 20, 0.08);
}

.quote-teaser-section .quote-route-card {
  grid-column: 2;
  grid-row: 1 / span 5;
  margin-top: 0;
}

.quote-route-card h3,
.quote-route-card p {
  margin: 0;
}

.quote-route-card p {
  color: var(--muted);
}

.quote-route-card .button {
  justify-self: start;
  margin-top: 6px;
}

.contact-strip {
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-top: 28px;
}

.contact-strip a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
}

.proof-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.proof-list span {
  position: relative;
  padding-left: 24px;
  color: #2d332f;
  font-size: 0.95rem;
  font-weight: 750;
}

.proof-list span::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--forest);
}

.quote-assistant {
  display: grid;
  gap: 5px;
  max-width: 360px;
  margin-top: 28px;
  padding: 18px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 60, 51, 0.96), rgba(82, 111, 120, 0.92)),
    var(--forest);
  box-shadow: var(--soft-shadow);
}

.quote-assistant span {
  color: #eadac3;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-assistant strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.quote-assistant p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-sequence-form {
  gap: 18px;
  padding: clamp(14px, 2.6vw, 24px);
  background: #f7f4ec;
  box-shadow: 0 24px 70px rgba(20, 21, 20, 0.12);
}

.quote-page .quote-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sequence-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-page .sequence-guide {
  position: sticky;
  top: 76px;
  z-index: 4;
  padding: 8px;
  border: 1px solid rgba(23, 60, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 12px 28px rgba(20, 21, 20, 0.08);
  backdrop-filter: blur(14px);
}

.sequence-guide li {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 80px;
  padding: 12px 12px 12px 48px;
  overflow: hidden;
  border: 1px solid rgba(23, 60, 51, 0.14);
  border-bottom-width: 4px;
  border-radius: var(--radius);
  background: var(--white);
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sequence-guide li::after {
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 64px;
  height: 64px;
  content: "";
  border-radius: 50%;
  background: rgba(23, 60, 51, 0.07);
}

.sequence-guide span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
}

.sequence-guide li:nth-child(1) {
  border-bottom-color: #1c5f4e;
  background: linear-gradient(135deg, #ffffff 0%, #eef6f1 100%);
}

.sequence-guide li:nth-child(2) {
  border-bottom-color: var(--gold);
  background: linear-gradient(135deg, #ffffff 0%, #faf5e6 100%);
}

.sequence-guide li:nth-child(3) {
  border-bottom-color: #526f78;
  background: linear-gradient(135deg, #ffffff 0%, #edf4f6 100%);
}

.sequence-guide li:nth-child(4) {
  border-bottom-color: var(--clay);
  background: linear-gradient(135deg, #ffffff 0%, #f5f0eb 100%);
}

.sequence-guide li:nth-child(2) span {
  color: var(--ink);
  background: var(--gold);
}

.sequence-guide li:nth-child(3) span {
  background: #526f78;
}

.sequence-guide li:nth-child(4) span {
  background: var(--clay);
}

.sequence-guide li.is-active,
.sequence-guide li.is-complete {
  opacity: 1;
}

.sequence-guide li.is-active {
  border-color: rgba(23, 60, 51, 0.42);
  box-shadow: 0 10px 22px rgba(23, 60, 51, 0.12);
  transform: translateY(-1px);
}

.sequence-guide li.is-complete {
  background: linear-gradient(135deg, #ffffff 0%, #edf5ef 100%);
}

.sequence-guide li.is-complete span {
  color: var(--cartoon-ink);
  background: var(--glovo-yellow);
  box-shadow: 0 0 0 5px rgba(255, 216, 77, 0.2);
}

.sequence-guide li.is-complete span::after {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cartoon-ink);
  background: var(--play-green);
  clip-path: polygon(50% 0, 62% 34%, 98% 22%, 72% 50%, 98% 78%, 62% 66%, 50% 100%, 38% 66%, 2% 78%, 28% 50%, 2% 22%, 38% 34%);
  content: "";
  animation: sequence-spark 760ms cubic-bezier(0.32, 1.56, 0.64, 1);
}

.sequence-guide strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
}

.sequence-guide small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.quote-cockpit {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(210px, 0.62fr);
  gap: 16px;
  align-items: center;
  overflow: hidden;
  padding: 16px;
  color: #f7fff9;
  border: 1px solid rgba(183, 255, 232, 0.2);
  border-radius: 26px 14px 34px 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(92, 200, 255, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(5, 12, 10, 0.96), rgba(16, 42, 35, 0.94));
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.08), 0 22px 56px rgba(0, 0, 0, 0.22);
}

.quote-cockpit::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 72px);
  opacity: 0.38;
  pointer-events: none;
}

.quote-cockpit::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  content: "";
  border: 2px solid rgba(16, 22, 20, 0.9);
  border-radius: 58% 42% 66% 34% / 42% 60% 40% 58%;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink);
  transform: rotate(-12deg);
}

.quote-cockpit > * {
  position: relative;
  z-index: 1;
}

.quote-cockpit-orb {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(16, 22, 20, 0.95);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #1a110b 0 54%, transparent 55%),
    conic-gradient(var(--glovo-yellow) var(--quote-progress, 0%), rgba(255, 255, 255, 0.12) 0);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 0 32px rgba(92, 200, 255, 0.16);
}

.quote-cockpit-orb span {
  color: #fff8c8;
  font-size: 1.02rem;
  font-weight: 950;
}

.quote-cockpit-copy {
  display: grid;
  gap: 5px;
}

.quote-cockpit-copy > span {
  color: var(--glovo-yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-cockpit-copy strong {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1;
}

.quote-cockpit-copy p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.quote-cockpit-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.quote-cockpit-pills span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(183, 255, 232, 0.18);
  border-radius: 999px 14px 999px 18px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.quote-cockpit-pills span.is-active {
  color: #fff8c8;
  border-color: rgba(255, 216, 77, 0.5);
  box-shadow: 0 0 22px rgba(255, 216, 77, 0.12);
}

.quote-cockpit-pills span.is-complete {
  color: var(--cartoon-ink);
  border-color: var(--cartoon-ink);
  background: #7bd88f;
  box-shadow: 0 4px 0 rgba(16, 22, 20, 0.86);
}

@media (max-width: 760px) {
  .quote-cockpit {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .quote-cockpit-orb {
    width: 76px;
    height: 76px;
  }

  .quote-cockpit-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.quote-next-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  padding: 12px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 28px 16px 36px 18px / 18px 34px 22px 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 46%),
    #fffdf7;
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 18px 46px rgba(8, 13, 12, 0.16);
}

.quote-next-panel::before {
  position: absolute;
  inset: auto 12px 10px 12px;
  height: 5px;
  overflow: hidden;
  content: "";
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--glovo-yellow), var(--play-green), var(--cartoon-blue)) 0 / var(--quote-next-progress, 0%) 100% no-repeat,
    rgba(23, 60, 51, 0.12);
}

.quote-next-panel::after {
  position: absolute;
  right: -28px;
  top: -34px;
  width: 104px;
  height: 104px;
  content: "";
  border: 2px solid var(--cartoon-ink);
  border-radius: 54% 46% 60% 40% / 42% 58% 42% 58%;
  background: #e2c9a6;
  opacity: 0.36;
  transform: rotate(12deg);
}

.quote-next-panel > * {
  position: relative;
  z-index: 1;
}

.quote-next-panel[data-next-state="ready"] {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 46%),
    #d8f7df;
}

.quote-next-badge {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
}

.quote-next-badge strong {
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

.quote-next-badge span {
  font-size: 0.66rem;
  font-weight: 950;
  line-height: 1;
}

.quote-next-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-bottom: 8px;
}

.quote-next-copy span {
  color: #0d5c46;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-next-copy strong {
  overflow: hidden;
  color: var(--forest);
  font-size: clamp(1.12rem, 1.7vw, 1.46rem);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-next-copy p {
  max-width: 60ch;
  margin: 0;
  overflow: hidden;
  color: #394940;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-next-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 18px 999px 24px;
  background: var(--glovo-yellow);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quote-next-action:hover,
.quote-next-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 16px 30px rgba(0, 0, 0, 0.16);
}

@media (max-width: 760px) {
  .quote-next-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .quote-next-badge {
    width: 96px;
    height: 62px;
    justify-self: start;
    border-radius: 999px 18px 999px 24px;
  }

  .quote-next-copy strong,
  .quote-next-copy p {
    white-space: normal;
  }

  .quote-next-action {
    width: 100%;
  }
}

.sequence-reward {
  position: fixed;
  right: clamp(14px, 4vw, 34px);
  bottom: 108px;
  z-index: 62;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--cartoon-ink);
  border: 3px solid var(--cartoon-ink);
  border-radius: 999px 22px 999px 30px;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 18px 36px rgba(0, 0, 0, 0.18);
  font-size: 0.9rem;
  font-weight: 950;
  animation: sequence-reward-in 520ms cubic-bezier(0.32, 1.56, 0.64, 1);
  pointer-events: none;
}

.reward-open .assistant-launch {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.96);
}

.sequence-reward::before {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid var(--cartoon-ink);
  border-radius: 50%;
  background: var(--play-green);
  content: "";
  box-shadow: 0 0 0 5px rgba(0, 169, 107, 0.16);
}

.sequence-reward.is-leaving {
  animation: sequence-reward-out 360ms ease forwards;
}

@keyframes sequence-spark {
  0% {
    transform: scale(0.2) rotate(-24deg);
    opacity: 0;
  }

  55% {
    transform: scale(1.25) rotate(12deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes sequence-reward-in {
  from {
    transform: translateY(18px) rotate(3deg) scale(0.88);
    opacity: 0;
  }

  to {
    transform: translateY(0) rotate(-1deg) scale(1);
    opacity: 1;
  }
}

@keyframes sequence-reward-out {
  to {
    transform: translateY(12px) rotate(2deg) scale(0.92);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .sequence-reward {
    right: 16px;
    bottom: calc(104px + env(safe-area-inset-bottom));
    left: 16px;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-width: 2px;
    font-size: 0.82rem;
    text-align: center;
    box-shadow: 0 5px 0 var(--cartoon-ink), 0 16px 30px rgba(0, 0, 0, 0.2);
  }
}

.form-stage {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(20, 21, 20, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.form-stage::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  content: "";
  background: var(--forest);
  transition: background 220ms ease, box-shadow 220ms ease, width 220ms ease;
}

.form-stage::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--cartoon-ink);
  border: 2px solid transparent;
  border-radius: 50%;
  content: "";
  font-size: 0;
  font-weight: 950;
  pointer-events: none;
  transform: scale(0.78);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.form-stage.is-active {
  border-color: rgba(92, 200, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.055), transparent 32%),
    var(--white);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.14), 0 20px 52px rgba(20, 21, 20, 0.11);
  transform: translateY(-1px);
}

.form-stage.is-active::before {
  width: 8px;
  background: linear-gradient(180deg, var(--cartoon-blue), var(--neon-mint));
  box-shadow: 0 0 22px rgba(92, 200, 255, 0.38);
}

.form-stage.is-active::after {
  border-color: rgba(92, 200, 255, 0.56);
  background:
    radial-gradient(circle at 50% 50%, rgba(92, 200, 255, 0.7) 0 22%, transparent 24%),
    rgba(92, 200, 255, 0.12);
  box-shadow: 0 0 24px rgba(92, 200, 255, 0.24);
  opacity: 1;
  transform: scale(1);
}

.form-stage.is-complete {
  border-color: rgba(0, 169, 107, 0.32);
  background:
    linear-gradient(135deg, rgba(0, 169, 107, 0.05), transparent 34%),
    var(--white);
}

.form-stage.is-complete::before {
  background: linear-gradient(180deg, var(--play-green), var(--glovo-yellow));
}

.form-stage.is-complete::after {
  border-color: var(--cartoon-ink);
  background: #7bd88f;
  box-shadow: 0 4px 0 var(--cartoon-ink), 0 0 0 6px rgba(0, 169, 107, 0.12);
  content: "✓";
  font-size: 0.9rem;
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.stage-contact {
  background: linear-gradient(135deg, #ffffff 0%, #edf4f6 100%);
}

.stage-work {
  border-color: rgba(23, 60, 51, 0.22);
  background: linear-gradient(135deg, #edf5ef 0%, #fffefa 38%, #ffffff 100%);
}

.stage-context {
  background: linear-gradient(135deg, #ffffff 0%, #fbf7ed 100%);
}

.stage-submit {
  background: linear-gradient(135deg, #ffffff 0%, #f3f5f0 100%);
}

.stage-work::before {
  width: 8px;
  background: #1c5f4e;
}

.stage-context::before {
  background: var(--gold);
}

.stage-contact::before {
  background: #526f78;
}

.stage-submit::before {
  background: var(--clay);
}

.stage-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.stage-head > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 8px rgba(23, 60, 51, 0.08);
  font-weight: 900;
}

.stage-context .stage-head > span {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(185, 168, 121, 0.13);
}

.stage-contact .stage-head > span {
  background: #526f78;
  box-shadow: 0 0 0 8px rgba(82, 111, 120, 0.13);
}

.stage-submit .stage-head > span {
  background: var(--clay);
  box-shadow: 0 0 0 8px rgba(143, 118, 95, 0.13);
}

.stage-head h3,
.stage-head p {
  margin: 0;
}

.stage-head h3 {
  font-size: 1.08rem;
  line-height: 1.22;
}

.stage-head p {
  color: var(--muted);
  font-size: 0.92rem;
}

.compact-field {
  max-width: 340px;
}

.service-field {
  display: none;
}

.field-group.service-field {
  display: none;
}

.form-status {
  margin: 0;
  padding: 13px 14px;
  color: var(--muted);
  border-radius: var(--radius);
  background: var(--soft);
  font-size: 0.92rem;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #114232;
  background: #dff1e8;
}

.form-status[data-state="error"] {
  color: #6f211c;
  background: #f8dfdc;
}

.fast-request-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(16px, 3vw, 26px);
  align-items: center;
  padding: clamp(16px, 2.4vw, 24px);
  overflow: hidden;
  border: 3px solid var(--cartoon-ink);
  border-radius: 34px 18px 46px 22px / 24px 44px 28px 38px;
  background:
    radial-gradient(circle at 94% 12%, rgba(255, 216, 77, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(23, 60, 51, 0.96), rgba(82, 111, 120, 0.9)),
    var(--forest);
  box-shadow: 0 9px 0 var(--cartoon-ink), 0 22px 58px rgba(20, 21, 20, 0.18);
}

.fast-request-panel::after {
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 128px;
  height: 128px;
  border: 3px solid var(--cartoon-ink);
  border-radius: 56% 44% 62% 38% / 38% 58% 42% 62%;
  background: var(--glovo-yellow);
  box-shadow: 0 7px 0 var(--cartoon-ink);
  content: "";
}

.fast-request-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.fast-request-copy span {
  color: #e5d5a3;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fast-request-copy h3,
.fast-request-copy p {
  margin: 0;
}

.fast-request-copy h3 {
  max-width: 420px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.06;
}

.fast-request-copy p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.fast-route-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fast-route-card {
  display: grid;
  gap: 6px;
  min-height: 126px;
  padding: 15px;
  color: var(--ink);
  border: 2px solid rgba(16, 22, 20, 0.82);
  border-radius: 22px 14px 28px 16px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 5px 0 rgba(16, 22, 20, 0.82), 0 12px 28px rgba(8, 13, 12, 0.14);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.fast-route-card:hover,
.fast-route-card.is-active {
  border-color: #e5d5a3;
  background: #ffffff;
  transform: translateY(-2px);
}

.fast-route-card strong {
  color: var(--forest);
  font-size: 0.98rem;
  line-height: 1.18;
}

.fast-route-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.34;
}

.fast-route-card span {
  align-self: end;
  justify-self: start;
  min-height: 28px;
  padding: 6px 9px;
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  border-radius: 999px;
  background: rgba(224, 195, 154, 0.72);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label {
  font-size: 0.88rem;
  font-weight: 850;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: var(--control-h);
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cbc5bb;
  border-radius: var(--radius);
  background: #fffefa;
}

.field-group textarea {
  resize: vertical;
}

.builder-heading {
  display: grid;
  gap: 4px;
  padding-top: 4px;
}

.builder-heading h3,
.builder-heading p {
  margin: 0;
}

.builder-heading p,
.work-actions span {
  color: var(--muted);
  font-size: 0.92rem;
}

.renovation-configurator {
  scroll-margin-top: 154px;
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(23, 60, 51, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(23, 60, 51, 0.035) 0 1px, transparent 1px 100%),
    rgba(251, 250, 246, 0.64);
  background-size: 26px 26px;
}

.config-step {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(23, 60, 51, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.config-step-scope {
  background: #ffffff;
}

.config-step-detail {
  background: #f8f6ef;
}

.config-step-task {
  background: #f1f6f3;
}

.config-step-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.config-step-heading > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--forest);
  font-size: 0.8rem;
  font-weight: 900;
}

.config-step-detail .config-step-heading > span {
  color: var(--ink);
  background: var(--gold);
}

.config-step-task .config-step-heading > span {
  background: var(--clay);
}

.config-step-heading h4,
.config-step-heading p {
  margin: 0;
}

.config-step-heading h4 {
  font-size: 0.98rem;
  line-height: 1.25;
}

.config-step-heading p {
  color: var(--muted);
  font-size: 0.86rem;
}

.scope-grid,
.subcard-grid,
.microcard-grid {
  display: grid;
  gap: 9px;
}

.scope-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scope-grid.is-collapsed {
  grid-template-columns: 1fr auto;
  align-items: stretch;
}

.subcard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.microcard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-card,
.sub-option-card,
.micro-option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid #d9d4c9;
  border-radius: var(--radius);
  background: #fffefa;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.option-card {
  min-height: 96px;
}

.scope-grid.is-collapsed .option-card {
  min-height: 76px;
  background: #edf5ef;
}

.option-card:hover,
.sub-option-card:hover,
.micro-option-card:hover {
  border-color: rgba(23, 60, 51, 0.42);
  transform: translateY(-1px);
}

.option-card.is-active,
.sub-option-card.is-active,
.micro-option-card.is-active {
  border-color: var(--forest);
  background: #edf5ef;
  box-shadow: inset 0 0 0 1px var(--forest);
}

.sub-option-card {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 116px;
  background: #fffdfa;
}

.sub-option-card .config-icon {
  width: 40px;
  height: 40px;
}

.micro-option-card {
  min-height: 68px;
  border-style: dashed;
  background: #fdfbf6;
}

.micro-option-card.is-active {
  border-style: solid;
}

.change-option-button {
  min-width: 94px;
  min-height: var(--control-h);
  padding: 0 14px;
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.config-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--forest);
  border-radius: var(--radius);
  background: #e7eee8;
}

.config-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.micro-option-card .config-icon {
  width: 36px;
  height: 36px;
}

.micro-option-card .config-icon svg {
  width: 28px;
  height: 28px;
}

.config-copy {
  display: grid;
  gap: 3px;
}

.config-copy strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.config-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.config-empty,
.config-summary {
  margin: 0;
  padding: 12px;
  color: var(--muted);
  border: 1px dashed #d5cec2;
  border-radius: var(--radius);
  background: #fbf7ed;
  font-size: 0.86rem;
}

.config-summary.is-filled {
  color: var(--forest);
  border-style: solid;
  background: #edf5ef;
  font-weight: 800;
}

.work-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.work-list {
  display: grid;
  gap: 10px;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
}

.work-item strong,
.work-item span {
  display: block;
}

.work-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.work-item .work-item-selection {
  margin-top: 5px;
  color: var(--forest);
  font-weight: 800;
}

.work-item p {
  margin: 8px 0 0;
}

.work-item-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-item-actions button {
  min-height: var(--control-h);
  padding: 0 10px;
  color: var(--forest);
  border: 1px solid rgba(23, 60, 51, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.upload-note {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--muted);
  border: 1px dashed #beb6aa;
  border-radius: var(--radius);
  background: #fffefa;
  font-size: 0.94rem;
  cursor: pointer;
}

.upload-note:focus-within {
  outline: 3px solid rgba(27, 96, 78, 0.8);
  outline-offset: 4px;
}

.upload-note input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.file-chip {
  flex: 0 0 auto;
  padding: 8px 11px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--forest);
  font-weight: 850;
}

.quote-preview {
  min-height: 72px;
  padding: 14px;
  color: var(--muted);
  border-radius: var(--radius);
  background: var(--soft);
  font-size: 0.92rem;
  white-space: pre-wrap;
}

.quote-preview.is-filled {
  color: var(--ink);
}

.quote-preview-shell {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(23, 60, 51, 0.12);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.18), transparent 42%),
    rgba(255, 253, 247, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.quote-preview-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quote-copy-button,
.quote-whatsapp-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--cartoon-ink);
  border: 2px solid var(--cartoon-ink);
  border-radius: 999px 20px 999px 26px;
  background: var(--white);
  box-shadow: 0 5px 0 var(--cartoon-ink);
  font-size: 0.88rem;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.quote-whatsapp-button {
  background: var(--glovo-yellow);
}

.quote-copy-button:hover,
.quote-copy-button:focus-visible,
.quote-whatsapp-button:hover,
.quote-whatsapp-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--cartoon-ink), 0 16px 30px rgba(0, 0, 0, 0.16);
}

.quote-copy-button:disabled,
.quote-whatsapp-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: 0 3px 0 var(--cartoon-ink);
}

.quote-whatsapp-button[aria-disabled="true"] {
  pointer-events: none;
}

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: var(--control-h);
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.consent-line input {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--forest);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.testimonials {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 5vw, 70px);
  padding-left: clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--forest-2);
}

.testimonials .section-heading,
.testimonial-grid {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.testimonials .section-heading p {
  color: #eadac3;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.testimonial-grid blockquote {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-grid figcaption {
  color: #eadac3;
  font-weight: 900;
}

.faq-section {
  padding-top: clamp(70px, 10vw, 112px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  padding: 56px clamp(18px, 5vw, 70px) 86px;
  color: rgba(255, 255, 255, 0.78);
  background: #111715;
}

.site-footer img {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 6px;
}

.site-footer address {
  font-style: normal;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  min-height: 64px;
  padding: 8px 16px 8px 8px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  isolation: isolate;
  color: #111715;
  border: 2px solid #111715;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 38%),
    var(--glovo-yellow);
  box-shadow: 6px 6px 0 #111715, 0 20px 44px rgba(8, 13, 12, 0.2);
  font-weight: 950;
  letter-spacing: 0;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) rotate(-1.5deg);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

:root[data-journey-pilot-state="visible"] .floating-call {
  bottom: 124px;
}

.floating-call::before {
  display: none;
  content: "";
}

.floating-call::after {
  position: absolute;
  top: -7px;
  right: 18px;
  width: 15px;
  height: 15px;
  content: "";
  border: 2px solid #111715;
  border-radius: 50%;
  background: var(--play-green);
  box-shadow: 0 0 0 5px rgba(0, 169, 107, 0.18);
  animation: assistant-beacon 1.9s ease-in-out infinite;
}

.floating-call:hover,
.floating-call:focus-visible {
  box-shadow: 8px 8px 0 #111715, 0 26px 58px rgba(8, 13, 12, 0.24);
  transform: translateY(-3px) rotate(0.8deg);
}

.floating-call.is-visible {
  display: inline-flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(-1.5deg);
}

.reward-open .floating-call.is-visible {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.96);
}

.assistant-launch-icon {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #111715;
  border: 2px solid #111715;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 42%),
    #fffefa;
  box-shadow: 3px 3px 0 #111715;
}

.assistant-launch-icon::after {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  content: "";
  border: 2px solid #111715;
  border-radius: 50%;
  background: var(--play-green);
  box-shadow: 0 0 0 4px rgba(0, 169, 107, 0.16);
}

.assistant-launch-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assistant-launch-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.assistant-launch-copy strong,
.assistant-launch-copy small {
  display: block;
  white-space: nowrap;
}

.assistant-launch-copy strong {
  font-size: 0.94rem;
  line-height: 1;
}

.assistant-launch-copy small {
  color: rgba(17, 23, 21, 0.72);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.assistant-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 42;
  width: min(500px, calc(100% - 36px));
  color: var(--cream);
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-card {
  position: relative;
  display: grid;
  gap: 14px;
  max-height: min(820px, calc(100dvh - 36px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px;
  border: 2px solid #0a0e0c;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.2), transparent 18%),
    linear-gradient(165deg, #1a110b 0%, #4a2f1e 56%, #2b1a10 100%);
  box-shadow: 9px 9px 0 #0a0e0c, 0 30px 90px rgba(8, 13, 12, 0.38);
  clip-path: polygon(0.8% 0, 99.4% 1%, 100% 98.6%, 1.2% 100%);
}

.assistant-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 8px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--glovo-yellow) 0 22px, var(--cartoon-red) 22px 31px, var(--cartoon-blue) 31px 50px);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  opacity: 0.95;
}

.assistant-card::after {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  border: 1px dashed rgba(255, 216, 77, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.assistant-card > *:not(.assistant-orbit) {
  position: relative;
  z-index: 1;
}

.assistant-orbit {
  position: absolute;
  top: 78px;
  right: 20px;
  z-index: 0;
  width: 104px;
  height: 112px;
  opacity: 0.58;
  pointer-events: none;
}

.assistant-tool {
  position: absolute;
  display: block;
  border: 2px solid #0a0e0c;
  box-shadow: 3px 3px 0 #0a0e0c;
  transform: translate3d(var(--float-y, 0), 0, 0);
}

.assistant-hammer {
  top: 0;
  right: 16px;
  width: 50px;
  height: 16px;
  background: var(--glovo-yellow);
  transform: rotate(-16deg);
  animation: assistant-tool-swing 4.6s ease-in-out infinite;
}

.assistant-hammer::after {
  position: absolute;
  top: 12px;
  left: 23px;
  width: 10px;
  height: 54px;
  content: "";
  border: 2px solid #0a0e0c;
  background: #f7e7c4;
}

.assistant-roller {
  right: 0;
  bottom: 22px;
  width: 54px;
  height: 18px;
  background: var(--cartoon-blue);
  transform: rotate(12deg);
  animation: assistant-tool-roll 5.3s ease-in-out infinite;
}

.assistant-roller::after {
  position: absolute;
  top: 13px;
  left: 11px;
  width: 28px;
  height: 42px;
  content: "";
  border-right: 4px solid #0a0e0c;
  border-bottom: 4px solid #0a0e0c;
  transform: skewX(-15deg);
}

.assistant-ruler {
  bottom: 0;
  left: 4px;
  width: 76px;
  height: 16px;
  background: repeating-linear-gradient(90deg, #f7e7c4 0 8px, #111715 8px 10px, #f7e7c4 10px 16px);
  transform: rotate(-8deg);
  animation: assistant-tool-slide 5.8s ease-in-out infinite;
}

.assistant-head,
.assistant-template-head,
.assistant-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.assistant-head {
  position: relative;
  display: block;
  min-height: 56px;
  padding-right: 64px;
}

.assistant-head > div {
  min-width: 0;
}

.assistant-head span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #111715;
  border: 2px solid #0a0e0c;
  border-radius: 999px;
  background: var(--glovo-yellow);
  box-shadow: 3px 3px 0 #0a0e0c;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assistant-head h2 {
  margin: 9px 0 0;
  color: var(--cream);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.38rem, 2.3vw, 1.72rem);
  line-height: 0.92;
  white-space: nowrap;
}

.assistant-close {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--tap-target);
  height: var(--tap-target);
  flex: 0 0 auto;
  color: #111715;
  border: 2px solid #0a0e0c;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 3px 3px 0 #0a0e0c;
}

.assistant-close::before {
  content: "x";
  font-weight: 950;
}

.assistant-intro,
.assistant-empty,
.assistant-notice {
  margin: 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.assistant-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.assistant-route::before {
  position: absolute;
  top: 24px;
  right: 16px;
  left: 16px;
  height: 5px;
  content: "";
  background: rgba(255, 253, 247, 0.18);
}

.assistant-route span {
  position: relative;
  z-index: 1;
  min-height: 60px;
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 8px 9px;
  color: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.08);
  clip-path: polygon(0 2%, 100% 0, 98% 100%, 2% 98%);
}

.assistant-route span.is-active {
  color: #111715;
  border-color: #0a0e0c;
  background: var(--glovo-yellow);
  box-shadow: 3px 3px 0 #0a0e0c;
}

.assistant-route span.is-current {
  transform: translateY(-2px) rotate(-0.6deg);
}

.assistant-route strong {
  font-size: 0.72rem;
  line-height: 1;
}

.assistant-route small {
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.05;
}

.assistant-briefing {
  display: grid;
  gap: 10px;
  padding: 12px;
  color: #111715;
  border: 2px solid #0a0e0c;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18)),
    #fffaf0;
  box-shadow: 4px 4px 0 #0a0e0c;
  clip-path: polygon(0 2%, 100% 0, 99% 98%, 1% 100%);
}

.assistant-briefing-head {
  position: relative;
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
}

.assistant-briefing-head::before,
.assistant-briefing-head::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  content: "";
  border: 1px solid #0a0e0c;
  border-radius: 999px;
}

.assistant-briefing-head::before {
  background: rgba(17, 23, 21, 0.09);
}

.assistant-briefing-head::after {
  right: auto;
  width: var(--assistant-progress, 0%);
  background: linear-gradient(90deg, var(--glovo-yellow), var(--play-green));
  transition: width 220ms ease;
}

.assistant-briefing-head span {
  color: rgba(17, 23, 21, 0.58);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.assistant-briefing-head strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.04rem;
  line-height: 1;
}

.assistant-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.assistant-field {
  position: relative;
  min-width: 0;
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 8px 8px 22px;
  color: #111715;
  border: 1px solid rgba(17, 23, 21, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  text-align: left;
}

.assistant-field strong,
.assistant-field small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assistant-field strong {
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.assistant-field small {
  color: rgba(17, 23, 21, 0.68);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.05;
}

.assistant-field em {
  position: absolute;
  right: 7px;
  bottom: 6px;
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  color: #111715;
  border: 1px solid #0a0e0c;
  border-radius: 999px;
  background: var(--glovo-yellow);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 950;
}

.assistant-field.is-complete {
  border-color: rgba(0, 169, 107, 0.56);
  background: rgba(222, 255, 238, 0.78);
}

.assistant-field.is-complete em {
  width: auto;
  padding: 0 6px;
  background: var(--play-green);
}

.assistant-field.is-missing {
  cursor: pointer;
}

.assistant-field.is-missing:hover,
.assistant-field.is-missing:focus-visible {
  border-color: #0a0e0c;
  background: #ffffff;
  box-shadow: 2px 2px 0 #0a0e0c;
  transform: translateY(-1px);
}

.assistant-notice:empty {
  display: none;
}

.assistant-notice {
  padding: 9px 11px;
  color: #111715;
  border: 2px solid #0a0e0c;
  border-radius: var(--radius);
  background: #fff6bd;
  box-shadow: 4px 4px 0 #0a0e0c;
  font-weight: 900;
}

.assistant-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.assistant-trust span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.1);
  color: rgba(255, 253, 247, 0.88);
  font-size: 0.72rem;
  font-weight: 950;
}

.assistant-messages {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 0;
  max-height: 220px;
  overflow: auto;
  padding: 12px;
  border: 2px solid #0a0e0c;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 23, 21, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 23, 21, 0.04) 1px, transparent 1px),
    #fffaf0;
  background-size: 22px 22px;
  box-shadow: inset 0 0 0 3px rgba(255, 216, 77, 0.16);
}

.assistant-message {
  max-width: 90%;
  padding: 11px 13px;
  border: 2px solid #0a0e0c;
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 #0a0e0c;
  font-size: 0.91rem;
  line-height: 1.42;
  white-space: pre-wrap;
}

.assistant-message.is-user {
  justify-self: end;
  color: #111715;
  background: var(--glovo-yellow);
  clip-path: polygon(1% 0, 100% 2%, 98% 100%, 0 98%);
}

.assistant-message.is-assistant {
  justify-self: start;
  color: #111715;
  background: var(--white);
  clip-path: polygon(0 3%, 99% 0, 100% 97%, 2% 100%);
}

.assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-quick button,
.assistant-template-head button {
  min-height: 44px;
  padding: 0 12px;
  color: #111715;
  border: 2px solid #0a0e0c;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 3px 3px 0 #0a0e0c;
  font-size: 0.82rem;
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.assistant-quick button:hover,
.assistant-quick button:focus-visible,
.assistant-template-head button:hover,
.assistant-template-head button:focus-visible {
  background: var(--glovo-yellow);
  box-shadow: 4px 4px 0 #0a0e0c;
  transform: translateY(-2px) rotate(-0.5deg);
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}

.assistant-form textarea,
.assistant-template textarea {
  width: 100%;
  color: var(--ink);
  border: 2px solid #0a0e0c;
  border-radius: var(--radius);
  background: #fffefa;
  box-shadow: 3px 3px 0 #0a0e0c;
  resize: vertical;
}

.assistant-form textarea {
  min-height: 82px;
  padding: 12px;
}

.assistant-form .button {
  min-height: 82px;
  color: #111715;
  border: 2px solid #0a0e0c;
  background: var(--play-green);
  box-shadow: 4px 4px 0 #0a0e0c;
}

.assistant-template {
  display: grid;
  gap: 9px;
  padding: 13px;
  color: #111715;
  border: 2px solid #0a0e0c;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.42), rgba(255, 216, 77, 0) 38%),
    #f4f9e9;
  box-shadow: 5px 5px 0 #0a0e0c;
  clip-path: polygon(0 1%, 100% 0, 99% 99%, 1% 100%);
}

.assistant-template-head strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1;
}

.assistant-template textarea {
  min-height: 138px;
  padding: 11px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.assistant-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.assistant-actions .button {
  min-height: 46px;
  border: 2px solid #0a0e0c;
  box-shadow: 3px 3px 0 #0a0e0c;
}

.assistant-actions .button:first-child {
  color: #111715;
  background: var(--glovo-yellow);
}

.assistant-actions .is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.assistant-reward {
  position: sticky;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  min-height: 42px;
  padding: 0 12px;
  color: #111715;
  border: 2px solid #0a0e0c;
  border-radius: 999px;
  background: var(--glovo-yellow);
  box-shadow: 4px 4px 0 #0a0e0c;
  font-size: 0.82rem;
  font-weight: 950;
  animation: assistant-reward-in 320ms cubic-bezier(0.2, 1.4, 0.34, 1);
}

.assistant-reward[hidden] {
  display: none;
}

.assistant-reward span {
  width: 16px;
  height: 16px;
  border: 2px solid #0a0e0c;
  border-radius: 50%;
  background: var(--play-green);
  box-shadow: inset 0 0 0 4px var(--white);
}

.assistant-reward.is-leaving {
  animation: assistant-reward-out 320ms ease forwards;
}

@keyframes assistant-beacon {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(0, 169, 107, 0.16);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(0, 169, 107, 0);
  }
}

@keyframes assistant-tool-swing {
  0%,
  100% {
    transform: translateY(0) rotate(-16deg);
  }

  50% {
    transform: translateY(7px) rotate(8deg);
  }
}

@keyframes assistant-tool-roll {
  0%,
  100% {
    transform: translateX(0) rotate(12deg);
  }

  50% {
    transform: translateX(-12px) rotate(-8deg);
  }
}

@keyframes assistant-tool-slide {
  0%,
  100% {
    transform: translateX(0) rotate(-8deg);
  }

  50% {
    transform: translateX(10px) rotate(5deg);
  }
}

@keyframes assistant-reward-in {
  from {
    opacity: 0;
    transform: translateY(12px) rotate(-2deg) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-0.4deg) scale(1);
  }
}

@keyframes assistant-reward-out {
  to {
    opacity: 0;
    transform: translateY(10px) rotate(1deg) scale(0.96);
  }
}

.lightbox {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 40;
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  padding: 0;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: #0d0f0e;
  transform: translateX(-50%);
}

.lightbox::backdrop {
  background: rgba(8, 10, 9, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  background: #0d0f0e;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 8px;
  font-weight: 850;
}

.lightbox-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 18px 14px;
}

.lightbox-meta:empty {
  display: none;
}

.lightbox-meta span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: #eaf4ee;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.lightbox-quote {
  margin: 0 18px 18px;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
}

.lightbox-controls {
  position: absolute;
  right: 14px;
  bottom: 132px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-controls[hidden] {
  display: none;
}

.lightbox-controls button,
.lightbox-controls span {
  min-width: var(--tap-target);
  min-height: var(--tap-target);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  font-weight: 950;
  pointer-events: auto;
}

.lightbox-controls span {
  min-width: 84px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: var(--tap-target);
  height: var(--tap-target);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    top: 124px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: calc(100dvh - 148px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-scrolled .site-menu {
    top: 94px;
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    min-height: var(--tap-target);
    padding: 12px;
  }

  .site-menu a::after {
    display: none;
  }

  .mobile-menu-actions {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
  }

  .mobile-menu-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--tap-target);
    padding: 0 12px;
    border: 1px solid rgba(23, 60, 51, 0.16);
    border-radius: var(--radius);
    background: #fbfaf6;
    font-weight: 900;
  }

  .mobile-menu-action.primary {
    color: var(--white);
    border-color: transparent;
    background: var(--forest);
  }

  .nav-cta {
    display: none;
  }

  .nav-tools {
    display: contents;
  }

  .auth-link {
    position: absolute;
    top: 22px;
    right: 178px;
    width: var(--tap-target);
    min-height: var(--tap-target);
    padding: 0;
    font-size: 0;
  }

  .auth-link::before {
    margin-right: 0;
  }

  .language-toggle {
    position: absolute;
    right: 78px;
    top: 22px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fast-request-panel {
    grid-template-columns: 1fr;
  }

  .quality-dossier-head,
  .quality-dossier-grid {
    grid-template-columns: 1fr;
  }

  .quality-proof-board {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .quality-proof-board img {
    height: min(620px, 72vw);
    min-height: 460px;
  }

  .compass-shell {
    grid-template-columns: 1fr;
  }

  .compass-visual,
  .compass-panel {
    min-height: auto;
  }

  .compass-visual {
    min-height: 540px;
  }

  .kinetic-renovation-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kinetic-copy h2 {
    max-width: 12ch;
  }

  .kinetic-board {
    min-height: 560px;
  }

  .renovation-world-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .world-copy,
  .world-plan-board {
    position: relative;
    grid-column: 1 / -1;
    top: auto;
  }

  .world-copy {
    width: min(100%, 700px);
    margin-top: 0;
  }

  .world-copy h2 {
    max-width: 12ch;
  }

  .world-plan-board {
    justify-self: start;
    width: min(480px, 88vw);
  }

  .renovation-story-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-copy,
  .story-stage {
    position: relative;
    top: auto;
  }

  .story-copy h2 {
    max-width: 12ch;
  }

  .story-stage {
    min-height: 640px;
  }

  .gallery-admin-hero,
  .gallery-admin-app,
  .gallery-admin-gate {
    grid-template-columns: 1fr;
  }

  .gallery-admin-sidebar {
    position: static;
    max-height: none;
  }

  .upload-preview,
  .photo-manager-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 96px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 96px;
  }

  .topbar {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .auth-link {
    top: 14px;
    right: 168px;
    width: var(--tap-target);
    min-height: var(--tap-target);
  }

  .language-toggle {
    top: 12px;
    right: 72px;
    min-height: var(--tap-target);
  }

  .quote-page .theme-toggle {
    display: none;
  }

  .site-menu {
    top: 82px;
  }

  .site-header.is-scrolled .site-menu {
    top: 82px;
  }

  .brand img {
    width: 112px;
  }

  .brand {
    min-height: 56px;
    padding: 8px 12px;
  }

  .brand-meta {
    display: none;
  }

  .hero {
    min-height: min(620px, calc(100svh - 72px));
  }

  .build-sticker {
    width: 56px;
    height: 56px;
    border-width: 2px;
    box-shadow: 0 5px 0 var(--cartoon-ink), 0 14px 24px rgba(0, 0, 0, 0.2);
  }

  .sticker-hat {
    top: 82px;
    right: 12px;
  }

  .sticker-tape {
    top: 42%;
    right: 14px;
    left: auto;
  }

  .sticker-roller,
  .sticker-drill {
    display: none;
  }

  .site-build-swarm {
    opacity: 0.72;
  }

  .swarm-hook,
  .swarm-pencil,
  .swarm-tile {
    display: none;
  }

  .swarm-cone {
    display: none;
  }

  .swarm-roller {
    top: 72vh;
    left: auto;
    right: 8px;
    width: 58px;
    height: 18px;
    border-width: 2px;
  }

  .swarm-spark {
    top: 54vh;
    right: 18px;
    width: 38px;
    height: 38px;
    border-width: 2px;
  }

  .renovation-compass-section {
    padding: 36px 14px;
  }

  .cartoon-build-marquee {
    top: 10px;
    font-size: 1rem;
  }

  .compass-visual {
    min-height: 520px;
  }

  .compass-gif-badges {
    top: 14px;
    right: auto;
    left: 14px;
  }

  .gif-badge {
    width: 44px;
    height: 44px;
    border-width: 2px;
    box-shadow: 0 4px 0 var(--cartoon-ink), 0 10px 18px rgba(0, 0, 0, 0.16);
  }

  .compass-hotspots {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .compass-hotspots button {
    min-height: 74px;
  }

  .compass-panel {
    padding: 18px;
  }

  .compass-panel h2 {
    font-size: clamp(2.08rem, 10vw, 3.05rem);
  }

  .compass-route-card {
    padding: 16px;
  }

  .compass-proof span,
  .compass-route-card .button {
    width: 100%;
    justify-content: center;
  }

  .kinetic-renovation-section {
    padding: 54px 14px 76px;
    min-height: auto;
  }

  .kinetic-renovation-section::before {
    width: 210px;
    height: 44px;
  }

  .kinetic-renovation-section::after {
    width: 160px;
    height: 160px;
  }

  .kinetic-word-wall {
    top: 4%;
    font-size: clamp(3.8rem, 23vw, 6.6rem);
  }

  .kinetic-copy h2 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 17vw, 4.8rem);
    line-height: 0.86;
  }

  .kinetic-actions .button {
    width: 100%;
    justify-content: center;
  }

  .kinetic-board {
    min-height: auto;
    padding: 16px;
    border-width: 2px;
    border-radius: 34px 20px 44px 24px / 24px 42px 28px 38px;
    box-shadow: 0 8px 0 var(--cartoon-ink), 0 24px 64px rgba(0, 0, 0, 0.28);
  }

  .kinetic-map {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 12px 0 74px;
  }

  .kinetic-route-line {
    top: 36px;
    bottom: 42px;
    left: 25px;
    width: 4px;
    height: auto;
    border: 0;
    border-left: 4px dashed var(--cartoon-ink);
    transform: none;
  }

  .kinetic-route-line::after {
    right: auto;
    bottom: -2px;
    left: -10px;
    transform: rotate(135deg);
  }

  .kinetic-chip,
  .kinetic-chip:nth-of-type(2),
  .kinetic-chip:nth-of-type(3),
  .kinetic-chip:nth-of-type(4),
  .kinetic-chip:hover {
    min-height: 118px;
    transform: none;
  }

  .kinetic-chip {
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: center;
    padding: 14px;
  }

  .kinetic-chip span {
    grid-row: span 2;
  }

  .kinetic-tool {
    width: 58px;
    height: 58px;
    border-width: 2px;
    box-shadow: 0 5px 0 var(--cartoon-ink), 0 14px 24px rgba(0, 0, 0, 0.18);
  }

  .tool-pencil {
    top: -22px;
    right: 14px;
  }

  .tool-brick {
    bottom: 10px;
    left: 10px;
  }

  .tool-spark {
    right: 12px;
    bottom: 8px;
  }

  .renovation-world-section {
    display: block;
    min-height: 760px;
    padding: 58px 14px 76px;
  }

  .renovation-world-canvas {
    height: 100%;
    opacity: 0.78;
  }

  .world-copy {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .renovation-world-section::before {
    top: 3%;
    font-size: clamp(4rem, 24vw, 7.2rem);
  }

  .renovation-world-section::after {
    right: 12px;
    bottom: 20px;
    width: 86px;
    height: 86px;
    border-width: 2px;
    box-shadow: 0 6px 0 var(--cartoon-ink), 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .world-scrim {
    background:
      linear-gradient(180deg, rgba(5, 8, 7, 0.78), rgba(5, 8, 7, 0.22) 52%, rgba(5, 8, 7, 0.8)),
      linear-gradient(90deg, rgba(5, 8, 7, 0.62), rgba(5, 8, 7, 0.04));
  }

  .world-copy h2 {
    max-width: 9.4ch;
    font-size: clamp(2.82rem, 13.8vw, 4.25rem);
    line-height: 0.9;
  }

  .world-copy p:not(.eyebrow) {
    max-width: 33ch;
    font-size: 1rem;
  }

  .world-steps {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
  }

  .world-step,
  .world-step:nth-child(2),
  .world-step:nth-child(3) {
    min-height: 98px;
    grid-template-columns: auto 1fr;
    display: grid;
    gap: 4px 12px;
    align-items: center;
    padding: 12px;
    border-width: 2px;
    transform: none;
    box-shadow: 0 5px 0 var(--cartoon-ink), 0 16px 32px rgba(0, 0, 0, 0.18);
  }

  .world-step span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .world-step small {
    margin-top: 0;
  }

  .world-cta {
    width: 100%;
    justify-content: center;
  }

  .world-plan-board {
    width: min(330px, 84vw);
  }

  .renovation-story-section {
    padding: 54px 14px 76px;
  }

  .renovation-story-section::before {
    top: 2%;
    font-size: clamp(4rem, 23vw, 7rem);
  }

  .story-copy h2 {
    max-width: 9ch;
    font-size: clamp(3rem, 16vw, 4.6rem);
    line-height: 0.86;
  }

  .story-stage {
    min-height: 680px;
    border-width: 2px;
    border-radius: 34px 20px 44px 24px / 24px 42px 28px 38px;
    box-shadow: 0 8px 0 var(--cartoon-ink), 0 24px 64px rgba(0, 0, 0, 0.28);
  }

  .story-photo {
    inset: 18px 16px 318px;
    border-radius: 26px 14px 34px 18px;
  }

  .story-layer {
    width: calc(100% - 32px);
    min-height: 94px;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    padding: 12px;
    border-width: 2px;
    box-shadow: 0 5px 0 var(--cartoon-ink), 0 16px 32px rgba(0, 0, 0, 0.18);
  }

  .story-layer span {
    grid-row: span 2;
    width: 36px;
    height: 36px;
  }

  .story-layer-plan {
    top: auto;
    bottom: 242px;
    left: 16px;
  }

  .story-layer-material {
    top: auto;
    right: 16px;
    bottom: 152px;
  }

  .story-layer-finish {
    bottom: 66px;
    left: 16px;
  }

  .story-orbit {
    inset: 48px 32px 332px;
  }

  .story-cta {
    left: 18px;
    right: 18px;
    bottom: 12px;
    min-height: 46px;
    border-width: 2px;
  }

  .gallery-admin-main {
    padding: 18px 14px 86px;
    overflow-x: clip;
  }

  .gallery-admin-hero,
  .gallery-admin-health,
  .gallery-admin-gate,
  .gallery-admin-status,
  .gallery-admin-flow {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .gallery-admin-hero {
    justify-items: start;
  }

  .gallery-admin-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-admin-flow span {
    min-height: 58px;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .gallery-admin-floaters {
    display: none;
  }

  .gallery-admin-hero h1 {
    max-width: 9.4ch;
    font-size: clamp(2rem, 9.2vw, 2.78rem);
  }

  .gallery-admin-hero p:not(.eyebrow) {
    max-width: 31ch;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .gallery-admin-health,
  .gallery-admin-gate,
  .gallery-project-form,
  .gallery-upload-panel {
    padding: 14px;
  }

  .gallery-admin-gate {
    gap: 16px;
  }

  .gallery-admin-gate h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
    line-height: 0.98;
  }

  .gallery-admin-gate .button {
    width: 100%;
  }

  .editor-section-head,
  .gallery-admin-toolbar,
  .photo-admin-controls,
  .gallery-photo-tools,
  .photo-admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .field-row.compact,
  .photo-admin-controls-grid,
  .upload-preview,
  .photo-manager-grid {
    grid-template-columns: 1fr;
  }

  .upload-preview-item img,
  .photo-admin-card > img {
    height: 220px;
  }

  .hero-content {
    width: min(calc(100% - 32px), 540px);
    max-width: 540px;
    margin: 0 16px 30px;
  }

  .hero-proofline {
    display: none;
  }

  .hero-service-stack {
    display: none;
  }

  h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.78rem);
  }

  .hero h1 {
    max-width: 10.6ch;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 32ch;
    line-height: 1.48;
    overflow-wrap: break-word;
  }

  .quote-page-section {
    padding-top: 34px;
  }

  .quote-page-section h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 8.4vw, 2.55rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .quote-page .quote-copy {
    overflow: hidden;
  }

  .quote-page .quote-copy p:not(.eyebrow) {
    max-width: 31ch;
  }

  .quote-launch-map {
    width: auto;
    max-width: none;
    margin-right: 26px;
    min-height: auto;
    margin-top: 18px;
    padding: 14px;
    border-width: 2px;
    border-radius: 32px 18px 42px 22px / 22px 38px 26px 34px;
    box-shadow: 0 7px 0 var(--cartoon-ink), 0 18px 48px rgba(20, 21, 20, 0.14);
  }

  .quote-launch-map::before {
    inset: 10px;
  }

  .quote-launch-map::after {
    width: 96px;
    height: 96px;
  }

  .quote-launch-head {
    align-items: stretch;
  }

  .quote-launch-head span,
  .quote-launch-head strong {
    max-width: 100%;
    white-space: normal;
  }

  .quote-launch-head strong {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.72rem;
  }

  .quote-launch-path {
    top: 86px;
    bottom: 42px;
    left: 31px;
    width: 4px;
    height: auto;
    border: 0;
    border-left: 4px dashed var(--cartoon-ink);
    transform: none;
  }

  .quote-launch-path::after {
    right: auto;
    bottom: -4px;
    left: -10px;
    transform: rotate(135deg);
  }

  .quote-launch-node,
  .node-context,
  .node-send,
  .quote-launch-node:hover {
    width: 100%;
    min-height: 96px;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: center;
    margin: 0;
    transform: none;
  }

  .quote-launch-node span {
    grid-row: span 2;
  }

  .quote-page .quote-section {
    width: calc(100% - 32px);
    gap: 22px;
  }

  .quote-page .quote-copy,
  .quote-page .quote-form,
  .quote-assistant,
  .quote-page .sequence-guide,
  .fast-request-panel,
  .form-stage {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .quote-page .quote-form,
  .fast-request-panel,
  .form-stage {
    overflow: hidden;
  }

  .quote-teaser-section .quote-copy {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-teaser-section .quote-route-card {
    grid-column: auto;
    grid-row: auto;
    margin-top: 22px;
  }

  .quote-page .contact-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: none;
    margin-top: 16px;
  }

  .quote-page .contact-strip a {
    padding: 12px;
    font-size: 0.9rem;
    line-height: 1.22;
  }

  .quote-page .proof-list {
    display: none;
  }

  .quote-assistant {
    max-width: none;
    margin-top: 16px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-preview-actions {
    grid-template-columns: 1fr;
  }

  .sequence-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .fast-request-panel {
    padding: 14px;
  }

  .fast-request-copy p,
  .stage-head p,
  .builder-heading p {
    max-width: 30ch;
    overflow-wrap: break-word;
  }

  .fast-route-grid {
    grid-template-columns: 1fr;
  }

  .fast-route-card {
    min-height: 108px;
    padding: 13px;
  }

  .quote-page .sequence-guide {
    position: static;
    top: 72px;
    width: 100%;
    margin-right: -2px;
    margin-left: -2px;
    padding: 4px;
    overflow: hidden;
  }

  .sequence-guide li {
    min-width: 0;
    min-height: 58px;
    place-items: center;
    padding: 9px 3px 8px;
    text-align: center;
  }

  .sequence-guide span {
    position: static;
    width: 24px;
    height: 24px;
  }

  .sequence-guide strong {
    font-size: 0.76rem;
  }

  .sequence-guide small {
    display: none;
  }

  .form-stage {
    padding: 16px 14px 16px 18px;
  }

  .stage-head {
    gap: 10px;
  }

  .stage-head > span {
    width: 34px;
    height: 34px;
  }

  .renovation-configurator {
    scroll-margin-top: 164px;
    padding: 8px;
  }

  .config-step {
    padding: 12px;
  }

  .hero-actions .button,
  .form-actions .button,
  .form-actions a {
    width: 100%;
  }

  .hero-facts,
  .intro-inner,
  .impact-rail-inner,
  .split,
  .atelier-section,
  .material-lab,
  .model-shell,
  .quote-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .impact-rail {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .impact-rail-inner div {
    padding: 14px 0;
  }

  .atelier-section,
  .material-lab {
    width: min(100% - 36px, 1180px);
    padding: 58px 0;
  }

  .atelier-visual {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .atelier-photo.main,
  .atelier-photo.side,
  .atelier-photo.bottom,
  .atelier-photo.extra {
    min-height: 260px;
  }

  .material-stage,
  .material-stage img {
    min-height: 430px;
  }

  .material-swatch-strip {
    top: 12px;
    right: 12px;
    gap: 6px;
    padding: 6px;
  }

  .material-swatch-strip span {
    width: 24px;
    height: 24px;
  }

  .material-specs {
    grid-template-columns: 1fr;
  }

  .material-specs span {
    min-height: 48px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .model-shell {
    min-height: auto;
    padding-top: 24px;
    padding-inline: 18px;
    overflow: hidden;
  }

  .model-panel {
    display: contents;
  }

  .model-panel h1,
  .model-panel p,
  .model-progress-strip,
  .model-control-block,
  .model-actions,
  .model-view-area {
    width: min(100%, 360px);
    max-width: 360px;
    justify-self: start;
  }

  .model-panel h1 {
    max-width: 11ch;
    font-size: clamp(2.05rem, 9vw, 2.75rem);
  }

  .model-chip-list,
  .model-swatch-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-chip,
  .model-swatch {
    width: 100%;
    justify-content: center;
    padding: 0 8px;
    font-size: 0.78rem;
    text-align: center;
  }

  .model-actions .button {
    width: 100%;
  }

  .model-reference {
    display: none;
  }

  .model-view-area {
    position: relative;
    top: auto;
    height: min(620px, 72vh);
    max-height: none;
    min-height: 520px;
    order: 2;
  }

  .model-toolbar {
    top: 12px;
    right: 12px;
    left: 12px;
    padding: 10px;
  }

  .model-toolbar span {
    max-width: 48%;
  }

  .model-toolbar button {
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .model-scene-tags {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
  }

  .model-status {
    right: 14px;
    bottom: 64px;
  }

  .model-control-block,
  .model-actions {
    order: 3;
  }

  .model-progress-strip {
    order: 1;
  }

  .model-floating-tools {
    display: none;
  }

  .model-canvas-wrap canvas {
    min-height: 430px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-facts div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-facts div {
    padding: 11px;
  }

  .hero-facts dt {
    font-size: 0.9rem;
    line-height: 1.16;
  }

  .hero-facts dd {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .intro-inner a,
  .intro-inner a:first-child {
    min-height: auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-grid,
  .process-grid,
  .quality-score-strip,
  .quality-check-list,
  .testimonial-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .auth-main {
    padding-top: 28px;
    padding-inline: 18px;
    overflow-x: clip;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }

  .auth-copy,
  .auth-card,
  .auth-account-map {
    width: 100%;
    max-width: 100%;
  }

  .auth-card,
  .auth-account-map {
    width: min(100%, calc(100vw - 42px));
    max-width: calc(100vw - 42px);
    justify-self: start;
  }

  .auth-copy h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 10.5vw, 4rem);
    line-height: 0.86;
  }

  .auth-proof {
    gap: 8px;
  }

  .auth-account-map {
    min-height: auto;
    padding: 14px;
    border-width: 2px;
    border-radius: 32px 18px 42px 22px / 22px 38px 26px 34px;
    box-shadow: 0 7px 0 var(--cartoon-ink), 0 18px 48px rgba(0, 0, 0, 0.22);
  }

  .auth-map-head {
    align-items: stretch;
  }

  .auth-map-head span,
  .auth-map-head strong {
    max-width: 100%;
    white-space: normal;
  }

  .auth-map-head strong {
    width: 100%;
  }

  .auth-map-line {
    top: 86px;
    bottom: 42px;
    left: 31px;
    width: 4px;
    height: auto;
    border: 0;
    border-left: 4px dashed var(--cartoon-ink);
    transform: none;
  }

  .auth-map-line::after {
    right: auto;
    bottom: -4px;
    left: -10px;
    transform: rotate(135deg);
  }

  .auth-map-node,
  .node-request,
  .node-access {
    width: 100%;
    min-height: 94px;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: center;
    margin: 0;
    transform: none;
  }

  .auth-map-node span {
    grid-row: span 2;
  }

  .auth-card {
    padding: 16px;
    border-width: 2px;
    box-shadow: 0 7px 0 var(--cartoon-ink), 0 20px 54px rgba(0, 0, 0, 0.24);
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-card:nth-child(even) img,
  .service-card:nth-child(even) .service-card-body {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card img {
    height: 230px;
    min-height: 230px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .gallery-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 11px;
  }

  .quality-dossier-section {
    padding: 58px 18px;
  }

  .quality-dossier-head {
    gap: 16px;
    margin-bottom: 22px;
  }

  .quality-dossier-head p[data-quality-copy] {
    font-size: 0.98rem;
  }

  .quality-proof-board img {
    height: 430px;
    min-height: 430px;
  }

  .quality-proof-board figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .quality-score-strip span {
    min-height: 88px;
  }

  .quality-check-card {
    min-height: 118px;
    padding: 15px;
  }

  .quality-action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quality-action-row .button {
    width: 100%;
  }

  .gallery-model-link {
    min-height: 40px;
  }

  .upload-note {
    display: grid;
  }

  .scope-grid,
  .subcard-grid,
  .microcard-grid {
    grid-template-columns: 1fr;
  }

  .scope-grid.is-collapsed {
    grid-template-columns: 1fr auto;
  }

  .option-card,
  .sub-option-card,
  .micro-option-card {
    min-height: 68px;
  }

  .work-item {
    grid-template-columns: 1fr;
  }

  .work-item-actions {
    flex-direction: row;
  }

  .floating-call {
    display: inline-flex;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(122px + env(safe-area-inset-bottom));
    width: 56px;
    min-height: 48px;
    padding: 0;
    font-size: 0;
  }

  .mobile-quick-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 18;
    display: grid;
    grid-template-columns: 1.16fr 0.84fr 0.96fr;
    gap: 7px 8px;
    padding: 9px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid rgba(23, 60, 51, 0.16);
    background: rgba(251, 250, 246, 0.94);
    box-shadow: 0 -16px 38px rgba(20, 21, 20, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-quick-status,
  .mobile-quick-progress {
    grid-column: 1 / -1;
  }

  .mobile-quick-status {
    min-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(23, 60, 51, 0.78);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-quick-progress {
    position: relative;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(23, 60, 51, 0.11);
  }

  .mobile-quick-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--glovo-yellow), var(--play-green), var(--cartoon-blue));
    box-shadow: 0 0 16px rgba(0, 169, 107, 0.22);
    transition: width 180ms ease;
  }

  .mobile-quick-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 10px;
    color: var(--forest);
    border: 1px solid rgba(23, 60, 51, 0.16);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.84rem;
    font-weight: 950;
    line-height: 1;
    text-align: center;
  }

  .mobile-quick-bar a.is-primary {
    color: var(--white);
    border-color: transparent;
    background: var(--forest);
  }

  .floating-call {
    right: 12px;
    min-height: 58px;
    max-width: calc(100% - 24px);
    padding: 7px 13px 7px 7px;
  }

  .assistant-launch-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .assistant-launch-icon svg {
    width: 29px;
    height: 29px;
  }

  .assistant-launch-copy strong {
    font-size: 0.82rem;
  }

  .assistant-launch-copy small {
    font-size: 0.6rem;
  }

  .assistant-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
  }

  .assistant-card {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 12px;
    box-shadow: 5px 5px 0 #0a0e0c, 0 22px 62px rgba(8, 13, 12, 0.34);
  }

  .assistant-orbit {
    top: 64px;
    right: 10px;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .assistant-head {
    min-height: 50px;
    padding-right: 56px;
  }

  .assistant-head h2 {
    max-width: none;
    font-size: 1.34rem;
  }

  .assistant-close {
    right: 0;
  }

  .assistant-route {
    gap: 6px;
  }

  .assistant-route span {
    min-height: 54px;
    padding: 7px 6px;
  }

  .assistant-route small {
    font-size: 0.66rem;
  }

  .assistant-briefing {
    padding: 10px;
  }

  .assistant-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-field {
    min-height: 58px;
  }

  .assistant-messages {
    max-height: 152px;
  }

  .assistant-intro {
    display: block;
    padding-right: 62px;
    font-size: 0.82rem;
  }

  .assistant-trust {
    gap: 5px;
  }

  .assistant-trust span {
    min-height: 26px;
    font-size: 0.68rem;
  }

  .assistant-form {
    grid-template-columns: 1fr;
  }

  .assistant-form .button {
    min-height: var(--control-h);
  }

  .assistant-actions .button,
  .assistant-template-head button {
    flex: 1 1 auto;
  }

  .assistant-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-actions .button {
    width: 100%;
    padding-inline: 8px;
    font-size: 0.82rem;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .auth-copy h1,
  .auth-copy p:not(.eyebrow),
  .auth-proof,
  .auth-card,
  .auth-account-map {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .auth-copy h1 {
    font-size: clamp(2.28rem, 9vw, 3.1rem);
  }
}

@media (max-width: 440px) {
  .model-shell {
    padding-inline: 14px;
    width: 100%;
    max-width: 100%;
  }

  .model-panel h1,
  .model-panel p,
  .model-progress-strip,
  .model-control-block,
  .model-actions,
  .model-view-area {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .model-panel h1 {
    font-size: clamp(2rem, 9.8vw, 2.55rem);
  }

  .model-chip-list,
  .model-swatch-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-chip,
  .model-swatch {
    width: 100%;
    justify-content: center;
    padding: 0 8px;
    font-size: 0.78rem;
    text-align: center;
  }

  .model-actions .button {
    width: 100%;
  }

  .auth-main {
    padding-inline: 14px;
  }

  .auth-copy h1 {
    font-size: clamp(2.28rem, 10.8vw, 2.9rem);
    max-width: 100%;
  }

  .auth-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
  }

  .auth-account-map {
    padding: 12px;
  }

  .auth-map-head strong {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .auth-map-node {
    min-height: 88px;
    padding: 12px;
  }

  .auth-card {
    padding: 14px;
  }

  .quote-launch-map {
    width: calc(100vw - 76px) !important;
    max-width: calc(100vw - 76px) !important;
    margin-right: 0;
  }

  .auth-link {
    display: none;
  }

  .language-toggle {
    right: 72px;
  }

  .brand img {
    width: 102px;
  }

  .brand {
    padding: 7px 10px;
  }

  .hero-actions .button,
  .form-actions .button,
  .form-actions a {
    width: 100%;
  }
}

:root[data-theme="dark"] {
  --ink: #f8f1dc;
  --muted: #a9bab3;
  --paper: #08100e;
  --soft: #101a17;
  --line: rgba(209, 242, 232, 0.16);
  --clay: #ffd176;
  --copper: #ff8f66;
  --sage: #76d7b3;
  --smoke: #87cce4;
  --gold: #ffdf78;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  --lift-shadow: 0 32px 86px rgba(0, 0, 0, 0.48);
  color-scheme: dark;
}

:root[data-theme="dark"] body {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(92, 200, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 216, 77, 0.14), transparent 22%),
    linear-gradient(180deg, #06100e 0%, #0b1512 42%, #050807 100%);
}

:root[data-theme="dark"] .scroll-progress {
  box-shadow: 0 0 22px rgba(92, 200, 255, 0.5), 0 0 36px rgba(0, 169, 107, 0.28);
}

:root[data-theme="dark"] .site-header {
  border-bottom-color: rgba(183, 255, 232, 0.14);
  background: rgba(6, 13, 11, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] .site-header::after {
  background: linear-gradient(90deg, transparent, rgba(92, 200, 255, 0.48), rgba(255, 216, 77, 0.24), transparent);
  opacity: 1;
}

:root[data-theme="dark"] .nav-shell::after {
  background: linear-gradient(90deg, transparent, rgba(92, 200, 255, 0.62), rgba(255, 216, 77, 0.42), transparent);
}

:root[data-theme="dark"] .topbar {
  background: linear-gradient(90deg, rgba(5, 12, 10, 0.98), rgba(13, 36, 31, 0.98));
}

:root[data-theme="dark"] .topbar-right span {
  color: #d9fff2;
  border-color: rgba(123, 216, 143, 0.28);
  background: rgba(123, 216, 143, 0.08);
}

:root[data-theme="dark"] .site-menu {
  color: #dde9e3;
}

:root[data-theme="dark"] .site-menu a.is-current,
:root[data-theme="dark"] .site-menu a:hover {
  color: #fff6c8;
  text-shadow: 0 0 20px rgba(92, 200, 255, 0.18);
}

:root[data-theme="dark"] .language-toggle,
:root[data-theme="dark"] .auth-link,
:root[data-theme="dark"] .mobile-quick-bar,
:root[data-theme="dark"] .site-menu.is-open {
  border-color: rgba(183, 255, 232, 0.18);
  background: rgba(9, 18, 16, 0.92);
  box-shadow: inset 0 0 0 1px rgba(92, 200, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .language-toggle button,
:root[data-theme="dark"] .auth-link,
:root[data-theme="dark"] .mobile-quick-bar a {
  color: #eaf7f1;
}

:root[data-theme="dark"] .mobile-quick-bar a:not(.is-primary) {
  border-color: rgba(183, 255, 232, 0.18);
  background: rgba(9, 18, 16, 0.92);
}

:root[data-theme="dark"] .mobile-quick-status {
  color: rgba(234, 247, 241, 0.72);
}

:root[data-theme="dark"] .mobile-quick-progress {
  background: rgba(183, 255, 232, 0.12);
}

:root[data-theme="dark"] .language-toggle button.is-active,
:root[data-theme="dark"] .mobile-quick-bar a.is-primary {
  color: #1a110b;
  background: var(--glovo-yellow);
}

:root[data-theme="dark"] .theme-toggle {
  color: #1a110b;
  border-color: rgba(92, 200, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 42%),
    var(--glovo-yellow);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.26), 0 0 32px rgba(92, 200, 255, 0.22), 0 16px 34px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .theme-toggle [data-theme-icon] {
  background: #1a110b;
  box-shadow: inset 8px -3px 0 var(--glovo-yellow), 0 0 18px rgba(92, 200, 255, 0.34);
}

:root[data-theme="dark"] .nav-cta,
:root[data-theme="dark"] .button.primary {
  color: #1a110b;
  border-color: rgba(255, 216, 77, 0.52);
  background: var(--glovo-yellow);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.24), 0 18px 42px rgba(255, 216, 77, 0.14);
}

:root[data-theme="dark"] .button.ghost,
:root[data-theme="dark"] .button.secondary,
:root[data-theme="dark"] .mobile-menu-action {
  color: #f8f1dc;
  border-color: rgba(183, 255, 232, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .hero::before {
  border-color: rgba(183, 255, 232, 0.24);
  box-shadow: inset 0 0 0 1px rgba(92, 200, 255, 0.08), 0 0 92px rgba(92, 200, 255, 0.12);
}

:root[data-theme="dark"] .hero-service-stack {
  border-color: rgba(183, 255, 232, 0.22);
  background: rgba(5, 12, 10, 0.6);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(92, 200, 255, 0.1);
}

:root[data-theme="dark"] .intro-band,
:root[data-theme="dark"] .site-footer {
  background: #1a110b;
}

:root[data-theme="dark"] .services,
:root[data-theme="dark"] .work-section,
:root[data-theme="dark"] .process,
:root[data-theme="dark"] .testimonials,
:root[data-theme="dark"] .faq-section,
:root[data-theme="dark"] .quote-page-main,
:root[data-theme="dark"] .auth-main {
  background:
    radial-gradient(circle at 10% 0%, rgba(92, 200, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #08100e, #0c1714);
}

:root[data-theme="dark"] .runway-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 216, 77, 0.14), transparent 24%),
    radial-gradient(circle at 82% 58%, rgba(92, 200, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #1a110b 0%, #2b1a10 100%);
}

:root[data-theme="dark"] .runway-section::before {
  color: rgba(183, 255, 232, 0.045);
}

:root[data-theme="dark"] .runway-copy p:not(.eyebrow),
:root[data-theme="dark"] .runway-card small {
  color: var(--muted);
}

:root[data-theme="dark"] .runway-card {
  color: var(--ink);
  border-color: rgba(183, 255, 232, 0.2);
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.08), transparent 34%),
    rgba(10, 20, 18, 0.9);
  box-shadow: 0 7px 0 rgba(3, 7, 6, 0.96), 0 0 0 1px rgba(92, 200, 255, 0.1), 0 26px 70px rgba(0, 0, 0, 0.36);
}

:root[data-theme="dark"] .runway-card.is-active {
  border-color: rgba(92, 200, 255, 0.76);
  box-shadow: 0 7px 0 rgba(3, 7, 6, 0.96), 0 0 0 1px rgba(92, 200, 255, 0.32), 0 0 54px rgba(92, 200, 255, 0.18);
}

:root[data-theme="dark"] .section:not(.services):not(.process),
:root[data-theme="dark"] .material-lab,
:root[data-theme="dark"] .quote-section {
  color: var(--ink);
}

:root[data-theme="dark"] :is(
  .service-card,
  .gallery-item,
  .gallery-caption,
  .quality-card,
  .quality-score-card,
  .process-grid article,
  .testimonial-card,
  .faq-list details,
  .quote-form,
  .quote-launch-map,
  .quote-next-panel,
  .fast-request-panel,
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .work-item,
  .auth-card,
  .auth-account-map,
  .model-panel,
  .model-view-area,
  .model-control-block
) {
  color: var(--ink);
  border-color: rgba(183, 255, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.08), transparent 34%),
    rgba(10, 20, 18, 0.88);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.08), 0 28px 70px rgba(0, 0, 0, 0.34);
}

:root[data-theme="dark"] :is(
  .service-card,
  .gallery-item,
  .quality-card,
  .process-grid article,
  .testimonial-card,
  .faq-list details,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .fast-route-card,
  .auth-card
):hover {
  border-color: rgba(92, 200, 255, 0.48);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.24), 0 0 38px rgba(92, 200, 255, 0.12), 0 32px 82px rgba(0, 0, 0, 0.44);
}

:root[data-theme="dark"] :is(.section-heading p, .service-card-body p, .gallery-item small, .gallery-case-meta, .quote-copy p, .form-help, .faq-list p, .auth-copy p, .model-panel p) {
  color: var(--muted);
}

:root[data-theme="dark"] :is(input, textarea, select) {
  color: var(--ink);
  border-color: rgba(183, 255, 232, 0.18);
  background: rgba(255, 253, 247, 0.08);
}

:root[data-theme="dark"] :is(input, textarea, select)::placeholder {
  color: rgba(248, 241, 220, 0.52);
}

:root[data-theme="dark"] .quote-preview,
:root[data-theme="dark"] .request-preview,
:root[data-theme="dark"] .lightbox {
  border-color: rgba(183, 255, 232, 0.18);
  background: #1a110b;
}

:root[data-theme="dark"] .quote-preview-shell {
  border-color: rgba(183, 255, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.1), transparent 38%),
    rgba(7, 17, 15, 0.78);
  box-shadow: inset 0 0 0 1px rgba(92, 200, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .quote-copy-button,
:root[data-theme="dark"] .quote-whatsapp-button {
  border-color: rgba(16, 22, 20, 0.92);
  box-shadow: 0 5px 0 rgba(3, 7, 6, 0.95), 0 0 26px rgba(92, 200, 255, 0.1);
}

:root[data-theme="dark"] .quote-copy-button {
  color: #f8f1dc;
  border-color: rgba(183, 255, 232, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .site-build-swarm {
  opacity: 0.24;
  filter: drop-shadow(0 0 12px rgba(92, 200, 255, 0.14));
}

:root[data-theme="dark"] .assistant-panel {
  filter: drop-shadow(0 0 26px rgba(92, 200, 255, 0.16));
}

:root[data-theme="dark"] .quote-page .sequence-guide {
  border-color: rgba(92, 200, 255, 0.22);
  background: rgba(6, 13, 11, 0.88);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.08), 0 20px 48px rgba(0, 0, 0, 0.38);
}

:root[data-theme="dark"] .sequence-guide li,
:root[data-theme="dark"] .sequence-guide li:nth-child(1),
:root[data-theme="dark"] .sequence-guide li:nth-child(2),
:root[data-theme="dark"] .sequence-guide li:nth-child(3),
:root[data-theme="dark"] .sequence-guide li:nth-child(4) {
  color: var(--ink);
  border-color: rgba(183, 255, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.08), transparent 48%),
    rgba(12, 24, 21, 0.92);
  opacity: 0.9;
}

:root[data-theme="dark"] .sequence-guide li.is-active,
:root[data-theme="dark"] .sequence-guide li.is-complete {
  border-color: rgba(255, 216, 77, 0.62);
  box-shadow: 0 0 26px rgba(255, 216, 77, 0.12);
  opacity: 1;
}

:root[data-theme="dark"] .form-stage,
:root[data-theme="dark"] .config-step,
:root[data-theme="dark"] .config-step-scope,
:root[data-theme="dark"] .config-step-detail,
:root[data-theme="dark"] .config-step-task,
:root[data-theme="dark"] .contact-strip a,
:root[data-theme="dark"] .quote-assistant {
  color: var(--ink);
  border-color: rgba(183, 255, 232, 0.18);
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.08), transparent 36%),
    rgba(10, 20, 18, 0.92);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.08), 0 20px 52px rgba(0, 0, 0, 0.3);
}

:root[data-theme="dark"] .quote-page .quote-form {
  background: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .form-stage.is-active {
  border-color: rgba(92, 200, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(92, 200, 255, 0.14), transparent 34%),
    rgba(10, 20, 18, 0.94);
  box-shadow: 0 0 0 1px rgba(92, 200, 255, 0.16), 0 0 34px rgba(92, 200, 255, 0.1), 0 20px 52px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] .form-stage.is-complete {
  border-color: rgba(0, 169, 107, 0.5);
  background:
    linear-gradient(135deg, rgba(0, 169, 107, 0.12), transparent 34%),
    rgba(10, 20, 18, 0.94);
}

:root[data-theme="dark"] .quote-next-copy span {
  color: var(--glovo-yellow);
}

:root[data-theme="dark"] .quote-next-copy strong {
  color: var(--ink);
}

:root[data-theme="dark"] .quote-next-copy p {
  color: var(--muted);
}

:root[data-theme="dark"] .quote-next-panel[data-next-state="ready"] {
  border-color: rgba(0, 169, 107, 0.52);
  background:
    linear-gradient(135deg, rgba(0, 169, 107, 0.14), transparent 34%),
    rgba(10, 20, 18, 0.94);
}

:root[data-theme="dark"] .stage-head p,
:root[data-theme="dark"] .config-step-heading p,
:root[data-theme="dark"] .quote-launch-node small {
  color: var(--muted);
}

:root[data-theme="dark"] .proof-list span {
  color: #dcebe5;
}

:root[data-theme="dark"] .quote-launch-node {
  color: var(--ink);
  border-color: rgba(183, 255, 232, 0.2);
  background: rgba(12, 24, 21, 0.94);
  box-shadow: 0 7px 0 #050807, 0 0 28px rgba(92, 200, 255, 0.08);
}

:root[data-theme="dark"] .quote-launch-node:hover {
  background: rgba(18, 42, 35, 0.98);
}

:root[data-theme="dark"] .quote-launch-node.is-active {
  border-color: rgba(92, 200, 255, 0.58);
  background: rgba(16, 42, 35, 0.98);
  box-shadow: 0 7px 0 #050807, 0 0 34px rgba(92, 200, 255, 0.18);
}

:root[data-theme="dark"] .quote-launch-node span {
  color: #1a110b;
}

:root[data-theme="dark"] .fast-route-card strong {
  color: #fff6c8;
}

:root[data-theme="dark"] .fast-route-card span {
  color: #1a110b;
  background: rgba(255, 216, 77, 0.82);
}

/* Dutch professional calm layer: keeps content and navigation intact while removing visual noise. */
:root {
  --ink: #161816;
  --muted: #5f665f;
  --paper: #f8f7f1;
  --soft: #efeee7;
  --line: #d9d6cb;
  --forest: #4a2f1e;
  --forest-2: #2b1a10;
  --clay: #766a5d;
  --copper: #9b6a43;
  --sage: #c8ae88;
  --smoke: #647574;
  --cream: #fffdf7;
  --gold: #b99b67;
  --glovo-yellow: #d8b979;
  --play-green: #8b5e3c;
  --cartoon-red: #a96a58;
  --cartoon-blue: #6d9093;
  --cartoon-ink: #161816;
  --neon-blue: #6d9093;
  --neon-mint: #d8c2a2;
  --neon-gold: #d8b979;
  --shadow: 0 18px 44px rgba(22, 24, 22, 0.1);
  --soft-shadow: 0 12px 30px rgba(22, 24, 22, 0.075);
  --lift-shadow: 0 20px 54px rgba(22, 24, 22, 0.12);
  --section-y: clamp(64px, 8vw, 104px);
  --section-y-tight: clamp(46px, 6vw, 76px);
}

body {
  color: var(--ink);
  background: #f8f7f1;
}

:is(h1, h2, h3, h4, .hero h1, .section-heading h2, .runway-copy h2, .world-copy h2, .story-copy h2, .assistant-head h2, .assistant-template-head strong, .material-panel strong, .auth-copy h1) {
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  letter-spacing: 0;
}

.scroll-progress {
  height: 2px;
  background: var(--forest);
  box-shadow: none;
}

.site-header {
  background: rgba(248, 247, 241, 0.96);
  box-shadow: 0 10px 26px rgba(22, 24, 22, 0.055);
}

.site-header::after,
.hero::before,
.hero::after,
.renovation-compass-section::before,
.renovation-compass-section::after,
.kinetic-renovation-section::before,
.kinetic-renovation-section::after,
.renovation-world-section::before,
.renovation-world-section::after,
.runway-section::before,
.assistant-card::before,
.assistant-card::after {
  display: none !important;
}

.site-build-swarm,
.build-sticker-layer,
.cartoon-build-marquee,
.kinetic-word-wall,
.kinetic-tools,
.story-orbit,
.assistant-orbit,
.compass-gif-badges,
.compass-scanline {
  display: none !important;
}

.hero {
  min-height: min(760px, calc(100svh - 86px));
  background: #1a110b;
}

.hero-image {
  filter: saturate(0.72) contrast(0.92) brightness(0.78);
  opacity: 1 !important;
  transform: none !important;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(26, 17, 11, 0.88) 0%, rgba(26, 17, 11, 0.62) 46%, rgba(26, 17, 11, 0.28) 100%),
    linear-gradient(180deg, rgba(26, 17, 11, 0.18), rgba(26, 17, 11, 0.72));
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.15rem, 8.8vw, 7.1rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

:is(.eyebrow, .hero .eyebrow, .assistant-head span, .world-copy .eyebrow, .runway-copy .eyebrow, .material-lab-copy .eyebrow) {
  color: var(--muted);
  background: rgba(7, 31, 63, 0.72) !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero .eyebrow,
.hero-proofline span,
.hero-facts dt,
.hero-facts dd {
  color: rgba(255, 253, 247, 0.78);
}

:is(.button, .nav-cta, .mobile-menu-action, .auth-link, .theme-toggle, .language-toggle, .filter-button, .journey-pilot-cta, .gallery-model-link, .gallery-quote-link, .quote-copy-button, .quote-whatsapp-button, .assistant-actions .button, .assistant-form .button, .assistant-quick button, .assistant-template-head button, .mobile-quick-bar a, .fast-route-card button, .material-tabs button) {
  border-width: 1px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  clip-path: none !important;
  transform: none;
}

:is(.button.primary, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .assistant-form .button, .assistant-actions .button:first-child, .journey-pilot-cta) {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

:is(.button.ghost, .button.secondary, .auth-link, .theme-toggle, .language-toggle, .filter-button, .gallery-model-link, .gallery-quote-link, .assistant-quick button, .assistant-template-head button, .assistant-actions .button, .mobile-quick-bar a) {
  color: var(--forest) !important;
  border-color: rgba(22, 24, 22, 0.16) !important;
  background: rgba(255, 253, 247, 0.88) !important;
}

:is(.button:hover, .button:focus-visible, .nav-cta:hover, .nav-cta:focus-visible, .filter-button:hover, .filter-button:focus-visible, .assistant-quick button:hover, .assistant-quick button:focus-visible, .gallery-model-link:hover, .gallery-quote-link:hover) {
  box-shadow: 0 10px 24px rgba(22, 24, 22, 0.08) !important;
  transform: translateY(-1px);
}

:is(.service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .runway-card, .fast-route-card, .quote-cockpit, .quote-next-panel, .quote-launch-node, .form-stage, .config-step, .config-step-scope, .config-step-detail, .config-step-task, .quote-assistant, .material-stage, .material-panel, .quality-proof-board, .atelier-photo, .impact-rail-inner > div, .assistant-card, .assistant-briefing, .assistant-template, .assistant-messages, .assistant-message, .assistant-notice, .auth-card, .auth-account-map, .model-panel, .gallery-admin-card) {
  border-width: 1px !important;
  border-color: rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  box-shadow: var(--soft-shadow) !important;
  clip-path: none !important;
}

:is(.service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .fast-route-card, .form-stage, .config-step, .config-step-scope, .config-step-detail, .config-step-task, .quote-assistant, .material-panel, .assistant-briefing, .assistant-template, .assistant-messages, .auth-card, .auth-account-map, .model-panel) {
  background: rgba(255, 253, 247, 0.92) !important;
}

:is(.hero-service-stack, .journey-pilot, .kinetic-board, .runway-device, .work-proof-cockpit, .quote-cockpit, .quote-next-panel, .quality-score-strip, .assistant-card) {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.06), rgba(255, 253, 247, 0.02)),
    #2b1a10 !important;
  color: #fffdf7;
  border-color: rgba(255, 253, 247, 0.14) !important;
  box-shadow: 0 18px 44px rgba(22, 24, 22, 0.16) !important;
}

:is(.hero-service-stack a, .kinetic-chip, .world-step, .runway-card, .assistant-route span, .assistant-field, .assistant-trust span, .hero-proofline span, .hero-facts div, .proof-list span, .sequence-guide li, .work-proof-flow span, .quote-cockpit-pill) {
  border-width: 1px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  clip-path: none !important;
}

:is(.kinetic-chip.is-active, .assistant-route span.is-active, .sequence-guide li.is-active, .sequence-guide li.is-complete, .quote-cockpit-pill.is-active, .work-proof-flow span.is-active, .filter-button.is-active, .material-tabs button.is-active) {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

:is(.sequence-guide li.is-active, .sequence-guide li.is-complete, .quote-cockpit-pill.is-active) :is(span, strong, small, p) {
  color: inherit !important;
}

:is(.service-card:hover, .gallery-item:hover, .quality-check-card:hover, .process-grid article:hover, .faq-list details:hover, .runway-card:hover, .fast-route-card:hover, .option-card:hover, .sub-option-card:hover, .micro-option-card:hover) {
  border-color: rgba(22, 24, 22, 0.22) !important;
  box-shadow: var(--shadow) !important;
  transform: translateY(-2px);
}

:is(.intro-band, .renovation-compass-section, .kinetic-renovation-section, .renovation-story-section, .runway-section, .atelier-section, .material-lab, .quality-dossier-section, .quote-page .quote-hero, .quote-page .quote-form) {
  background: transparent !important;
}

.intro-band {
  background: #f8f7f1 !important;
  border-bottom: 1px solid rgba(22, 24, 22, 0.1);
}

.intro-inner {
  gap: 12px;
  padding: 18px 0;
}

.intro-inner a,
.intro-inner a:first-child {
  min-height: 112px;
  padding: 20px;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 10px 24px rgba(22, 24, 22, 0.06);
}

.intro-inner a:hover,
.intro-inner a:focus-visible {
  background: #fffdf7;
  box-shadow: 0 14px 30px rgba(22, 24, 22, 0.09);
  transform: translateY(-1px);
}

.intro-inner span {
  color: var(--muted) !important;
}

.intro-inner strong {
  color: var(--ink);
}

.quote-launch-map {
  min-height: auto !important;
  padding: 16px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
}

.quote-launch-map::before,
.quote-launch-map::after,
.quote-launch-path,
.quote-launch-path::after {
  display: none !important;
}

.quote-launch-head {
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22, 24, 22, 0.1);
}

.quote-launch-head span,
.quote-launch-head strong {
  min-height: 34px !important;
  color: var(--forest) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(248, 247, 241, 0.86) !important;
  box-shadow: none !important;
}

.quote-launch-head strong::before {
  width: 8px !important;
  height: 8px !important;
  border: 0 !important;
  background: var(--forest) !important;
  box-shadow: none !important;
  animation: none !important;
}

.quote-launch-node,
.node-scope,
.node-context,
.node-send,
.quote-launch-node:hover,
.quote-launch-node.is-active {
  width: 100% !important;
  min-height: 86px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 5px 12px !important;
  align-content: center !important;
  justify-self: stretch !important;
  margin: 0 !important;
  padding: 14px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.quote-launch-node:hover,
.quote-launch-node:focus-visible,
.quote-launch-node.is-active {
  border-color: rgba(22, 24, 22, 0.22) !important;
  box-shadow: 0 10px 24px rgba(22, 24, 22, 0.08) !important;
}

.quote-launch-node span {
  grid-row: span 2;
  width: auto !important;
  height: auto !important;
  padding: 0 0 5px !important;
  color: #f6fbff !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

.quote-launch-node.is-complete span::after {
  border-color: #fffdf7 !important;
}

.quote-launch-node strong,
.quote-launch-node small {
  color: inherit !important;
}

.kinetic-renovation-section {
  color: var(--ink) !important;
  background: #f8f7f1 !important;
}

.kinetic-copy h2 {
  max-width: 12ch;
  color: var(--ink) !important;
  font-size: clamp(2.7rem, 5vw, 5.4rem) !important;
  line-height: 0.98;
}

.kinetic-copy p:not(.eyebrow) {
  color: var(--muted) !important;
}

.kinetic-board {
  min-height: auto !important;
  padding: 16px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
  transform: none !important;
}

.kinetic-board::before,
.kinetic-route-line,
.kinetic-route-line::after {
  display: none !important;
}

.kinetic-board-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22, 24, 22, 0.1);
}

.kinetic-board-head span,
.kinetic-board-head strong {
  min-height: 34px !important;
  color: var(--forest) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(248, 247, 241, 0.86) !important;
  box-shadow: none !important;
}

.kinetic-board-head strong::before {
  width: 8px !important;
  height: 8px !important;
  border: 0 !important;
  background: var(--forest) !important;
  box-shadow: none !important;
  animation: none !important;
}

.kinetic-map {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: stretch !important;
  min-height: auto !important;
  padding: 14px 0 0 !important;
}

.kinetic-chip,
.kinetic-chip:nth-of-type(2),
.kinetic-chip:nth-of-type(3),
.kinetic-chip:nth-of-type(4),
.kinetic-chip:hover {
  min-height: 156px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.kinetic-chip:hover,
.kinetic-chip:focus-visible {
  border-color: rgba(22, 24, 22, 0.22) !important;
  box-shadow: 0 10px 24px rgba(22, 24, 22, 0.08) !important;
}

.kinetic-chip.is-active {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

.kinetic-chip span {
  width: 32px !important;
  height: 32px !important;
  color: #fffdf7 !important;
  border: 0 !important;
  background: var(--forest) !important;
}

.kinetic-chip.is-active span {
  color: var(--forest) !important;
  background: #fffdf7 !important;
}

.kinetic-chip strong {
  color: inherit !important;
  font-size: clamp(1.15rem, 1.6vw, 1.42rem) !important;
  line-height: 1.08 !important;
}

.kinetic-chip small {
  color: inherit !important;
  opacity: 0.74;
}

.renovation-compass-section {
  color: var(--ink) !important;
  background: #f8f7f1 !important;
}

.compass-visual,
.compass-panel {
  min-height: 0 !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
  transform: none !important;
}

.compass-visual::before,
.compass-visual::after {
  display: none !important;
}

.compass-visual img {
  filter: saturate(0.78) contrast(0.94) brightness(0.92) !important;
  opacity: 1 !important;
  transform: none !important;
}

.compass-hotspots {
  right: 14px !important;
  bottom: 14px !important;
  left: 14px !important;
}

.compass-hotspots button,
.compass-hotspots button:hover,
.compass-hotspots button.is-active {
  min-height: 74px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: none !important;
  transform: none !important;
}

.compass-hotspots button:hover,
.compass-hotspots button:focus-visible,
.compass-hotspots button.is-active {
  border-color: var(--forest) !important;
}

.compass-hotspots button.is-active {
  color: #fffdf7 !important;
  background: var(--forest) !important;
}

.compass-hotspots span {
  width: 32px !important;
  height: 32px !important;
  color: #fffdf7 !important;
  background: var(--forest) !important;
}

.compass-hotspots button.is-active span {
  color: var(--forest) !important;
  background: #fffdf7 !important;
}

.compass-hotspots small {
  color: inherit !important;
  opacity: 0.72;
}

.compass-panel {
  padding: clamp(22px, 4vw, 46px) !important;
}

.compass-panel h2 {
  color: var(--ink) !important;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(2.45rem, 4.6vw, 5.2rem) !important;
  line-height: 0.98 !important;
}

.compass-panel > p {
  color: var(--muted) !important;
}

.compass-route-card {
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
}

.compass-route-card > span {
  color: var(--muted) !important;
}

.compass-steps li {
  color: var(--ink) !important;
}

.compass-route-card .button {
  color: #fffdf7 !important;
  border: 1px solid var(--forest) !important;
  border-radius: 8px !important;
  background: var(--forest) !important;
  box-shadow: none !important;
}

.compass-proof span {
  color: var(--forest) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: none !important;
}

.renovation-world-section {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.86fr) !important;
  align-items: center !important;
  align-content: center !important;
  gap: clamp(28px, 5vw, 72px) !important;
  min-height: min(780px, calc(100svh - 68px)) !important;
  padding: clamp(68px, 7vw, 104px) clamp(18px, 7vw, 108px) !important;
  scroll-margin-top: 88px;
  background: #1a110b !important;
}

.world-scrim {
  display: none;
}

.world-copy {
  grid-column: 1 !important;
  align-self: center !important;
  justify-self: start !important;
  width: min(100%, 640px);
  max-width: 640px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.world-copy h2 {
  max-width: 12.5ch;
  margin-bottom: 18px;
  font-size: clamp(2.72rem, 4.7vw, 5.05rem) !important;
  line-height: 0.98;
}

.world-copy p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.8);
}

.world-steps {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  max-width: 560px;
  margin-top: 24px !important;
}

.world-step,
.world-step:nth-child(2),
.world-step:nth-child(3) {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  min-height: 0 !important;
  padding: 14px !important;
  color: var(--ink) !important;
  border-color: rgba(255, 253, 247, 0.16) !important;
  background: rgba(255, 253, 247, 0.94) !important;
  transform: none !important;
}

.world-step span {
  grid-row: span 2;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 0 5px !important;
  color: #f6fbff !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

.world-step small {
  margin-top: 0 !important;
}

.world-plan-board {
  position: relative !important;
  top: auto !important;
  grid-column: 2 !important;
  align-self: center !important;
  justify-self: end !important;
  width: min(500px, 36vw) !important;
  transform: none !important;
  border-width: 1px !important;
  border-color: rgba(255, 253, 247, 0.18) !important;
  border-radius: 8px !important;
  background: #1a110b !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18) !important;
}

.story-stage {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(255, 253, 247, 0.88)),
    #fffdf7 !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  box-shadow: var(--soft-shadow) !important;
}

.story-stage::before,
.story-stage::after,
.renovation-story-section::before {
  display: none !important;
}

.story-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.2vw, 5.5rem) !important;
  line-height: 0.98;
}

.story-layer {
  border-width: 1px !important;
  border-color: rgba(22, 24, 22, 0.14) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: 0 12px 28px rgba(22, 24, 22, 0.08) !important;
  clip-path: none !important;
  transform: none !important;
}

.story-progress {
  height: 10px !important;
  border: 1px solid rgba(22, 24, 22, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(22, 24, 22, 0.08) !important;
  box-shadow: none !important;
}

.story-progress span {
  border-radius: inherit !important;
  background: var(--forest) !important;
  box-shadow: none !important;
}

.story-stage-labels span {
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.14) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: none !important;
  clip-path: none !important;
}

.story-cta {
  color: #fffdf7 !important;
  border: 1px solid var(--forest) !important;
  border-radius: 8px !important;
  background: var(--forest) !important;
  box-shadow: none !important;
  transform: none !important;
}

.story-photo img {
  filter: saturate(0.82) contrast(0.96);
}

.quote-cockpit::after,
.quote-next-panel::after {
  display: none !important;
}

.quote-cockpit-progress,
.quote-next-status {
  min-width: 78px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  align-content: center;
  justify-self: start;
  padding: 8px 12px;
  color: #fffdf7;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.08);
  box-shadow: none;
}

.quote-cockpit-progress span,
.quote-next-status strong,
.quote-next-status span {
  color: inherit;
  font-weight: 900;
  line-height: 1;
}

.quote-next-status {
  color: var(--forest);
  border-color: rgba(22, 24, 22, 0.13);
  background: rgba(248, 247, 241, 0.9);
}

.quote-next-panel::before {
  right: 12px !important;
  bottom: 8px !important;
  left: 12px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg, var(--forest), var(--forest)) 0 / var(--quote-next-progress, 0%) 100% no-repeat,
    rgba(22, 24, 22, 0.1) !important;
}

.quote-next-action {
  color: #fffdf7 !important;
  border: 1px solid var(--forest) !important;
  border-radius: 8px !important;
  background: var(--forest) !important;
  box-shadow: none !important;
  transform: none !important;
}

.quote-cockpit,
.quote-next-panel,
.fast-request-panel {
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
  clip-path: none !important;
}

.fast-request-panel::after {
  display: none !important;
}

.quote-cockpit-copy > span,
.quote-next-copy span,
.fast-request-copy span {
  color: var(--muted) !important;
}

.quote-cockpit-copy strong,
.quote-next-copy strong,
.fast-request-copy h3 {
  color: var(--ink) !important;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.quote-cockpit-copy p,
.quote-next-copy p,
.fast-request-copy p {
  color: var(--muted) !important;
}

.quote-cockpit-progress {
  color: var(--forest);
  border-color: rgba(22, 24, 22, 0.13);
  background: rgba(248, 247, 241, 0.9);
}

.quote-cockpit-pills span,
.quote-cockpit-pills span.is-active,
.quote-cockpit-pills span.is-complete {
  color: var(--forest) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(248, 247, 241, 0.86) !important;
  box-shadow: none !important;
}

.quote-cockpit-pills span.is-active,
.quote-cockpit-pills span.is-complete {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

.fast-route-grid {
  gap: 10px !important;
}

.fast-route-card,
.fast-route-card:hover,
.fast-route-card.is-active {
  min-height: 116px !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.fast-route-card:hover,
.fast-route-card:focus-visible,
.fast-route-card.is-active {
  border-color: rgba(22, 24, 22, 0.22) !important;
  box-shadow: 0 10px 24px rgba(22, 24, 22, 0.08) !important;
}

.fast-route-card span {
  color: var(--forest) !important;
  border-radius: 8px !important;
  background: rgba(224, 195, 154, 0.72) !important;
}

.sequence-reward,
.assistant-reward {
  color: var(--forest) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.96) !important;
  box-shadow: 0 12px 28px rgba(22, 24, 22, 0.08) !important;
  clip-path: none !important;
}

.assistant-reward span {
  box-shadow: none !important;
}

.world-plan-board,
.story-photo,
.material-stage img,
.gallery-photo-button,
.quality-proof-media,
.atelier-photo {
  border-radius: 8px !important;
  overflow: hidden;
}

.world-plan-board,
.story-stage,
.runway-stage,
.material-stage,
.quality-proof-board {
  box-shadow: var(--soft-shadow) !important;
}

:is(.swarm-tool, .build-sticker, .kinetic-tool, .assistant-tool, .story-orbit-dot, .reward-open .assistant-launch, .sequence-reward, .assistant-reward) {
  animation: none !important;
}

:is(.assistant-launch-icon, .assistant-field em, .assistant-reward span, .status-dot) {
  box-shadow: none !important;
}

.floating-call {
  color: #fffdf7;
  width: 56px;
  min-height: 56px;
  padding: 0;
  border-width: 1px;
  border-color: var(--forest);
  border-radius: 50% !important;
  background: var(--forest);
  box-shadow: 0 14px 34px rgba(22, 24, 22, 0.16);
}

.floating-call::after {
  display: none;
}

:root[data-journey-pilot-state="visible"] .floating-call {
  bottom: 94px !important;
}

.assistant-launch-icon {
  color: var(--forest);
  border-width: 1px;
  border-color: rgba(255, 253, 247, 0.48);
  background: #fffdf7;
}

.assistant-launch-copy small {
  color: rgba(255, 253, 247, 0.68);
}

.assistant-launch-copy {
  display: none;
}

.journey-pilot {
  right: 24px !important;
  bottom: 18px !important;
  left: auto !important;
  width: min(720px, calc(100vw - 48px)) !important;
  grid-template-columns: minmax(150px, 0.9fr) minmax(220px, 1.2fr) auto !important;
  gap: 10px !important;
  min-height: 64px !important;
  padding: 10px 12px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.14) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.96) !important;
  box-shadow: 0 14px 34px rgba(22, 24, 22, 0.12) !important;
}

.journey-pilot > strong,
.journey-pilot-meter {
  display: none !important;
}

.journey-pilot-intel {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 8px 10px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.journey-pilot-intel::after {
  display: none !important;
}

.journey-pilot-intel span {
  width: 40px !important;
  height: 40px !important;
  color: #fffdf7 !important;
  border: 0 !important;
  background: var(--forest) !important;
  box-shadow: none !important;
}

.journey-pilot-intel strong {
  color: var(--ink) !important;
}

.journey-pilot-intel small {
  color: var(--muted) !important;
}

.journey-pilot-steps {
  gap: 6px !important;
}

.journey-pilot-steps a {
  min-height: 42px !important;
  color: var(--forest) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(248, 247, 241, 0.82) !important;
  box-shadow: none !important;
}

.journey-pilot-steps a.is-active,
.journey-pilot-steps a:hover,
.journey-pilot-steps a:focus-visible {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

.journey-pilot-steps span {
  width: 24px !important;
  height: 24px !important;
  color: inherit !important;
  border: 1px solid currentColor !important;
  background: transparent !important;
}

.journey-pilot-steps small {
  color: inherit !important;
}

.journey-pilot-cta {
  min-height: 42px !important;
  padding: 0 14px !important;
}

.assistant-card {
  max-width: 480px;
}

.quote-assistant,
.quote-assistant span,
.quote-assistant strong,
.quote-assistant p {
  color: var(--ink) !important;
}

.quote-assistant {
  background: rgba(255, 253, 247, 0.94) !important;
}

.assistant-briefing-head strong {
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.assistant-head span {
  color: rgba(255, 253, 247, 0.66) !important;
}

.assistant-briefing-head::after {
  background: var(--forest);
}

.assistant-field em,
.assistant-field.is-complete em {
  color: #fffdf7;
  border-color: var(--forest);
  background: var(--forest);
}

.assistant-message.is-user {
  color: #fffdf7;
  background: var(--forest);
}

.assistant-message.is-assistant {
  background: #fffdf7;
}

.mobile-quick-progress span,
.runway-device-meter span,
.journey-pilot-meter span,
.quote-cockpit-meter span,
.work-proof-meter span {
  background: var(--forest) !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: clamp(2.68rem, 12vw, 4.6rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  :root[data-journey-index="0"] .floating-call,
  :root:not([data-journey-index]) .floating-call {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .floating-call {
    top: 132px;
    right: 14px;
    bottom: auto;
    width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50% !important;
  }

  .assistant-launch-copy {
    display: none;
  }

  .kinetic-renovation-section {
    padding: 58px 14px 72px !important;
  }

  .kinetic-copy h2 {
    max-width: 11.5ch;
    font-size: clamp(2.48rem, 11vw, 4.2rem) !important;
  }

  .kinetic-map {
    grid-template-columns: 1fr !important;
  }

  .kinetic-chip,
  .kinetic-chip:nth-of-type(2),
  .kinetic-chip:nth-of-type(3),
  .kinetic-chip:nth-of-type(4),
  .kinetic-chip:hover {
    min-height: 104px !important;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: center;
  }

  .kinetic-chip span {
    grid-row: span 2;
  }

  .renovation-world-section {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    min-height: auto !important;
    padding: 58px 14px 72px !important;
  }

  .world-copy,
  .world-plan-board {
    grid-column: 1 !important;
  }

  .world-copy {
    order: 1;
    width: 100%;
    max-width: none !important;
  }

  .world-copy h2 {
    max-width: 11.5ch;
    font-size: clamp(2.54rem, 11.2vw, 4.25rem) !important;
  }

  .world-plan-board {
    order: 2;
    width: 100% !important;
    max-width: 520px;
    justify-self: stretch !important;
  }

  .hero-actions,
  .kinetic-actions,
  .runway-actions {
    gap: 10px;
  }

  :is(.service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .quote-cockpit, .quote-next-panel, .form-stage, .config-step, .assistant-card, .assistant-briefing, .assistant-template) {
    box-shadow: 0 10px 24px rgba(22, 24, 22, 0.08) !important;
  }
}

:root[data-theme="dark"] {
  --ink: #f3eadf;
  --muted: #c7b8a5;
  --paper: #18110c;
  --soft: #21170f;
  --line: #3a281a;
  --forest: #e0c39a;
  --forest-2: #f6ead7;
  --cream: #1d130c;
  --glovo-yellow: #d8b979;
  --play-green: #c7955f;
  --cartoon-blue: #b59a78;
  --cartoon-red: #a97d6e;
}

:root[data-theme="dark"] body {
  background: #18110c;
}

:root[data-theme="dark"] :is(.site-header, .nav-shell) {
  background: rgba(24, 17, 12, 0.96);
}

:root[data-theme="dark"] :is(.service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .fast-route-card, .form-stage, .config-step, .config-step-scope, .config-step-detail, .config-step-task, .quote-assistant, .material-panel, .assistant-briefing, .assistant-template, .assistant-messages, .auth-card, .auth-account-map, .model-panel) {
  color: var(--ink);
  border-color: rgba(246, 234, 215, 0.14) !important;
  background: rgba(33, 23, 15, 0.94) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24) !important;
}

:root[data-theme="dark"] :is(.button.primary, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .assistant-form .button, .assistant-actions .button:first-child, .journey-pilot-cta, .kinetic-chip.is-active, .assistant-route span.is-active, .sequence-guide li.is-active, .sequence-guide li.is-complete, .quote-cockpit-pill.is-active, .work-proof-flow span.is-active, .filter-button.is-active, .material-tabs button.is-active) {
  color: #18110c !important;
  border-color: #e0c39a !important;
  background: #e0c39a !important;
}

:root[data-theme="dark"] :is(.button.ghost, .button.secondary, .auth-link, .theme-toggle, .language-toggle, .filter-button, .gallery-model-link, .gallery-quote-link, .assistant-quick button, .assistant-template-head button, .assistant-actions .button, .mobile-quick-bar a) {
  color: #f3eadf !important;
  border-color: rgba(246, 234, 215, 0.16) !important;
  background: rgba(246, 234, 215, 0.07) !important;
}

/* Final black lock: this intentionally comes after the older oak fallback. */
:root body,
:root[data-theme="dark"] body {
  color: var(--black-text, #f6efe2) !important;
  background: linear-gradient(180deg, #020202 0%, #060708 44%, #030303 100%) !important;
}

:root body :is(.site-header, .mobile-quick-bar, .quote-page .sequence-guide) {
  background: rgba(3, 3, 3, 0.92) !important;
  border-color: rgba(241, 213, 154, 0.14) !important;
}

:root body .topbar {
  color: #f6efe2 !important;
  background: #030303 !important;
  border-bottom: 1px solid rgba(241, 213, 154, 0.18) !important;
}

:root body .topbar :is(a, span) {
  color: #f6efe2 !important;
}

:root body .topbar-right span {
  color: #f1d59a !important;
  border-color: rgba(241, 213, 154, 0.22) !important;
  background: rgba(241, 213, 154, 0.08) !important;
}

:root body .site-header .brand,
:root body .nav-shell .brand,
:root body a.brand,
:root body .site-header .nav-shell a.brand {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.22) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

:root body .site-menu > a,
:root body .auth-link,
:root body .theme-toggle,
:root body .language-toggle {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.16) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

:root body :is(.button.primary, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .journey-pilot-cta, .filter-button.is-active, .material-tabs button.is-active, .assistant-send-button) {
  color: #070707 !important;
  border-color: #f1d59a !important;
  background: linear-gradient(135deg, #f1d59a, #d1ae72) !important;
  box-shadow: 0 14px 34px rgba(209, 174, 114, 0.22) !important;
}

:root body :is(.button.secondary, .button.ghost, .filter-button, .gallery-model-link, .gallery-quote-link, .mobile-quick-bar a, .auth-link, .theme-toggle, .assistant-media-button) {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

:root body :is(.hero, .intro-band, .section, .services, .material-lab, .work-section, .quality-dossier-section, .faq-section, .testimonials, .quote-teaser-section, .skill-showcase, .atelier-section, .runway-section, .renovation-world-section, .renovation-story-section, .impact-rail, .renovation-compass-section, .quote-page-section, .auth-shell, .model-shell) {
  color: #f6efe2 !important;
  background: #030303 !important;
}

:root body .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #030303 98%) !important;
}

:root body .hero h1,
:root body :is(.section-heading h2, .section-text h2, .compass-panel h2, .kinetic-copy h2, .world-copy h2, .story-copy h2, .runway-copy h2, .quality-dossier-head h2, .quote-copy h1, .quote-copy h2, .skill-copy h2, .atelier-copy h2, .auth-copy h1, .model-panel h1) {
  color: #fffaf0 !important;
}

:root body :is(.section-heading p, .section-text p, .compass-panel p, .kinetic-copy p, .world-copy p, .story-copy p, .runway-copy p, .quality-dossier-head p, .quote-copy p, .skill-copy p, .atelier-copy p, .auth-copy p, .model-panel p, .faq-list p, .check-list li, .hero-copy, .hero-proofline, .hero-facts) {
  color: #b8b0a2 !important;
}

:root body :is(.hero-service-stack, .journey-pilot, .kinetic-board, .runway-device, .work-proof-cockpit, .quote-cockpit, .quote-next-panel, .quality-score-strip, .service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .runway-card, .fast-route-card, .option-card, .sub-option-card, .micro-option-card, .quote-launch-node, .material-stage, .quality-proof-board, .atelier-photo, .skill-panel, .skill-media, .auth-card, .model-panel, .model-view-area) {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
}

:root body .gallery-caption {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.16) !important;
  background: rgba(8, 10, 11, 0.94) !important;
}

:root body .gallery-caption small,
:root body .gallery-caption p {
  color: #b8b0a2 !important;
}

:root body :is(.service-card-body > span, .quote-launch-head span, .quote-launch-head strong, .sequence-guide span, .material-specs span, .quality-score-strip span, .work-proof-flow span) {
  color: #f1d59a !important;
  border-color: rgba(241, 213, 154, 0.18) !important;
  background: rgba(241, 213, 154, 0.08) !important;
}

:root body .assistant-card.assistant-simple-chat {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #070809 !important;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58) !important;
}

/* Absolute monochrome lock: black, white, and neutral grays only. */
:root {
  --mono-black: #000;
  --mono-950: var(--blue-deep);
  --mono-900: #0b0b0b;
  --mono-850: #111;
  --mono-800: #171717;
  --mono-700: #242424;
  --mono-500: #777;
  --mono-300: #c8c8c8;
  --mono-150: #e8e8e8;
  --mono-white: #fff;
  --black-gold: #fff;
  --black-gold-2: #fff;
  --forest: #fff;
  --forest-2: #cfcfcf;
  --clay: #fff;
  --glovo-yellow: #fff;
  --play-green: #fff;
  --cartoon-blue: #fff;
}

:root body,
:root[data-theme="dark"] body {
  color: var(--mono-white) !important;
  background: var(--mono-black) !important;
}

:root body :is(.site-header, .topbar, .nav-shell, .mobile-quick-bar, .quote-page .sequence-guide) {
  color: var(--mono-white) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(0, 0, 0, 0.94) !important;
  box-shadow: none !important;
}

:root body .brand,
:root body .site-header .brand,
:root body .site-header .nav-shell a.brand {
  color: var(--mono-white) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: var(--mono-black) !important;
  box-shadow: none !important;
}

:root body .brand img {
  filter: grayscale(1) contrast(1.18) brightness(1.08) !important;
}

:root body :is(
  .button.primary,
  .nav-cta,
  .mobile-menu-action.primary,
  .mobile-quick-bar a.is-primary,
  .quote-copy-button,
  .quote-whatsapp-button,
  .journey-pilot-cta,
  .filter-button.is-active,
  .material-tabs button.is-active,
  .assistant-send-button,
  .language-toggle button.is-active,
  .kinetic-chip.is-active,
  .sequence-guide li.is-active,
  .sequence-guide li.is-complete,
  .quote-cockpit-pill.is-active,
  .quote-cockpit-pills span.is-active,
  .quote-cockpit-pills span.is-complete,
  .work-proof-flow span.is-active
) {
  color: var(--mono-black) !important;
  border-color: var(--mono-white) !important;
  background: var(--mono-white) !important;
  box-shadow: none !important;
}

:root body :is(
  .button.secondary,
  .button.ghost,
  .site-menu > a,
  .auth-link,
  .theme-toggle,
  .language-toggle,
  .language-toggle button,
  .filter-button,
  .gallery-model-link,
  .gallery-quote-link,
  .mobile-quick-bar a,
  .assistant-media-button,
  .menu-toggle,
  .quote-next-action,
  .material-tabs button,
  .quote-cockpit-pills span
) {
  color: var(--mono-white) !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
  background: var(--mono-900) !important;
  box-shadow: none !important;
}

:root body .menu-toggle span:not(.sr-only),
:root body .status-dot,
:root body .scroll-progress,
:root body .mobile-quick-progress span,
:root body .story-progress span,
:root body .runway-progress span {
  background: var(--mono-white) !important;
  box-shadow: none !important;
}

:root body :is(.hero, .intro-band, .section, .services, .material-lab, .work-section, .quality-dossier-section, .faq-section, .testimonials, .quote-teaser-section, .skill-showcase, .atelier-section, .runway-section, .renovation-world-section, .renovation-story-section, .impact-rail, .renovation-compass-section, .quote-page-section, .auth-shell, .model-shell, .quote-page .quote-hero, .quote-page .quote-form) {
  color: var(--mono-white) !important;
  background: var(--mono-black) !important;
}

:root body :is(.hero h1, h1, h2, h3, .section-heading h2, .section-text h2, .compass-panel h2, .kinetic-copy h2, .world-copy h2, .story-copy h2, .runway-copy h2, .quality-dossier-head h2, .quote-copy h1, .quote-copy h2, .skill-copy h2, .atelier-copy h2, .auth-copy h1, .model-panel h1, .quote-cockpit-copy strong, .quote-next-copy strong) {
  color: var(--mono-white) !important;
}

:root body :is(p, li, small, figcaption, .hero-copy, .hero-proofline, .hero-facts, .section-heading p, .section-text p, .compass-panel p, .kinetic-copy p, .world-copy p, .story-copy p, .runway-copy p, .quality-dossier-head p, .quote-copy p, .skill-copy p, .atelier-copy p, .auth-copy p, .model-panel p, .faq-list p, .check-list li, .service-card-body p, .gallery-caption small, .gallery-caption p, .quote-cockpit-copy p, .quote-next-copy p) {
  color: var(--mono-300) !important;
}

:root body :is(.eyebrow, .hero .eyebrow, .service-card-body > span, .quote-launch-head span, .quote-launch-head strong, .sequence-guide span, .material-specs span, .quality-score-strip span, .work-proof-flow span, .atelier-metrics strong, .quote-cockpit-copy > span, .quote-next-copy span, .quote-next-badge strong, .quote-next-badge span, .assistant-head span[data-assistant-eyebrow], .gallery-proof-tags em) {
  color: var(--mono-white) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  text-shadow: none !important;
}

:root body :is(.hero-service-stack, .journey-pilot, .kinetic-board, .runway-device, .work-proof-cockpit, .quote-cockpit, .quote-next-panel, .quality-score-strip, .service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .runway-card, .fast-route-card, .option-card, .sub-option-card, .micro-option-card, .quote-launch-node, .material-stage, .quality-proof-board, .atelier-photo, .skill-panel, .skill-media, .auth-card, .model-panel, .model-view-area, .quote-launch-map, .form-stage, .config-step, .config-summary, .upload-note, .quote-preview-shell, .assistant-card, .assistant-briefing, .assistant-template, .assistant-messages, .assistant-message, .assistant-notice, .gallery-admin-card) {
  color: var(--mono-white) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: var(--mono-850) !important;
  box-shadow: none !important;
}

:root body :is(.service-card, .gallery-item, .skill-media, .atelier-photo, .material-stage, .quality-proof-board) {
  overflow: hidden;
}

:root body :is(.service-card-body, .gallery-caption, .assistant-card.assistant-simple-chat, .assistant-simple-chat .assistant-messages) {
  color: var(--mono-white) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: var(--mono-900) !important;
}

:root body .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body {
  color: var(--mono-white) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: var(--mono-800) !important;
}

:root body .assistant-simple-chat .assistant-message.is-user .assistant-message-body {
  color: var(--mono-black) !important;
  background: var(--mono-white) !important;
}

:root body :is(.coverage-map path[fill], .coverage-map polygon[fill]) {
  fill: #f5f5f5 !important;
}

:root body :is(.coverage-map path[stroke], .coverage-map line, .coverage-map polyline) {
  stroke: #555 !important;
}

:root body :is(.coverage-label, .coverage-points span) {
  color: var(--mono-black) !important;
  border-color: var(--mono-white) !important;
  background: var(--mono-white) !important;
}

:root body .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), #000 98%) !important;
}

:root[data-map-focus] body .journey-pilot {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 18px) scale(0.98) !important;
}

@media (max-width: 760px) {
  :root body .hero {
    min-height: min(900px, 100svh) !important;
  }

  :root body .hero-content {
    width: calc(100% - 32px) !important;
    margin-right: 16px !important;
    margin-bottom: calc(178px + env(safe-area-inset-bottom)) !important;
    margin-left: 16px !important;
  }

  :root body .hero-copy {
    max-width: 34ch !important;
  }

  :root body .hero-actions,
  :root body .journey-pilot,
  :root body .journey-pilot.is-visible,
  :root body .mobile-quick-status,
  :root body .mobile-quick-progress,
  :root body .mobile-quick-bar a[data-mobile-bar-whatsapp] {
    display: none !important;
  }

  :root body .mobile-quick-bar {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding-top: 8px !important;
  }

  :root body .mobile-quick-bar a {
    min-width: 0 !important;
    padding-inline: 6px !important;
    font-size: 0.78rem !important;
  }
}

:root[data-map-focus] body .journey-pilot {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 18px) scale(0.98) !important;
}

:root body .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.2) !important;
  background: #111416 !important;
}

:root body .assistant-simple-chat .assistant-message.is-user .assistant-message-body {
  color: #071011 !important;
  background: linear-gradient(135deg, #f7e7b6, #d8b979) !important;
}

@media (max-width: 760px) {
  :root body .hero {
    min-height: min(900px, 100svh) !important;
  }

  :root body .hero-content {
    width: calc(100% - 32px) !important;
    margin-right: 16px !important;
    margin-bottom: calc(178px + env(safe-area-inset-bottom)) !important;
    margin-left: 16px !important;
  }

  :root body .hero-copy {
    max-width: 34ch !important;
  }

  :root body .hero-actions,
  :root body .journey-pilot,
  :root body .journey-pilot.is-visible,
  :root body .mobile-quick-status,
  :root body .mobile-quick-progress,
  :root body .mobile-quick-bar a[data-mobile-bar-whatsapp] {
    display: none !important;
  }

  :root body .mobile-quick-bar {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding-top: 8px !important;
  }

  :root body .mobile-quick-bar a {
    min-width: 0 !important;
    padding-inline: 6px !important;
    font-size: 0.78rem !important;
  }
}

:root[data-map-focus] body .journey-pilot {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 18px) scale(0.98) !important;
}

:root body .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body {
  color: #f6efe2 !important;
  border-color: rgba(241, 213, 154, 0.2) !important;
  background: #111416 !important;
}

:root body .assistant-simple-chat .assistant-message.is-user .assistant-message-body {
  color: #071011 !important;
  background: linear-gradient(135deg, #f7e7b6, #d8b979) !important;
}

@media (max-width: 760px) {
  :root body .hero {
    min-height: min(900px, 100svh) !important;
  }

  :root body .hero-content {
    width: calc(100% - 32px) !important;
    margin-right: 16px !important;
    margin-bottom: calc(178px + env(safe-area-inset-bottom)) !important;
    margin-left: 16px !important;
  }

  :root body .hero-copy {
    max-width: 34ch !important;
  }

  :root body .hero-actions {
    display: none !important;
  }

  :root body .journey-pilot,
  :root body .journey-pilot.is-visible {
    display: none !important;
  }

  :root body .mobile-quick-status,
  :root body .mobile-quick-progress {
    display: none !important;
  }

  :root body .mobile-quick-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    gap: 8px !important;
    padding-top: 8px !important;
  }

  :root body .mobile-quick-bar a {
    min-width: 0 !important;
    padding-inline: 6px !important;
    font-size: 0.78rem !important;
  }

  :root body .mobile-quick-bar a[data-mobile-bar-whatsapp] {
    display: none !important;
    font-size: 0 !important;
  }

  :root body .mobile-quick-bar a[data-mobile-bar-whatsapp]::after {
    content: "WA";
    font-size: 0.78rem;
  }
}

@media (max-width: 760px) {
  :root body .mobile-quick-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Black editorial redesign layer. */
:root {
  --black-void: #030303;
  --black-panel: #0b0d0e;
  --black-panel-2: #121517;
  --black-line: rgba(239, 227, 204, 0.16);
  --black-text: #f6efe2;
  --black-muted: #b8b0a2;
  --black-gold: #d1ae72;
  --black-gold-2: #f1d59a;
  --black-steel: #8fa2ad;
}

:root body,
:root[data-theme="dark"] body {
  color: var(--black-text) !important;
  background:
    linear-gradient(180deg, #020202 0%, #060708 42%, #0b0d0e 100%) !important;
}

:root body :is(.site-header, .mobile-quick-bar, .quote-page .sequence-guide) {
  background: rgba(3, 3, 3, 0.9) !important;
  border-color: rgba(241, 213, 154, 0.14) !important;
  backdrop-filter: blur(18px);
}

:root body .topbar {
  color: var(--black-text) !important;
  background: #030303 !important;
  border-bottom: 1px solid rgba(241, 213, 154, 0.18);
}

:root body .topbar :is(a, span) {
  color: var(--black-text) !important;
}

:root body .topbar-right span {
  color: var(--black-gold-2) !important;
  border-color: rgba(241, 213, 154, 0.22) !important;
  background: rgba(241, 213, 154, 0.08) !important;
}

:root body .status-dot {
  background: var(--black-gold-2) !important;
  box-shadow: 0 0 0 5px rgba(241, 213, 154, 0.12) !important;
}

:root body .site-header .brand,
:root body .nav-shell .brand,
:root body a.brand,
:root body .site-header .nav-shell a.brand {
  color: var(--black-text) !important;
  border-color: rgba(241, 213, 154, 0.22) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

:root body .site-menu > a,
:root body .auth-link,
:root body .theme-toggle,
:root body .language-toggle {
  color: var(--black-text) !important;
  border-color: rgba(241, 213, 154, 0.16) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

:root body :is(.button.primary, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .journey-pilot-cta, .filter-button.is-active, .material-tabs button.is-active) {
  color: #070707 !important;
  border-color: var(--black-gold-2) !important;
  background: linear-gradient(135deg, var(--black-gold-2), var(--black-gold)) !important;
  box-shadow: 0 14px 34px rgba(209, 174, 114, 0.22) !important;
}

:root body :is(.button.secondary, .button.ghost, .filter-button, .gallery-model-link, .gallery-quote-link, .mobile-quick-bar a, .auth-link, .theme-toggle) {
  color: var(--black-text) !important;
  border-color: rgba(241, 213, 154, 0.2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

:root body .hero {
  min-height: min(920px, 100svh) !important;
  background: #030303 !important;
}

:root body .hero-image {
  object-position: 58% center;
  filter: saturate(0.94) contrast(1.08) brightness(0.78);
}

:root body .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #030303 98%) !important;
}

:root body .hero-content {
  max-width: 760px;
}

:root body .hero .eyebrow,
:root body .eyebrow {
  color: var(--black-gold-2) !important;
  letter-spacing: 0.08em !important;
}

:root body .hero h1 {
  max-width: 10.6ch !important;
  color: #fffaf0 !important;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.74);
}

:root body .hero-copy,
:root body .hero-proofline,
:root body .hero-facts {
  color: rgba(246, 239, 226, 0.86) !important;
}

:root body :is(.hero-service-stack, .journey-pilot, .kinetic-board, .runway-device, .work-proof-cockpit, .quote-cockpit, .quote-next-panel, .quality-score-strip) {
  color: var(--black-text) !important;
  border: 1px solid rgba(241, 213, 154, 0.2) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 12, 13, 0.9) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34) !important;
}

:root body :is(.intro-band, .section, .services, .material-lab, .work-section, .quality-dossier-section, .faq-section, .testimonials, .quote-teaser-section, .skill-showcase, .atelier-section, .runway-section, .renovation-world-section, .renovation-story-section, .impact-rail, .renovation-compass-section, .quote-page-section, .auth-shell, .model-shell) {
  color: var(--black-text) !important;
  background: #030303 !important;
}

:root body :is(.section-heading h2, .section-text h2, .compass-panel h2, .kinetic-copy h2, .world-copy h2, .story-copy h2, .runway-copy h2, .quality-dossier-head h2, .quote-copy h1, .quote-copy h2, .skill-copy h2, .atelier-copy h2, .auth-copy h1, .model-panel h1) {
  color: var(--black-text) !important;
}

:root body :is(.section-heading p, .section-text p, .compass-panel p, .kinetic-copy p, .world-copy p, .story-copy p, .runway-copy p, .quality-dossier-head p, .quote-copy p, .skill-copy p, .atelier-copy p, .auth-copy p, .model-panel p, .faq-list p, .check-list li) {
  color: var(--black-muted) !important;
}

:root body :is(.service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .runway-card, .fast-route-card, .option-card, .sub-option-card, .micro-option-card, .quote-launch-node, .material-stage, .quality-proof-board, .atelier-photo, .skill-panel, .skill-media, .auth-card, .model-panel, .model-view-area) {
  color: var(--black-text) !important;
  border-color: rgba(241, 213, 154, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--black-panel) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
}

:root body .gallery-caption {
  color: var(--black-text) !important;
  border-color: rgba(241, 213, 154, 0.16) !important;
  background: rgba(8, 10, 11, 0.94) !important;
}

:root body .gallery-caption small,
:root body .gallery-caption p {
  color: var(--black-muted) !important;
}

:root body :is(.service-card-body > span, .quote-launch-head span, .quote-launch-head strong, .sequence-guide span, .material-specs span, .assistant-trust span, .quality-score-strip span, .work-proof-flow span) {
  color: var(--black-gold-2) !important;
  border-color: rgba(241, 213, 154, 0.18) !important;
  background: rgba(241, 213, 154, 0.08) !important;
}

.netherlands-coverage {
  position: relative;
  min-height: 138svh;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 88px);
  overflow: clip;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075), transparent 34%),
    linear-gradient(180deg, #000, #101010 52%, #000);
}

.netherlands-coverage::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  opacity: 0.5;
}

.coverage-copy {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 22px;
  padding-top: clamp(16px, 4vw, 52px);
}

.coverage-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.8rem, 6.4vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.coverage-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.62;
}

.coverage-disclosure {
  min-width: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0d0d0d;
}

.coverage-disclosure > summary {
  box-sizing: border-box;
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 4px 12px;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.coverage-disclosure > summary::-webkit-details-marker {
  display: none;
}

.coverage-disclosure > summary::after {
  grid-row: 1 / span 3;
  grid-column: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #000;
  border-radius: 50%;
  background: #fff;
  content: "+";
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 1;
}

.coverage-disclosure[open] > summary::after {
  content: "-";
}

.coverage-disclosure > summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.coverage-disclosure > summary span,
.coverage-planner-head span,
.coverage-metrics span,
.coverage-risk-list span,
.coverage-weather-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-disclosure > summary strong {
  min-width: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.12;
}

.coverage-disclosure > summary small {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.32;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coverage-points-panel {
  max-width: 560px;
}

.coverage-points-panel:not([open]) .coverage-points,
.coverage-planner:not([open]) .coverage-planner-body {
  display: none;
}

.coverage-points-panel[open] > summary,
.coverage-planner[open] > summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.coverage-points {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 14px;
}

.coverage-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.coverage-map-wrap {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  min-height: min(860px, calc(100svh - 112px));
}

.coverage-map-shell {
  position: relative;
  min-height: clamp(390px, 56svh, 600px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #070707;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.coverage-map-shell::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -100px 110px rgba(0, 0, 0, calc(0.36 + var(--map-progress, 0) * 0.18));
}

.coverage-real-map {
  position: absolute;
  inset: 0;
  min-height: 390px;
  background: var(--blue-deep);
}

.coverage-real-map .leaflet-control-container {
  font-family: Inter, Arial, sans-serif;
}

.coverage-real-map .leaflet-control-zoom a,
.coverage-real-map .leaflet-control-layers {
  color: #050505;
  border: 0;
  background: #fff;
}

.coverage-real-map .leaflet-control-attribution {
  color: #111;
  background: rgba(255, 255, 255, 0.88);
}

.coverage-real-map .leaflet-popup-content-wrapper,
.coverage-real-map .leaflet-popup-tip {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.coverage-real-map .leaflet-popup-content {
  margin: 12px 14px;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.45;
}

.coverage-real-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.coverage-marker {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  font-size: 0.78rem;
  font-weight: 950;
}

.coverage-marker.is-origin {
  color: #fff;
  border-color: #fff;
  background: var(--blue-deep);
}

.coverage-weather-marker {
  min-width: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  color: #000;
  border: 1px solid #000;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.38);
  font-size: 0.74rem;
  font-weight: 950;
}

.coverage-map-toolbar {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.coverage-map-toolbar button,
.coverage-control-row button {
  min-height: 38px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: var(--blue-deep);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.coverage-map-toolbar button {
  padding: 0 10px;
}

.coverage-map-toolbar button.is-active,
.coverage-control-row button {
  color: #000;
  background: #fff;
}

.coverage-map-status {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  max-width: min(390px, calc(100% - 28px));
  margin: 0;
  padding: 10px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.coverage-planner {
  display: block;
  overflow: hidden;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0d0d0d;
}

.coverage-planner-body {
  box-sizing: border-box;
  display: grid;
  gap: 13px;
  padding: 14px 16px 16px;
}

.coverage-planner-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.coverage-planner-head strong {
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.15;
}

.coverage-control-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.coverage-control-row label {
  display: grid;
  gap: 7px;
}

.coverage-control-row select {
  width: 100%;
  min-height: 46px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: #161616;
  padding: 0 12px;
  font: inherit;
  font-weight: 850;
}

.coverage-control-row button {
  align-self: end;
  min-width: 112px;
  padding: 0 16px;
}

.coverage-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.coverage-metrics article,
.coverage-weather-card,
.coverage-risk-item {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #141414;
}

.coverage-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.02;
}

.coverage-metrics small,
.coverage-risk-item small,
.coverage-weather-card small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.coverage-weather-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.coverage-weather-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.08rem;
}

.coverage-risk-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.coverage-risk-item {
  display: grid;
  gap: 5px;
}

.coverage-risk-item strong {
  color: #fff;
  font-size: 0.98rem;
}

.coverage-risk-item[data-level="high"] {
  border-color: rgba(255, 255, 255, 0.34);
  background: #1d1d1d;
}

.coverage-map-shell.is-fallback .coverage-real-map::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #050505;
  background-size: 42px 42px;
  opacity: 0.72;
  pointer-events: none;
}

.coverage-static-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: inherit;
  color: #fff;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.14), transparent 46%),
    #050505;
}

.coverage-static-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coverage-static-country {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 0.7;
}

.coverage-static-coast {
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-dasharray: 2 2;
  stroke-width: 0.45;
}

.coverage-static-zone {
  fill: rgba(255, 255, 255, 0.09);
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 0.45;
}

.coverage-static-zone.is-high {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(255, 255, 255, 0.64);
}

.coverage-static-route {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 1.1;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.6));
}

.coverage-static-city circle,
.coverage-static-origin circle {
  fill: #050505;
  stroke: #fff;
  stroke-width: 0.7;
}

.coverage-static-city.is-active circle {
  fill: #fff;
  stroke: #fff;
}

.coverage-static-city text,
.coverage-static-origin text {
  fill: #fff;
  paint-order: stroke;
  stroke: #050505;
  stroke-linejoin: round;
  stroke-width: 0.7;
  font-family: Inter, Arial, sans-serif;
  font-size: 2.25px;
  font-weight: 950;
  letter-spacing: 0;
}

.coverage-static-city.is-active text {
  fill: #fff;
}

.coverage-static-city.is-active .coverage-static-temp,
.coverage-static-temp {
  fill: rgba(255, 255, 255, 0.72);
  font-size: 1.8px;
  font-weight: 800;
}

.coverage-static-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  max-width: 420px;
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.coverage-static-caption span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-static-caption strong {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.05;
}

.coverage-static-caption small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.35;
}

.coverage-map-shell.is-fallback .coverage-map-status {
  top: 14px;
  right: auto;
  bottom: auto;
  left: 14px;
  max-width: min(360px, calc(100% - 320px));
  background: rgba(0, 0, 0, 0.72);
}

@media (max-width: 760px) {
  .coverage-map-shell.is-fallback .coverage-map-status {
    top: auto;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }
}

:root body .floating-call {
  color: #070707 !important;
  border: 1px solid rgba(241, 213, 154, 0.8) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--black-gold-2), var(--black-gold)) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42) !important;
  transform: translateY(16px);
}

:root body .floating-call.is-visible {
  transform: translateY(0);
}

:root body .floating-call::after,
:root body .assistant-launch-icon::after {
  background: #74d6ff !important;
  border-color: #071011 !important;
  box-shadow: 0 0 0 5px rgba(116, 214, 255, 0.14) !important;
}

:root body .assistant-launch-icon {
  color: #071011 !important;
  border-color: rgba(7, 16, 17, 0.86) !important;
  background: #fff7df !important;
  box-shadow: none !important;
}

:root body .assistant-panel {
  width: min(430px, calc(100% - 28px)) !important;
  color: var(--black-text) !important;
}

:root body .assistant-card.assistant-simple-chat {
  gap: 13px !important;
  max-height: min(680px, calc(100dvh - 28px)) !important;
  padding: 14px !important;
  color: var(--black-text) !important;
  border: 1px solid rgba(241, 213, 154, 0.22) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #070809 !important;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58) !important;
  clip-path: none !important;
}

:root body .assistant-card.assistant-simple-chat::before,
:root body .assistant-card.assistant-simple-chat::after {
  display: none !important;
  content: none !important;
}

:root body .assistant-simple-chat .assistant-head {
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: 52px 1fr 42px;
  align-items: center;
  gap: 11px;
  padding-right: 0 !important;
}

.assistant-ai-avatar,
.assistant-message-avatar {
  display: grid;
  place-items: center;
  color: #071011;
  border: 1px solid rgba(241, 213, 154, 0.6);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--black-gold-2), var(--black-gold));
}

.assistant-ai-avatar {
  width: 52px;
  height: 52px;
}

.assistant-message-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

.assistant-ai-avatar svg,
.assistant-message-avatar svg {
  width: 78%;
  height: 78%;
}

.avatar-shell,
.avatar-base {
  fill: currentColor;
}

.avatar-lines,
.avatar-spark {
  fill: none;
  stroke: #fff7df;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:root body .assistant-simple-chat .assistant-head span[data-assistant-eyebrow] {
  min-height: 0 !important;
  padding: 0 !important;
  color: var(--black-steel) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
}

:root body .assistant-simple-chat .assistant-head h2 {
  margin: 2px 0 0 !important;
  color: var(--black-text) !important;
  font-size: 1.34rem !important;
  line-height: 1.05 !important;
}

:root body .assistant-simple-chat .assistant-close {
  position: static !important;
  width: 42px !important;
  height: 42px !important;
  color: var(--black-text) !important;
  border: 1px solid rgba(241, 213, 154, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: none !important;
}

:root body .assistant-simple-chat .assistant-intro {
  color: rgba(246, 239, 226, 0.7) !important;
  font-size: 0.9rem !important;
}

:root body .assistant-simple-chat .assistant-messages {
  max-height: 330px !important;
  min-height: 180px !important;
  gap: 10px !important;
  padding: 10px !important;
  border: 1px solid rgba(241, 213, 154, 0.14) !important;
  border-radius: 8px !important;
  background: #030303 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035) !important;
}

:root body .assistant-simple-chat .assistant-message {
  max-width: 88% !important;
  display: flex;
  gap: 9px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
  white-space: normal !important;
}

:root body .assistant-simple-chat .assistant-message.is-user {
  justify-self: end;
}

:root body .assistant-simple-chat .assistant-message.is-assistant {
  justify-self: start;
}

.assistant-message-body {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(241, 213, 154, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.assistant-message.is-user .assistant-message-body {
  color: #071011;
  border-color: transparent;
  background: linear-gradient(135deg, var(--black-gold-2), var(--black-gold));
}

.assistant-message-body p {
  margin: 0;
  color: inherit !important;
  font-size: 0.92rem;
  line-height: 1.42;
  white-space: pre-wrap;
}

.assistant-message-attachments {
  display: grid;
  gap: 7px;
}

.assistant-message-attachment {
  display: grid;
  gap: 5px;
  margin: 0;
}

.assistant-message-attachment img {
  max-width: 210px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.assistant-message-attachment audio {
  width: min(230px, 100%);
}

.assistant-message-attachment figcaption {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  opacity: 0.78;
}

.assistant-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(241, 213, 154, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.assistant-attachments[hidden] {
  display: none;
}

.assistant-attachments > strong {
  color: var(--black-steel);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.assistant-attachment-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 7px;
  color: var(--black-text);
  border: 1px solid rgba(241, 213, 154, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.assistant-attachment-chip em {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #071011;
  border-radius: 6px;
  background: var(--black-gold-2);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 950;
}

.assistant-attachment-chip small {
  max-width: 170px;
  overflow: hidden;
  color: var(--black-text);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assistant-attachment-chip button {
  width: 22px;
  height: 22px;
  color: var(--black-muted);
  border: 0;
  background: transparent;
  font-weight: 950;
}

:root body .assistant-simple-chat .assistant-form {
  display: block !important;
}

.assistant-compose {
  display: grid;
  grid-template-columns: 40px 40px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: end;
}

.assistant-media-button,
.assistant-send-button {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 950;
}

.assistant-media-button {
  color: var(--black-text);
  border: 1px solid rgba(241, 213, 154, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.assistant-media-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:root body .assistant-simple-chat .assistant-form textarea {
  min-height: 42px !important;
  max-height: 120px;
  padding: 11px 12px !important;
  color: var(--black-text) !important;
  border: 1px solid rgba(241, 213, 154, 0.18) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: none !important;
  resize: vertical;
}

.assistant-send-button {
  min-width: 92px;
  padding: 0 14px;
  color: #071011;
  border: 1px solid var(--black-gold-2);
  background: linear-gradient(135deg, var(--black-gold-2), var(--black-gold));
}

:root body .site-footer {
  color: var(--black-muted);
  border-top-color: rgba(241, 213, 154, 0.16);
  background: #030303;
}

:root body .site-footer a {
  color: var(--black-gold-2);
}

@media (max-width: 940px) {
  .netherlands-coverage {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 70px;
  }

  .coverage-copy,
  .coverage-map-wrap {
    position: relative;
    top: auto;
  }

  .coverage-copy h2 {
    max-width: 10ch;
    font-size: 4rem;
  }

  .coverage-map-wrap {
    min-height: auto;
  }

  .coverage-map-shell {
    min-height: 500px;
  }

  .coverage-metrics,
  .coverage-weather-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root body .hero h1 {
    max-width: 10.8ch !important;
    font-size: clamp(2.35rem, 12vw, 3.45rem) !important;
  }

  .netherlands-coverage {
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
    overflow-x: hidden;
    padding-inline: 20px;
  }

  .coverage-copy,
  .coverage-map-wrap,
  .coverage-map-shell,
  .coverage-planner {
    width: 100%;
    max-width: calc(100vw - 40px);
    min-width: 0;
    justify-self: center;
  }

  .coverage-map-wrap {
    min-height: auto;
  }

  .coverage-copy h2 {
    max-width: 8.6ch;
    overflow-wrap: break-word;
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .coverage-copy p {
    width: auto;
    max-width: 32ch;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .coverage-points {
    display: grid;
    width: 100%;
    max-width: calc(100vw - 40px);
    grid-template-columns: minmax(0, 1fr);
  }

  .coverage-points span {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding-inline: 10px;
    overflow-wrap: anywhere;
    text-align: center;
    font-size: 0.64rem;
  }

  .coverage-map-shell {
    min-height: 420px;
  }

  .coverage-map-toolbar {
    left: 10px;
    right: 10px;
    justify-content: stretch;
  }

  .coverage-map-toolbar button {
    flex: 1;
    padding-inline: 6px;
  }

  .coverage-control-row,
  .coverage-metrics,
  .coverage-weather-strip,
  .coverage-risk-list {
    grid-template-columns: 1fr;
  }

  .coverage-planner-head {
    display: grid;
    gap: 4px;
    align-items: start;
  }

  .coverage-planner-head strong {
    min-width: 0;
    overflow-wrap: break-word;
    font-size: 1rem;
  }

  .coverage-control-row button {
    width: 100%;
  }

  .coverage-map-status {
    right: 10px;
    left: 10px;
    max-width: none;
    font-size: 0.72rem;
  }

  .coverage-real-map .leaflet-control-attribution {
    max-width: calc(100% - 74px);
    white-space: normal;
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .assistant-compose {
    grid-template-columns: 38px 38px 1fr;
  }

  .assistant-send-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .coverage-copy h2 {
    max-width: 8.8ch;
    font-size: 2.35rem;
  }
}

.skill-showcase {
  position: relative;
  width: 100%;
  overflow: clip;
  padding: 96px 0 112px;
  color: #fffaf3;
  background:
    linear-gradient(180deg, rgba(24, 21, 18, 0.96), rgba(59, 36, 20, 0.98)),
    #2b1a10;
  isolation: isolate;
}

.skill-showcase::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.055) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, rgba(255, 250, 243, 0.045) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, rgba(216, 185, 121, 0.22), transparent 34%, rgba(96, 125, 115, 0.2));
  opacity: 0.78;
}

.skill-showcase::after {
  position: absolute;
  top: 96px;
  bottom: 96px;
  left: max(18px, calc((100% - var(--page-max)) / 2));
  z-index: -1;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, #d8b979, #607d73, #a87b6c);
  border-radius: 999px;
  transform: scaleY(max(0.08, var(--skill-progress, 0)));
  transform-origin: top;
}

.skill-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: start;
  width: min(var(--page-max), calc(100% - 36px));
  margin: 0 auto;
}

.skill-copy {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  min-height: calc(100svh - 132px);
  align-content: center;
}

.skill-copy .eyebrow {
  width: fit-content;
  color: #181512;
  background: #d8b979;
}

.skill-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: #fffaf3;
  font-family: Fraunces, Georgia, serif;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.skill-copy p:not(.eyebrow) {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 250, 243, 0.74);
  font-size: 1.03rem;
  line-height: 1.7;
}

.skill-progress-map {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.skill-progress-map button {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 8px 10px;
  color: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(255, 250, 243, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.055);
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.skill-progress-map button span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #2b1a10;
  border-radius: 8px;
  background: rgba(216, 185, 121, 0.9);
  font-size: 0.78rem;
  font-weight: 950;
}

.skill-progress-map button strong {
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skill-progress-map button.is-active {
  color: #fffaf3;
  border-color: rgba(216, 185, 121, 0.72);
  background: rgba(216, 185, 121, 0.16);
}

.skill-panels {
  display: grid;
  gap: 72px;
}

.skill-panel {
  --panel-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 0.56fr);
  gap: 24px;
  align-items: center;
  min-height: min(780px, calc(100svh - 96px));
  scroll-margin-top: 112px;
  opacity: calc(0.58 + (var(--panel-progress) * 0.42));
  transition: opacity 180ms ease;
}

.skill-panel-copy {
  display: grid;
  gap: 13px;
  padding: 22px 0 22px 22px;
  border-left: 3px solid rgba(216, 185, 121, 0.52);
}

.skill-panel-copy > span {
  color: #d8b979;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.skill-panel-copy h3 {
  max-width: 16ch;
  margin: 0;
  color: #fffaf3;
  font-family: Fraunces, Georgia, serif;
  font-size: 2.12rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.skill-panel-copy p {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 250, 243, 0.72);
  line-height: 1.62;
}

.skill-panel-copy ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.skill-panel-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 250, 243, 0.84);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.42;
}

.skill-panel-copy li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 2px;
  background: #d8b979;
}

.skill-media-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 122px;
  gap: 12px;
  align-items: stretch;
  perspective: 1200px;
}

.skill-media {
  --media-x: 0px;
  --media-y: 0px;
  --media-rot: 0deg;
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #fffaf3;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 8px;
  background: #181512;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  transform: translate3d(var(--media-x), var(--media-y), 0) rotate(var(--media-rot));
  transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  will-change: transform;
}

.skill-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 45%, rgba(24, 21, 18, 0.76)),
    linear-gradient(90deg, rgba(24, 21, 18, 0.34), transparent 42%);
  pointer-events: none;
}

.skill-panel.is-active .skill-media {
  border-color: rgba(216, 185, 121, 0.5);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(216, 185, 121, 0.12);
}

.skill-panel.is-before .skill-media,
.skill-panel.is-after .skill-media {
  filter: saturate(0.86);
}

.skill-media img,
.skill-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skill-media video {
  background: #181512;
}

.skill-media figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 20px);
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  color: #fffaf3;
  border: 1px solid rgba(255, 250, 243, 0.24);
  border-radius: 8px;
  background: rgba(24, 21, 18, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.skill-media-video figcaption::before {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: #d8b979;
  box-shadow: 0 0 0 4px rgba(216, 185, 121, 0.18);
}

.bath-grid .skill-media:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.bath-grid .skill-media:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.bath-grid .skill-media:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
}

.bath-grid .skill-media:nth-child(4) {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.bath-grid .skill-media:nth-child(5) {
  grid-column: 5 / 7;
  grid-row: 3 / 5;
}

.bath-grid .skill-media:nth-child(6) {
  grid-column: 1 / 4;
  grid-row: 5 / 7;
}

.bath-grid .skill-media:nth-child(7) {
  grid-column: 4 / 7;
  grid-row: 5 / 7;
}

.prep-grid .skill-media:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 5;
}

.prep-grid .skill-media:nth-child(2) {
  grid-column: 3 / 7;
  grid-row: 1 / 3;
}

.prep-grid .skill-media:nth-child(3) {
  grid-column: 3 / 7;
  grid-row: 3 / 5;
}

.home-grid .skill-media:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.home-grid .skill-media:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.home-grid .skill-media:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 3 / 5;
}

.home-grid .skill-media:nth-child(4) {
  grid-column: 5 / 7;
  grid-row: 3 / 5;
}

.home-grid .skill-media:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
}

.home-grid .skill-media:nth-child(6) {
  grid-column: 3 / 7;
  grid-row: 5 / 7;
}

.kitchen-grid .skill-media:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.kitchen-grid .skill-media:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.kitchen-grid .skill-media:nth-child(3) {
  grid-column: 1 / 5;
  grid-row: 3 / 5;
}

.kitchen-grid .skill-media:nth-child(4) {
  grid-column: 5 / 7;
  grid-row: 3 / 5;
}

.kitchen-grid .skill-media:nth-child(5) {
  grid-column: 1 / 7;
  grid-row: 5 / 7;
}

.pro-grid .skill-media:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.pro-grid .skill-media:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.pro-grid .skill-media:nth-child(3) {
  grid-column: 1 / 4;
  grid-row: 3 / 5;
}

.pro-grid .skill-media:nth-child(4) {
  grid-column: 4 / 7;
  grid-row: 3 / 5;
}

.skill-panel.is-premium-lit,
.skill-media.is-premium-lit {
  outline: 1px solid rgba(216, 185, 121, 0.58);
  outline-offset: -1px;
  filter: drop-shadow(0 0 24px rgba(216, 185, 121, 0.14));
}

:root[data-theme="dark"] .skill-showcase {
  background:
    linear-gradient(180deg, rgba(16, 10, 7, 0.98), rgba(30, 19, 13, 0.98)),
    #120c08;
}

:root[data-theme="dark"] .skill-progress-map button,
:root[data-theme="dark"] .skill-media figcaption {
  border-color: rgba(246, 234, 215, 0.16);
  background: rgba(246, 234, 215, 0.07);
}

@media (max-width: 1040px) {
  .skill-showcase {
    padding: 78px 0 92px;
  }

  .skill-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .skill-copy {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .skill-copy h2 {
    max-width: 18ch;
    font-size: 2.8rem;
  }

  .skill-progress-map {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .skill-progress-map button {
    grid-template-columns: 1fr;
    min-height: 82px;
    align-content: start;
  }

  .skill-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .skill-panel-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .skill-showcase {
    padding: 62px 0 74px;
  }

  .skill-showcase::after {
    display: none;
  }

  .skill-shell {
    width: min(100% - 28px, 620px);
  }

  .skill-copy h2 {
    max-width: 13ch;
    font-size: 2.18rem;
    line-height: 1.1;
  }

  .skill-copy p:not(.eyebrow),
  .skill-panel-copy p {
    font-size: 0.96rem;
  }

  .skill-progress-map {
    grid-template-columns: 1fr;
  }

  .skill-progress-map button {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 54px;
  }

  .skill-panel {
    gap: 18px;
  }

  .skill-panel-copy {
    padding: 0 0 0 16px;
  }

  .skill-panel-copy h3 {
    max-width: 18ch;
    font-size: 1.72rem;
  }

  .skill-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
    gap: 10px;
  }

  .skill-media-grid .skill-media {
    grid-column: auto / span 1;
    grid-row: auto / span 1;
    transform: none;
  }

  .skill-media-grid .skill-media-wide,
  .skill-media-grid .skill-media-video {
    grid-column: 1 / -1;
  }

  .skill-media-grid .skill-media-tall {
    grid-row: auto / span 2;
  }

  .skill-media figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skill-media,
  .skill-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.theme-toggle [data-theme-icon] {
  width: 18px !important;
  height: 18px !important;
  border-width: 1px !important;
  background: transparent !important;
  box-shadow: inset 5px -3px 0 currentColor !important;
}

.theme-toggle [data-theme-icon]::before,
.theme-toggle [data-theme-icon]::after {
  display: none !important;
  content: none !important;
}

:is(.auth-main, .model-main, .gallery-admin-main) {
  color: var(--ink) !important;
  background: #f8f7f1 !important;
  background-image: none !important;
}

:is(.auth-main, .model-main, .gallery-admin-main)::before,
:is(.auth-main, .model-main, .gallery-admin-main)::after {
  display: none !important;
  content: none !important;
}

:is(.auth-shell, .model-shell, .gallery-admin-hero, .gallery-admin-app, .gallery-admin-gate) {
  position: relative;
  z-index: 1;
}

.auth-shell {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 500px) !important;
  align-items: start !important;
  gap: clamp(28px, 5vw, 68px) !important;
}

.auth-copy,
.model-panel,
.gallery-admin-hero > div:first-child {
  align-self: start;
}

.auth-copy .eyebrow,
.model-panel .eyebrow,
.gallery-admin-hero .eyebrow,
.gallery-admin-gate .eyebrow {
  color: var(--muted) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.auth-copy h1,
.model-panel h1,
.gallery-admin-hero h1,
.gallery-admin-gate h2 {
  color: var(--ink) !important;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.auth-copy h1 {
  max-width: 12.8ch !important;
  font-size: clamp(2.7rem, 5.4vw, 5.8rem) !important;
  line-height: 1.02 !important;
}

.auth-copy p:not(.eyebrow),
.model-panel p,
.gallery-admin-hero p:not(.eyebrow),
.gallery-admin-gate p {
  color: var(--muted) !important;
}

.auth-proof {
  gap: 8px !important;
}

.auth-proof span {
  color: var(--ink) !important;
  font-weight: 800 !important;
}

.auth-proof span::before {
  width: 18px !important;
  height: 18px !important;
  border: 1px solid rgba(22, 24, 22, 0.14) !important;
  background: var(--forest) !important;
  box-shadow: none !important;
}

.auth-account-map {
  min-height: auto !important;
  gap: 10px !important;
  padding: 16px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
}

.auth-account-map::before,
.auth-account-map::after,
.auth-map-line,
.auth-map-line::after {
  display: none !important;
  content: none !important;
}

.auth-map-head {
  gap: 8px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(22, 24, 22, 0.1);
}

.auth-map-head span,
.auth-map-head strong {
  min-height: 34px !important;
  color: var(--forest) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(248, 247, 241, 0.86) !important;
  box-shadow: none !important;
}

.auth-map-head strong::before {
  width: 8px !important;
  height: 8px !important;
  border: 0 !important;
  background: var(--forest) !important;
  box-shadow: none !important;
  animation: none !important;
}

.auth-map-node,
.auth-map-node.node-profile,
.auth-map-node.node-request,
.auth-map-node.node-access {
  width: 100% !important;
  min-height: 92px !important;
  grid-template-columns: auto 1fr !important;
  gap: 5px 12px !important;
  align-content: center !important;
  align-items: center !important;
  justify-self: stretch !important;
  margin: 0 !important;
  padding: 14px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.auth-map-node span {
  grid-row: span 2;
  width: 32px !important;
  height: 32px !important;
  color: #fffdf7 !important;
  border: 0 !important;
  background: var(--forest) !important;
}

.auth-map-node small {
  color: var(--muted) !important;
}

.auth-card,
.auth-session,
.model-panel,
.gallery-admin-health,
.gallery-admin-gate,
.gallery-admin-card,
.gallery-project-form,
.gallery-upload-panel {
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
  clip-path: none !important;
}

.auth-card :is(label, .field-group label),
.gallery-admin-page :is(label, .field-group label),
.model-page :is(label, .field-group label) {
  color: var(--ink) !important;
}

.auth-tabs {
  gap: 4px !important;
  padding: 4px !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(248, 247, 241, 0.86) !important;
}

.auth-tabs button {
  border-radius: 6px !important;
  box-shadow: none !important;
}

.auth-tabs button.is-active {
  color: #fffdf7 !important;
  background: var(--forest) !important;
  box-shadow: none !important;
}

.auth-session,
.auth-reward,
.gallery-admin-reward {
  border-radius: 8px !important;
  box-shadow: var(--soft-shadow) !important;
  animation: none !important;
  transform: none !important;
}

.auth-reward,
.gallery-admin-reward {
  color: #fffdf7 !important;
  border: 1px solid var(--forest) !important;
  background: var(--forest) !important;
}

.auth-reward span,
.gallery-admin-reward span {
  border: 0 !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
}

.model-floating-tools,
.gallery-admin-floaters,
.model-scene-halo {
  display: none !important;
}

.model-main,
.gallery-admin-main {
  overflow-x: clip !important;
}

.model-shell {
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr) !important;
  gap: clamp(22px, 4.5vw, 62px) !important;
}

.model-panel {
  padding: 18px !important;
}

.model-panel h1 {
  max-width: 12ch !important;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem) !important;
  line-height: 1.02 !important;
}

.back-link,
.model-panel .eyebrow,
.model-progress-strip,
.model-reference,
.model-control-block,
.model-chip,
.model-swatch,
.model-toolbar button,
.model-status {
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.back-link {
  min-height: 40px !important;
}

.model-progress-strip {
  gap: 8px !important;
  padding: 10px !important;
}

.model-progress-strip span,
.model-progress-strip span.is-active {
  min-height: 48px !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.model-progress-strip span.is-active {
  border-color: var(--forest) !important;
}

.model-progress-strip strong {
  color: #fffdf7 !important;
  border: 0 !important;
  background: var(--forest) !important;
}

.model-reference img {
  border: 0 !important;
  border-radius: 6px !important;
}

.model-reference figcaption,
.model-control-block label,
.model-progress-strip small {
  color: var(--muted) !important;
}

.model-chip.is-active,
.model-swatch.is-active {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

.model-view-area {
  overflow: hidden !important;
  border: 1px solid rgba(22, 24, 22, 0.14) !important;
  border-radius: 8px !important;
  background: #1a110b !important;
  box-shadow: 0 18px 44px rgba(22, 24, 22, 0.14) !important;
}

.model-view-area::before {
  display: none !important;
  content: none !important;
}

.model-toolbar {
  top: 14px !important;
  right: 14px !important;
  left: 14px !important;
  min-height: 48px !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(255, 253, 247, 0.14) !important;
  border-radius: 8px !important;
  background: rgba(15, 23, 20, 0.9) !important;
  box-shadow: none !important;
}

.model-toolbar button {
  min-height: 36px !important;
  color: #1a110b !important;
  border-color: #fffdf7 !important;
  background: #fffdf7 !important;
}

.model-view-summary {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(620px, calc(100% - 28px));
}

.model-view-summary span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #fffdf7;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 20, 0.88);
  font-size: 0.75rem;
  font-weight: 900;
}

.model-status {
  right: 14px !important;
  bottom: 58px !important;
  color: #1a110b !important;
  border-color: #fffdf7 !important;
  background: #fffdf7 !important;
}

.gallery-admin-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) !important;
  align-items: start !important;
  gap: 18px !important;
}

.gallery-admin-hero h1 {
  max-width: 14ch !important;
  font-size: clamp(2.4rem, 4.8vw, 5.1rem) !important;
  line-height: 1.02 !important;
}

.gallery-admin-flow {
  max-width: 760px !important;
  gap: 10px !important;
  padding: 10px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
}

.gallery-admin-flow span,
.gallery-admin-flow span:first-child,
.gallery-admin-stats span,
.compass-proof span {
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.gallery-admin-flow strong {
  color: #fffdf7 !important;
  border: 0 !important;
  background: var(--forest) !important;
}

.gallery-admin-health {
  align-self: start !important;
}

.gallery-admin-health > small,
.gallery-admin-gate .eyebrow,
.gallery-admin-toolbar span,
.gallery-admin-card small {
  color: var(--muted) !important;
}

.gallery-admin-health span,
.gallery-admin-health strong,
.gallery-admin-gate h2,
.gallery-admin-toolbar strong,
.gallery-admin-card strong {
  color: var(--ink) !important;
}

.gallery-admin-status {
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
}

.gallery-admin-status[data-state="error"] {
  color: #6f211c !important;
  background: #f8dfdc !important;
}

:root[data-theme="dark"] :is(.auth-main, .model-main, .gallery-admin-main) {
  color: #edf4ef !important;
  background: #0e1714 !important;
}

:root[data-theme="dark"] :is(.auth-copy h1, .model-panel h1, .gallery-admin-hero h1, .gallery-admin-gate h2, .auth-proof span, .gallery-admin-health span, .gallery-admin-health strong, .gallery-admin-toolbar strong) {
  color: #edf4ef !important;
}

:root[data-theme="dark"] :is(.auth-card, .auth-account-map, .auth-session, .model-panel, .gallery-admin-health, .gallery-admin-gate, .gallery-admin-card, .gallery-project-form, .gallery-upload-panel, .gallery-admin-flow, .gallery-admin-status) {
  color: #edf4ef !important;
  border-color: rgba(237, 244, 239, 0.14) !important;
  background: rgba(17, 29, 24, 0.94) !important;
}

:root[data-theme="dark"] :is(.auth-map-node, .model-progress-strip span, .model-reference, .model-control-block, .gallery-admin-flow span, .gallery-admin-stats span) {
  color: #edf4ef !important;
  border-color: rgba(237, 244, 239, 0.14) !important;
  background: rgba(237, 244, 239, 0.06) !important;
}

.gallery-admin-status {
  box-shadow: none !important;
}

@media (max-width: 760px) {
  :is(.auth-main, .model-main, .gallery-admin-main) {
    padding: 28px 14px 76px !important;
    overflow-x: hidden !important;
  }

  :is(.auth-shell, .model-shell, .gallery-admin-hero, .gallery-admin-app, .gallery-admin-gate, .gallery-admin-status) {
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .auth-shell,
  .model-shell,
  .gallery-admin-hero {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 0 !important;
  }

  .auth-copy h1,
  .model-panel h1,
  .gallery-admin-hero h1 {
    max-width: 11ch !important;
    font-size: clamp(2.35rem, 11vw, 3.8rem) !important;
    line-height: 1.05 !important;
  }

  .auth-card,
  .auth-account-map,
  .model-panel,
  .gallery-admin-health,
  .gallery-admin-gate {
    width: 100% !important;
    max-width: none !important;
    padding: 14px !important;
  }

  .auth-account-map,
  .auth-proof {
    max-width: none !important;
  }

  .auth-map-head,
  .gallery-admin-health,
  .gallery-admin-gate {
    align-items: stretch !important;
  }

  .auth-map-head span,
  .auth-map-head strong {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .model-panel {
    display: grid !important;
    gap: 14px !important;
  }

  .model-progress-strip {
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
  }

  .model-progress-strip span,
  .model-progress-strip span.is-active {
    min-height: 58px !important;
    grid-template-columns: auto 1fr !important;
  }

  .model-view-area {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    height: min(620px, 78vh) !important;
    min-height: 520px !important;
    grid-column: auto !important;
  }

  .model-toolbar {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .model-toolbar span {
    max-width: none !important;
  }

  .model-view-summary {
    right: 10px !important;
    bottom: 10px !important;
    left: 10px !important;
    max-width: none !important;
  }

  .model-status {
    right: 10px !important;
    bottom: 98px !important;
    left: 10px !important;
    max-width: none !important;
  }

  .gallery-admin-hero {
    justify-items: stretch !important;
  }

  .gallery-admin-hero > div:first-child,
  .gallery-admin-health {
    width: 100% !important;
    max-width: none !important;
  }

  .gallery-admin-flow {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
  }

  .gallery-admin-flow span {
    min-height: 64px !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
  }

  .gallery-admin-health .button,
  .gallery-admin-gate .button {
    width: 100% !important;
  }
}

.runway-section {
  min-height: auto !important;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 70px) !important;
  background: #f8f7f1 !important;
}

.runway-sticky {
  position: relative !important;
  top: auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: center !important;
  min-height: 0 !important;
}

.runway-copy h2 {
  color: var(--ink) !important;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.runway-copy p:not(.eyebrow) {
  color: var(--muted) !important;
}

.runway-stage {
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 16px !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: var(--soft-shadow) !important;
  overflow: visible !important;
}

.runway-section::before,
.runway-section::after,
.runway-stage::before,
.runway-stage::after,
.runway-track {
  display: none !important;
  content: none !important;
}

.runway-device {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  z-index: 1 !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px 16px !important;
  align-items: center !important;
  padding: 16px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: #f8f7f1 !important;
  box-shadow: none !important;
  transform: none !important;
}

.runway-device > span {
  grid-column: 1 / -1;
  color: var(--muted) !important;
}

.runway-device strong {
  color: var(--ink) !important;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.25rem, 2vw, 1.6rem) !important;
  line-height: 1.12 !important;
}

.runway-device small {
  justify-self: end;
  color: var(--muted) !important;
}

.runway-device-meter {
  grid-column: 1 / -1;
  height: 8px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(22, 24, 22, 0.08) !important;
}

.runway-device-meter span {
  border: 0 !important;
  border-radius: inherit !important;
  background: var(--forest) !important;
}

.runway-card,
.runway-card.card-one,
.runway-card.card-two,
.runway-card.card-three,
.runway-card.card-four,
.runway-card.is-active {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  min-height: 132px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 5px 12px !important;
  align-content: center !important;
  align-items: center !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
  transform: none !important;
}

.runway-card:hover,
.runway-card:focus-within,
.runway-card.is-active {
  border-color: var(--forest) !important;
}

.runway-card.is-active {
  color: #fffdf7 !important;
  background: var(--forest) !important;
}

.runway-card span {
  grid-row: span 2;
  width: auto !important;
  height: auto !important;
  padding: 0 0 5px !important;
  color: #f6fbff !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

.runway-card.is-active span,
.runway-card.is-complete span {
  color: #f6fbff !important;
  background: transparent !important;
}

.runway-card strong,
.runway-card small {
  color: inherit !important;
}

.runway-card small {
  opacity: 0.74;
}

.work-proof-cockpit {
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.96) !important;
  box-shadow: var(--soft-shadow) !important;
  clip-path: none !important;
}

.work-proof-cockpit::before,
.work-proof-cockpit::after {
  display: none !important;
  content: none !important;
}

.work-proof-count {
  color: #fffdf7 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--forest) !important;
  box-shadow: none !important;
}

.work-proof-copy span,
.work-proof-copy p {
  color: var(--muted) !important;
}

.work-proof-copy h3,
.work-proof-flow span,
.work-proof-cta {
  color: var(--ink) !important;
}

.work-proof-flow span {
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(248, 247, 241, 0.86) !important;
  box-shadow: none !important;
}

.work-proof-flow span.is-active,
.work-proof-cta {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

.work-proof-cta {
  border-radius: 8px !important;
  box-shadow: none !important;
  clip-path: none !important;
}

.gallery-caption {
  clip-path: none !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  box-shadow: var(--soft-shadow) !important;
}

.gallery-photo-button img,
.gallery-item img {
  clip-path: none !important;
  transform: none !important;
}

.gallery-photo-button:hover img,
.gallery-item:hover img {
  transform: none !important;
}

.config-empty,
.config-summary,
.upload-note {
  color: var(--muted) !important;
  border-style: solid !important;
  border-color: rgba(22, 24, 22, 0.13) !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
}

.quote-preview-shell {
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
}

.floating-call.is-visible,
.floating-call:hover,
.floating-call:focus-visible {
  transform: none !important;
}

.journey-pilot-intel {
  border-radius: 8px !important;
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 72px !important;
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 8px 14px !important;
  }

  .brand {
    order: 1 !important;
    justify-self: start !important;
    max-width: 134px !important;
    min-height: 52px !important;
    padding: 6px 8px !important;
    border-radius: 8px !important;
  }

  .brand img {
    width: 116px !important;
    max-width: 31vw !important;
  }

  .brand-meta,
  .auth-link,
  .nav-cta {
    display: none !important;
  }

  .nav-tools {
    display: flex !important;
    order: 2 !important;
    justify-self: auto !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: auto !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .language-toggle {
    position: static !important;
    flex: 0 0 auto !important;
    min-height: 44px !important;
    border-radius: 8px !important;
  }

  .language-toggle button {
    min-width: 42px !important;
    padding: 0 8px !important;
    font-size: 0.86rem !important;
  }

  .theme-toggle {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
    order: 3 !important;
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 8px !important;
    border-radius: 8px !important;
  }

  .menu-toggle span:not(.sr-only) {
    height: 2px !important;
    margin: 5px 0 !important;
  }

  .site-menu,
  .site-header.is-scrolled .site-menu {
    top: 78px !important;
    right: 14px !important;
    left: 14px !important;
  }

  .floating-call {
    top: auto !important;
    right: 14px !important;
    bottom: 98px !important;
    width: 52px !important;
    min-height: 52px !important;
  }

  .runway-section {
    padding: 58px 14px 72px !important;
  }

  .runway-sticky {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .runway-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11vw, 3.8rem) !important;
    line-height: 1.05 !important;
  }

  .runway-stage {
    grid-template-columns: 1fr !important;
  }

  .runway-card,
  .runway-card.card-one,
  .runway-card.card-two,
  .runway-card.card-three,
  .runway-card.card-four,
  .runway-card.is-active {
    min-height: 104px !important;
  }

  .runway-device {
    grid-template-columns: 1fr !important;
  }

  .runway-device small {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 108px !important;
    max-width: 30vw !important;
  }

  .language-toggle button {
    min-width: 40px !important;
  }

  .theme-toggle {
    width: 42px !important;
    min-height: 42px !important;
  }

  .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
  }
}

:root[data-theme="dark"] .runway-stage,
:root[data-theme="dark"] .runway-card,
:root[data-theme="dark"] .runway-device,
:root[data-theme="dark"] .work-proof-cockpit,
:root[data-theme="dark"] .gallery-caption,
:root[data-theme="dark"] .quote-preview-shell,
:root[data-theme="dark"] :is(.config-empty, .config-summary, .upload-note) {
  color: #edf4ef !important;
  border-color: rgba(237, 244, 239, 0.14) !important;
  background: rgba(17, 29, 24, 0.94) !important;
}

/* Final Dutch restraint pass: professional, quiet, and immediately readable. */
:root {
  --glovo-yellow: #d8b979;
  --cartoon-blue: #b59a78;
  --cartoon-red: #a87b6c;
  --cartoon-ink: var(--ink);
  --neon-blue: #b59a78;
  --neon-mint: #d8c2a2;
  --neon-gold: #d8b979;
}

.scroll-progress {
  background: var(--forest) !important;
  box-shadow: none !important;
}

:is(.site-menu a, .button, .nav-cta, .mobile-menu-action, .hero h1, .hero-copy, .section-heading h2, .quote-copy h1, .quote-copy h2, .assistant-head h2, .gallery-caption, .service-card, .fast-route-card, .option-card, .sub-option-card, .micro-option-card) {
  text-shadow: none !important;
}

:is(.site-header, .topbar, .hero-proofline span, .hero-facts div, .hero-service-stack, .journey-pilot, .mobile-quick-bar, .quote-cockpit, .quote-next-panel, .fast-request-panel, .work-proof-cockpit, .assistant-card, .assistant-briefing, .assistant-template, .assistant-messages, .auth-card, .gallery-admin-card, .model-panel) {
  backdrop-filter: none !important;
}

.hero h1 {
  max-width: 12ch !important;
  font-size: clamp(2.95rem, 7vw, 6.25rem) !important;
  line-height: 1.02 !important;
}

.hero-copy {
  max-width: 680px !important;
}

:is(.intro-inner a, .service-card, .gallery-item, .gallery-caption, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .compass-visual, .compass-panel, .compass-route-card, .kinetic-board, .kinetic-chip, .world-step, .world-plan-board, .story-stage, .story-layer, .runway-stage, .runway-card, .runway-device, .atelier-photo, .material-stage, .material-panel, .work-proof-cockpit, .quote-launch-map, .quote-launch-node, .quote-cockpit, .quote-next-panel, .fast-request-panel, .fast-route-card, .form-stage, .config-step, .option-card, .sub-option-card, .micro-option-card, .config-summary, .upload-note, .quote-preview-shell, .assistant-card, .assistant-briefing, .assistant-template, .assistant-messages, .assistant-message, .auth-card, .auth-account-map, .gallery-admin-card, .model-panel) {
  border-radius: 8px !important;
  clip-path: none !important;
  transform: none !important;
}

:is(.service-card, .gallery-item, .gallery-caption, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .compass-visual, .compass-panel, .compass-route-card, .kinetic-board, .world-plan-board, .story-stage, .runway-stage, .material-stage, .quality-proof-board, .work-proof-cockpit, .quote-launch-map, .quote-cockpit, .quote-next-panel, .fast-request-panel, .form-stage, .config-step, .quote-preview-shell, .assistant-card, .assistant-briefing, .assistant-template, .auth-card, .auth-account-map, .gallery-admin-card, .model-panel) {
  box-shadow: 0 12px 28px rgba(22, 24, 22, 0.075) !important;
}

:is(.intro-inner a:hover, .service-card:hover, .gallery-item:hover, .quality-check-card:hover, .process-grid article:hover, .faq-list details:hover, .fast-route-card:hover, .option-card:hover, .sub-option-card:hover, .micro-option-card:hover, .button:hover, .nav-cta:hover) {
  transform: none !important;
  box-shadow: 0 14px 30px rgba(22, 24, 22, 0.09) !important;
}

.is-active,
.is-complete {
  transform: none !important;
}

.sequence-reward {
  display: none !important;
}

.reward-open .floating-call.is-visible,
.reward-open .assistant-launch {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.story-photo {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

:root[data-journey-index="0"] .floating-call,
:root:not([data-journey-index]) .floating-call {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.assistant-reward,
.auth-reward,
.gallery-admin-reward {
  animation: none !important;
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  box-shadow: 0 12px 28px rgba(22, 24, 22, 0.08) !important;
  transform: none !important;
}

.form-status {
  color: var(--muted) !important;
  border: 1px solid rgba(22, 24, 22, 0.12) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
}

.form-status[data-state="success"] {
  color: var(--forest) !important;
  border-color: rgba(74, 47, 30, 0.22) !important;
  background: rgba(224, 195, 154, 0.48) !important;
}

.form-status[data-state="error"] {
  color: #7a2b24 !important;
  border-color: rgba(122, 43, 36, 0.22) !important;
  background: #fff3f1 !important;
}

@media (max-width: 760px) {
  .floating-call {
    top: 88px !important;
    right: 14px !important;
    bottom: auto !important;
    width: 48px !important;
    min-height: 48px !important;
  }

  .hero {
    min-height: 660px !important;
  }

  .hero h1 {
    max-width: 10.8ch !important;
    font-size: clamp(2.5rem, 10.6vw, 3.8rem) !important;
    line-height: 1.05 !important;
  }

  .hero-copy {
    max-width: 32ch !important;
  }

  .hero-actions .button {
    min-height: 52px !important;
  }
}

/* Flat finish: Dutch utility over theatrical depth. */
.site-header {
  box-shadow: 0 1px 0 rgba(22, 24, 22, 0.08) !important;
}

:is(.intro-inner a, .service-card, .gallery-item, .gallery-caption, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .compass-visual, .compass-panel, .compass-route-card, .kinetic-board, .kinetic-chip, .world-step, .world-plan-board, .story-stage, .story-layer, .runway-stage, .runway-card, .runway-device, .atelier-photo, .material-stage, .material-panel, .material-swatch-strip, .work-proof-cockpit, .quote-launch-map, .quote-launch-node, .quote-cockpit, .quote-next-panel, .fast-request-panel, .fast-route-card, .form-stage, .config-step, .option-card, .sub-option-card, .micro-option-card, .config-summary, .upload-note, .quote-preview-shell, .assistant-card, .assistant-briefing, .assistant-template, .assistant-messages, .assistant-message, .auth-card, .auth-account-map, .gallery-admin-card, .model-panel, .quality-proof-notes li) {
  box-shadow: none !important;
}

:is(.intro-inner a:hover, .service-card:hover, .gallery-item:hover, .quality-check-card:hover, .process-grid article:hover, .faq-list details:hover, .fast-route-card:hover, .option-card:hover, .sub-option-card:hover, .micro-option-card:hover, .button:hover, .nav-cta:hover) {
  box-shadow: none !important;
}

.floating-call {
  box-shadow: none !important;
}

.journey-pilot {
  display: none !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.journey-pilot.is-visible {
  display: grid !important;
}

@media (max-width: 980px) {
  .journey-pilot,
  .journey-pilot.is-visible {
    display: none !important;
  }
}

/* Surgical cleanup: remove leftover theatrical layers instead of dimming them. */
.brand,
.brand:hover,
.brand:focus-visible,
.hero-service-stack,
.hero-service-stack a,
.quality-score-strip,
.quality-proof-board,
.quality-proof-notes li,
.quote-assistant,
.quote-assistant span,
.quote-assistant strong,
.quote-assistant p,
.quote-page .sequence-guide,
.sequence-guide,
.sequence-guide li,
.sequence-guide span,
.sequence-guide li.is-active,
.sequence-guide li.is-complete,
.model-view-area,
.model-view-area::before,
.model-canvas-wrap,
.model-reference,
.model-reference-card,
.model-project-list button,
.gallery-admin-flow,
.gallery-admin-flow span,
.gallery-admin-flow span:first-child,
.gallery-admin-health,
.gallery-admin-health span,
.gallery-admin-health strong,
.gallery-admin-gate,
.gallery-admin-gate .eyebrow,
.gallery-admin-gate h2,
.gallery-admin-card,
.gallery-admin-sidebar,
.gallery-admin-workspace,
.gallery-admin-status,
.atelier-photo img,
.material-swatch-strip,
.auth-proof span,
.floating-call,
.assistant-launch,
.assistant-reward,
.auth-reward,
.gallery-admin-reward {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}

.brand,
.quote-assistant,
.quote-page .sequence-guide,
.model-view-area,
.gallery-admin-flow,
.gallery-admin-health,
.gallery-admin-gate {
  border: 1px solid rgba(22, 24, 22, 0.13) !important;
}

.brand {
  background: var(--forest) !important;
  transform: none !important;
}

.brand::before,
.brand::after,
.site-header::after,
.model-view-area::before {
  display: none !important;
  opacity: 1 !important;
}

.brand img,
.brand-meta {
  z-index: 1;
}

.brand:hover,
.brand:focus-visible {
  border-color: rgba(22, 24, 22, 0.24) !important;
  transform: none !important;
}

.site-header.is-scrolled .brand-meta {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  width: auto !important;
  padding-left: 12px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.journey-pilot:not(.is-visible),
.sequence-reward,
.assistant-reward:empty,
.auth-reward:empty,
.gallery-admin-reward:empty {
  display: none !important;
}

.assistant-reward,
.auth-reward,
.gallery-admin-reward {
  opacity: 1 !important;
}

.hero-service-stack,
.quote-assistant,
.quote-page .sequence-guide,
.model-view-area,
.gallery-admin-flow,
.gallery-admin-health,
.gallery-admin-gate {
  border-radius: 8px !important;
  clip-path: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}

.sequence-guide li,
.gallery-admin-flow span,
.auth-proof span {
  border-radius: 999px !important;
}

:root[data-theme="dark"] .brand,
:root[data-theme="dark"] .quote-assistant,
:root[data-theme="dark"] .quote-page .sequence-guide,
:root[data-theme="dark"] .model-view-area,
:root[data-theme="dark"] .gallery-admin-flow,
:root[data-theme="dark"] .gallery-admin-health,
:root[data-theme="dark"] .gallery-admin-gate {
  border-color: rgba(237, 244, 239, 0.16) !important;
  box-shadow: none !important;
}

/* Final specificity lock: this wins over legacy important rules. */
:root body :is(.intro-inner a, .service-card, .gallery-item, .gallery-caption, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .impact-rail-inner > div, .compass-visual, .compass-panel, .compass-route-card, .kinetic-board, .kinetic-chip, .world-step, .world-plan-board, .story-stage, .story-layer, .runway-stage, .runway-card, .runway-device, .feature-photo img, .atelier-photo, .atelier-photo img, .material-stage, .material-panel, .material-swatch-strip, .work-proof-cockpit, .quality-proof-board, .quality-score-strip, .quality-score-strip span, .quote-route-card, .quote-launch-map, .quote-launch-node, .quote-cockpit, .quote-next-panel, .fast-request-panel, .fast-route-card, .form-stage, .config-step, .option-card, .sub-option-card, .micro-option-card, .config-summary, .upload-note, .quote-preview-shell, .quote-assistant, .quote-page .sequence-guide, .sequence-guide, .sequence-guide li, .sequence-guide span, .mobile-quick-bar, .assistant-card, .assistant-briefing, .assistant-template, .assistant-messages, .assistant-message, .assistant-notice, .auth-card, .auth-account-map, .auth-proof span, .gallery-admin-card, .gallery-admin-flow, .gallery-admin-flow span, .gallery-admin-health, .gallery-admin-gate, .gallery-admin-status, .model-panel, .model-view-area, .model-canvas-wrap, .model-reference, .model-reference-card, .model-project-list button, .journey-pilot, .floating-call, .assistant-launch) {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

:root body .site-header {
  background: #fbfaf6 !important;
}

:root body :is(.compass-hotspots small, .compass-route-card small, .kinetic-chip small, .world-step small, .runway-card small, .sequence-guide li, .sequence-guide small, .quote-copy-button, .quote-whatsapp-button, .mobile-quick-status, .assistant-trust span, .gallery-admin-flow small) {
  opacity: 1 !important;
}

:root body :is(.renovation-compass-section.is-visible, .kinetic-chip, .world-step, .story-layer, .quote-launch-node, .auth-map-node, .model-view-area, .journey-pilot, .brand) {
  transform: none !important;
}

:root body :is(.quote-copy-button:disabled, .quote-whatsapp-button[aria-disabled="true"]) {
  color: rgba(22, 24, 22, 0.62) !important;
  border-color: rgba(22, 24, 22, 0.18) !important;
  background: #ece8dc !important;
  cursor: not-allowed !important;
}

:root body .journey-pilot:not(.is-visible),
:root body .sequence-reward,
:root body .assistant-reward:empty,
:root body .auth-reward:empty,
:root body .gallery-admin-reward:empty {
  display: none !important;
  opacity: 1 !important;
}

/* Professional restraint pass: keep the content, remove childish ornament. */
:root body :is(.nav-shell, .service-card, .service-card-body, .sequence-guide li, .quote-cockpit, .quote-next-panel, .form-stage, .assistant-launch-icon)::before,
:root body :is(.nav-shell, .service-card, .service-card-body, .sequence-guide li, .sequence-guide li.is-complete span, .quote-cockpit, .quote-next-panel, .form-stage, .assistant-launch-icon)::after {
  display: none !important;
  content: none !important;
}

:root body :is(.eyebrow, .hero .eyebrow, .quote-copy .eyebrow, .section-heading .eyebrow, .world-copy .eyebrow, .story-copy .eyebrow, .runway-copy .eyebrow, .material-lab-copy .eyebrow, .auth-copy .eyebrow, .model-panel .eyebrow, .gallery-admin-hero .eyebrow) {
  border-radius: 0 !important;
  background: transparent !important;
}

:root body .service-card-body > span {
  width: max-content !important;
  margin-bottom: 14px !important;
  padding: 0 0 8px !important;
  color: var(--forest) !important;
  border-bottom: 2px solid rgba(74, 47, 30, 0.28) !important;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 0.84rem !important;
  letter-spacing: 0.1em !important;
}

:root body :is(.hero h1, .section-heading h2, .world-copy h2, .story-copy h2, .runway-copy h2, .quality-dossier-head h2, .quote-copy h1, .quote-copy h2, .auth-copy h1, .model-panel h1, .gallery-admin-hero h1, .gallery-admin-gate h2) {
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

:root body .hero h1 {
  max-width: 13ch !important;
  font-size: clamp(2.65rem, 5.2vw, 5rem) !important;
  line-height: 1.04 !important;
}

:root body :is(.section-heading h2, .compass-panel h2, .kinetic-copy h2, .world-copy h2, .story-copy h2, .runway-copy h2, .quality-dossier-head h2) {
  max-width: 16ch !important;
  font-size: clamp(2rem, 3.2vw, 3.45rem) !important;
  line-height: 1.08 !important;
}

:root body :is(.quote-assistant strong, .quote-cockpit-copy strong, .quote-next-panel strong) {
  font-family: Manrope, Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.6rem, 5.4vw, 2.15rem) !important;
  line-height: 1.08 !important;
}

:root body .model-panel h1 {
  max-width: 16ch !important;
  font-size: clamp(2rem, 3.2vw, 3.45rem) !important;
  line-height: 1.08 !important;
}

:root body .quote-page .sequence-guide {
  gap: 8px !important;
  padding: 8px !important;
  background: #fbfaf6 !important;
}

:root body .sequence-guide li {
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 58px !important;
  padding: 10px 12px !important;
  overflow: visible !important;
  border: 1px solid rgba(22, 24, 22, 0.14) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
}

:root body .sequence-guide span {
  position: static !important;
  width: 30px !important;
  height: 30px !important;
  color: var(--forest) !important;
  border: 1px solid rgba(74, 47, 30, 0.18) !important;
  border-radius: 8px !important;
  background: rgba(224, 195, 154, 0.18) !important;
}

:root body .sequence-guide li.is-active span,
:root body .sequence-guide li.is-complete span {
  color: #fffdf7 !important;
  border-color: var(--forest) !important;
  background: var(--forest) !important;
}

:root body :is(.material-specs span, .quality-score-strip span, .quote-cockpit-pills span, .assistant-route span, .assistant-field, .assistant-trust span) {
  border-radius: 8px !important;
}

:root body :is(.story-photo, .atelier-photo, .material-stage, .gallery-item, .gallery-caption, .quality-proof-board)::before,
:root body :is(.story-photo, .atelier-photo, .material-stage, .gallery-item, .gallery-caption, .quality-proof-board)::after {
  display: none !important;
  content: none !important;
}

:root body .gallery-caption {
  color: var(--ink) !important;
  border: 1px solid rgba(22, 24, 22, 0.14) !important;
  background: rgba(255, 253, 247, 0.96) !important;
}

:root body .gallery-caption :is(strong, span, small, p, em) {
  color: inherit !important;
}

:root body :is(.gallery-caption em, .gallery-case-tags em, .work-proof-flow, .material-swatch-strip, .topbar span) {
  border-radius: 8px !important;
}

:root body .gallery-admin-flow span {
  border-radius: 8px !important;
}

:root body :is(.hero-image, .compass-visual img, .story-photo img, .feature-photo img, .atelier-photo img, .material-stage img, .gallery-item img, .quality-proof-board img, .service-card img, .model-reference img) {
  transform: none !important;
}

:root body :is(.auth-tab, .auth-tabs button, .model-reference img) {
  border-radius: 8px !important;
}

@media (max-width: 760px) {
  :root body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom)) !important;
  }

  :root body .hero h1 {
    max-width: 11.5ch !important;
    font-size: clamp(2.3rem, 9.4vw, 3.45rem) !important;
    line-height: 1.08 !important;
  }

  :root body :is(.section-heading h2, .compass-panel h2, .kinetic-copy h2, .world-copy h2, .story-copy h2, .runway-copy h2, .quality-dossier-head h2, .quote-copy h1, .quote-copy h2) {
    max-width: 14ch !important;
    font-size: clamp(1.95rem, 8.2vw, 2.75rem) !important;
    line-height: 1.1 !important;
  }

  :root body .quote-page .sequence-guide {
    grid-template-columns: 1fr !important;
    position: static !important;
  }

  :root body .sequence-guide li {
    min-height: 52px !important;
  }

  :root body .mobile-quick-bar {
    gap: 4px 8px !important;
    padding: 6px 12px calc(7px + env(safe-area-inset-bottom)) !important;
    background: #fbfaf6 !important;
  }

  :root body .mobile-quick-status {
    min-height: 14px !important;
    font-size: 0.62rem !important;
  }

  :root body .mobile-quick-progress {
    height: 2px !important;
  }

  :root body .mobile-quick-bar a {
    min-height: 44px !important;
    border-radius: 8px !important;
    font-size: 0.82rem !important;
  }
}

/* Monochrome palette lock: black, white, and neutral grays only. */
:root {
  --ink: #fff;
  --muted: #c8c8c8;
  --paper: #000;
  --soft: #111;
  --line: #2a2a2a;
  --forest: #fff;
  --forest-2: #d6d6d6;
  --clay: #fff;
  --copper: #d6d6d6;
  --sage: #b8b8b8;
  --smoke: #777;
  --cream: #000;
  --gold: #fff;
  --glovo-yellow: #fff;
  --play-green: #fff;
  --cartoon-blue: #fff;
  --cartoon-red: #c8c8c8;
  --neon-blue: #fff;
  --neon-mint: #fff;
  --neon-gold: #fff;
  --black-gold: #fff;
  --black-gold-2: #cfcfcf;
}

:root[data-theme="dark"] {
  --ink: #fff;
  --muted: #c8c8c8;
  --paper: #000;
  --soft: #111;
  --line: #2a2a2a;
  --forest: #fff;
  --forest-2: #d6d6d6;
  --cream: #000;
  --glovo-yellow: #fff;
  --play-green: #fff;
  --cartoon-blue: #fff;
  --neon-blue: #fff;
  --neon-mint: #fff;
  --neon-gold: #fff;
  --black-gold: #fff;
  --black-gold-2: #cfcfcf;
}

body {
  background: var(--blue-deep) !important;
}

body::selection {
  color: #000;
  background: #fff;
}

.scroll-progress,
:root body .mobile-quick-progress {
  background: #fff !important;
}

:root body :is(.button.primary, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .assistant-form .button, .assistant-actions .button:first-child, .journey-pilot-cta, .kinetic-chip.is-active, .assistant-route span.is-active, .sequence-guide li.is-active, .sequence-guide li.is-complete, .quote-cockpit-pill.is-active, .work-proof-flow span.is-active, .filter-button.is-active, .material-tabs button.is-active, .brand) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body :is(.button.ghost, .button.secondary, .auth-link, .theme-toggle, .language-toggle, .filter-button, .gallery-model-link, .gallery-quote-link, .assistant-quick button, .assistant-template-head button, .assistant-actions .button, .mobile-quick-bar a) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: #0b0b0b !important;
}

:root body :is(.hero-service-stack, .journey-pilot, .kinetic-board, .runway-device, .work-proof-cockpit, .quote-cockpit, .quote-next-panel, .quality-score-strip, .assistant-card) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #111 !important;
}

:root body :is(.hero, .quote-page .quote-hero, .auth-main .auth-copy, .model-hero) {
  background-color: #000 !important;
}

:root body .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)) !important;
}

:root body :is(.service-card-body > span, .quote-launch-head span, .quote-launch-head strong, .sequence-guide span, .gallery-admin-flow span, .material-specs span, .assistant-trust span) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

:root body .service-card-body > span {
  border-bottom-color: rgba(255, 255, 255, 0.22) !important;
  background: transparent !important;
}

:root body :is(.form-status[data-state="success"], .assistant-notice[data-state="success"]) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
  background: #111 !important;
}

:root body :is(.quote-copy-button:disabled, .quote-whatsapp-button[aria-disabled="true"]) {
  color: #8f8f8f !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: #161616 !important;
}

:root body :is(.site-header, .mobile-quick-bar, .quote-page .sequence-guide) {
  background: var(--blue-deep) !important;
}

:root body .topbar {
  color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body .topbar :is(a, span) {
  color: #fff !important;
}

:root body .topbar-right span {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

:root body .status-dot {
  background: #fff !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1) !important;
}

:root body .site-header .brand,
:root body .nav-shell .brand,
:root body a.brand,
:root body .site-header .nav-shell a.brand {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: var(--blue-deep) !important;
}

:root body .site-header .brand-meta,
:root body .site-header .brand-meta small {
  color: #fff !important;
}

:root[data-theme="dark"] body {
  background: var(--blue-deep) !important;
}

:root[data-theme="dark"] body::selection {
  color: #000;
  background: #fff;
}

:root[data-theme="dark"] :is(.site-header, .mobile-quick-bar, .quote-page .sequence-guide) {
  background: var(--blue-deep) !important;
}

:root[data-theme="dark"] :is(.button.primary, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .assistant-form .button, .assistant-actions .button:first-child, .journey-pilot-cta, .kinetic-chip.is-active, .assistant-route span.is-active, .sequence-guide li.is-active, .sequence-guide li.is-complete, .quote-cockpit-pill.is-active, .work-proof-flow span.is-active, .filter-button.is-active, .material-tabs button.is-active, .brand) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root[data-theme="dark"] :is(.button.ghost, .button.secondary, .auth-link, .theme-toggle, .language-toggle, .filter-button, .gallery-model-link, .gallery-quote-link, .assistant-quick button, .assistant-template-head button, .assistant-actions .button, .mobile-quick-bar a) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(246, 234, 215, 0.07) !important;
}

/* Absolute final black lock. */
:root body .atelier-metrics span {
  color: #cfcfcf !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: transparent !important;
}

:root body :is(.floating-call, .assistant-launch, .assistant-launch-icon) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: var(--blue-deep) !important;
  box-shadow: none !important;
}

:root body :is(.floating-call::before, .floating-call::after, .assistant-launch-icon::after) {
  display: none !important;
}

:root body .assistant-launch-icon svg {
  color: #fff !important;
  filter: grayscale(1) contrast(1.2) !important;
}

:root body,
:root[data-theme="dark"] body {
  color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body :is(.site-header, .mobile-quick-bar, .quote-page .sequence-guide) {
  background: rgba(3, 3, 3, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

:root body .topbar {
  color: #fff !important;
  background: #030303 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
}

:root body .topbar :is(a, span) {
  color: #fff !important;
}

:root body .topbar-right span {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

:root body :is(.site-menu > a, .auth-link, .theme-toggle, .language-toggle, .button.secondary, .button.ghost, .filter-button, .gallery-model-link, .gallery-quote-link, .mobile-quick-bar a, .assistant-media-button) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

:root body .menu-toggle {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.045) !important;
}

:root body .menu-toggle span:not(.sr-only) {
  background: #fff !important;
}

:root body :is(.button.primary, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .journey-pilot-cta, .filter-button.is-active, .material-tabs button.is-active, .assistant-send-button) {
  color: #070707 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(.hero, .intro-band, .section, .services, .material-lab, .work-section, .quality-dossier-section, .faq-section, .testimonials, .quote-teaser-section, .skill-showcase, .atelier-section, .runway-section, .renovation-world-section, .renovation-story-section, .impact-rail, .renovation-compass-section, .quote-page-section, .auth-shell, .model-shell) {
  color: #fff !important;
  background: #030303 !important;
}

:root body .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #030303 98%) !important;
}

:root body :is(.hero h1, .section-heading h2, .section-text h2, .compass-panel h2, .kinetic-copy h2, .world-copy h2, .story-copy h2, .runway-copy h2, .quality-dossier-head h2, .quote-copy h1, .quote-copy h2, .skill-copy h2, .atelier-copy h2, .auth-copy h1, .model-panel h1) {
  color: #fff !important;
}

@media (max-width: 1320px) {
  :root body .nav-shell {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    justify-content: space-between !important;
    gap: 16px !important;
  }

  :root body .menu-toggle {
    display: inline-flex !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
  }

  :root body .nav-tools {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    justify-content: flex-end !important;
  }

  :root body .site-menu,
  :root body .site-header.is-scrolled .site-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: var(--gutter) !important;
    left: var(--gutter) !important;
    z-index: 20 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    max-height: min(72vh, 620px) !important;
    overflow: auto !important;
    padding: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 18px !important;
    background: rgba(3, 3, 3, 0.98) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42) !important;
  }

  :root body .site-menu.is-open {
    display: flex !important;
  }

  :root body .site-menu > a {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }

  :root body .mobile-menu-actions {
    display: grid !important;
    gap: 8px !important;
    margin-top: 6px !important;
  }
}

@media (min-width: 1321px) {
  :root body .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 760px) {
  :root body .nav-shell {
    grid-template-columns: auto auto !important;
  }

  :root body .nav-tools {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: end !important;
  }
}

:root body :is(.section-heading p, .section-text p, .compass-panel p, .kinetic-copy p, .world-copy p, .story-copy p, .runway-copy p, .quality-dossier-head p, .quote-copy p, .skill-copy p, .atelier-copy p, .auth-copy p, .model-panel p, .faq-list p, .check-list li, .hero-copy, .hero-proofline, .hero-facts) {
  color: #cfcfcf !important;
}

:root body :is(.hero-service-stack, .journey-pilot, .kinetic-board, .runway-device, .work-proof-cockpit, .quote-cockpit, .quote-next-panel, .quality-score-strip, .service-card, .gallery-item, .quality-check-card, .process-grid article, .testimonial-grid figure, .faq-list details, .runway-card, .fast-route-card, .option-card, .sub-option-card, .micro-option-card, .quote-launch-node, .material-stage, .quality-proof-board, .atelier-photo, .skill-panel, .skill-media, .auth-card, .model-panel, .model-view-area) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
}

:root body .gallery-caption {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(8, 10, 11, 0.94) !important;
}

:root body .gallery-caption small,
:root body .gallery-caption p {
  color: #cfcfcf !important;
}

:root body :is(.service-card-body > span, .quote-launch-head span, .quote-launch-head strong, .sequence-guide span, .material-specs span, .quality-score-strip span, .work-proof-flow span) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

:root body .assistant-card.assistant-simple-chat {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #070809 !important;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58) !important;
}

/* Final request-flow contrast pass: only black, white, and neutral grays. */
:root body :is(.fast-request-panel, .quote-launch-map, .quote-route-card, .fast-route-card, .form-stage, .config-step, .config-step-scope, .config-step-detail, .config-step-task, .option-card, .sub-option-card, .micro-option-card, .config-summary, .upload-note, .quote-preview-shell, .quote-assistant) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
}

:root body :is(.quote-cockpit-progress, .quote-next-badge, .config-icon) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(.quote-cockpit-progress span, .quote-next-badge strong, .quote-next-badge span, .config-icon svg) {
  color: #000 !important;
  stroke: currentColor !important;
}

:root body :is(.fast-request-panel h2, .fast-request-panel h3, .fast-route-card strong, .form-stage h2, .form-stage h3, .config-step h2, .config-step h3, .option-card strong, .sub-option-card strong, .micro-option-card strong, .quote-launch-map strong, .quote-route-card h3, .quote-assistant strong) {
  color: #fff !important;
}

:root body :is(.fast-request-panel p, .fast-request-panel small, .fast-route-card small, .form-stage p, .form-stage small, .config-step p, .config-step small, .option-card p, .sub-option-card p, .micro-option-card p, .quote-launch-map p, .quote-route-card p, .quote-preview-shell p, .quote-assistant p, .quote-cockpit-copy p, .quote-next-copy p) {
  color: #cfcfcf !important;
}

:root body .sequence-guide li,
:root body .quote-cockpit-pills span {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: #0b0d0e !important;
  box-shadow: none !important;
}

:root body .sequence-guide li :is(span, strong) {
  color: #fff !important;
}

:root body .sequence-guide li small {
  color: #cfcfcf !important;
}

:root body .sequence-guide li:is(.is-active, .is-complete),
:root body .quote-cockpit-pills span:is(.is-active, .is-complete) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .sequence-guide li:is(.is-active, .is-complete) :is(span, strong, small, p),
:root body .quote-cockpit-pills span:is(.is-active, .is-complete) {
  color: #000 !important;
}

/* Final home-card contrast fix: no light cards with white text. */
:root body :is(.intro-inner a, .compass-visual, .compass-route-card, .compass-hotspots button, .world-step, .story-layer, .skill-panel-copy, .skill-panel-copy > span) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
}

:root body :is(.intro-inner a strong, .compass-visual strong, .compass-hotspots button strong, .compass-route-card strong, .world-step strong, .story-layer strong, .skill-panel-copy strong) {
  color: #fff !important;
}

:root body :is(.intro-inner a span, .intro-inner a p, .compass-visual small, .compass-hotspots button small, .compass-route-card p, .world-step small, .story-layer p, .skill-panel-copy span, .skill-panel-copy p) {
  color: #cfcfcf !important;
}

:root body :is(.intro-inner a:hover, .intro-inner a:focus-visible, .compass-hotspots button:hover, .compass-hotspots button:focus-visible, .compass-hotspots button.is-active, .world-step.is-active) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(.intro-inner a:hover, .intro-inner a:focus-visible, .compass-hotspots button:hover, .compass-hotspots button:focus-visible, .compass-hotspots button.is-active, .world-step.is-active) :is(span, strong, small, p) {
  color: #000 !important;
}

/* Sitewide contrast sweep for inherited light cards. */
:root body :is(.compass-panel, .compass-proof span, .kinetic-board-head, .kinetic-chip, .world-step, .story-stage, .story-layer, .story-stage-labels span, .auth-account-map, .auth-map-head, .auth-map-node, .stage-head > span, .config-step-heading > span, .config-empty, .model-progress-strip, .model-progress-strip span, .model-control-block, .model-chip, .back-link) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: none !important;
}

:root body :is(.compass-panel h2, .compass-panel strong, .compass-proof strong, .kinetic-board-head strong, .kinetic-chip strong, .world-step strong, .story-layer strong, .auth-map-head strong, .auth-map-node strong, .model-control-block h2, .model-chip, .back-link) {
  color: #fff !important;
}

:root body :is(.compass-panel p, .compass-panel small, .compass-proof span, .kinetic-board-head span, .kinetic-chip small, .world-step small, .story-layer p, .story-stage-labels span, .auth-map-node small, .config-empty, .model-progress-strip small) {
  color: #cfcfcf !important;
}

:root body :is(.compass-hotspots button > span, .kinetic-chip > span, .stage-head > span, .config-step-heading > span, .auth-map-node > span, .model-progress-strip strong, .fast-route-card span) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(.kinetic-chip.is-active, .kinetic-chip:hover, .kinetic-chip:focus-visible, .model-chip.is-active, .model-chip:hover, .model-chip:focus-visible, .story-cta:hover, .story-cta:focus-visible) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(.kinetic-chip.is-active, .kinetic-chip:hover, .kinetic-chip:focus-visible, .model-chip.is-active, .model-chip:hover, .model-chip:focus-visible, .story-cta:hover, .story-cta:focus-visible) :is(span, strong, small, p) {
  color: #000 !important;
}

:root body .story-cta {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: #0b0d0e !important;
  box-shadow: none !important;
}

:root body :is(.kinetic-board-head > span, .kinetic-board-head > strong, .auth-map-head > span, .auth-map-head > strong) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: #0b0d0e !important;
  box-shadow: none !important;
}

/* Layout and contrast reset for the large visual sections. */
:root body .story-stage {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) !important;
  gap: 16px !important;
  align-items: stretch !important;
  min-height: auto !important;
  padding: 18px !important;
  overflow: visible !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 8px !important;
  background: #030303 !important;
  box-shadow: none !important;
}

:root body .story-stage::before,
:root body .story-stage::after {
  display: none !important;
}

:root body .story-photo {
  position: relative !important;
  inset: auto !important;
  grid-column: 1 !important;
  grid-row: 1 / span 4 !important;
  min-height: 520px !important;
  opacity: 1 !important;
  transform: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
}

:root body .story-photo::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 58%) !important;
}

:root body .story-layer {
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  min-height: 0 !important;
  align-content: start !important;
  padding: 18px !important;
  transform: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: none !important;
}

:root body .story-layer span {
  color: #f6fbff !important;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

:root body .story-layer small {
  color: #cfcfcf !important;
}

:root body .story-cta {
  justify-self: start !important;
  align-self: end !important;
}

:root body .material-stage {
  border-color: rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  background: #030303 !important;
  box-shadow: none !important;
}

:root body .material-stage::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 58%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08) 56%) !important;
}

:root body .material-panel {
  right: auto !important;
  bottom: 22px !important;
  left: 22px !important;
  width: min(560px, calc(100% - 44px)) !important;
  max-width: none !important;
  padding: 22px !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(3, 3, 3, 0.96) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34) !important;
}

:root body .material-panel :is(span, h3, p, strong, small) {
  color: inherit !important;
}

:root body .material-panel p,
:root body .material-specs small {
  color: #cfcfcf !important;
}

:root body .material-specs span {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: #111 !important;
}

:root body .quality-proof-notes li,
:root body .proof-list span,
:root body .contact-strip a,
:root body .quote-route-card {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: none !important;
}

:root body .quality-proof-notes li::before,
:root body .proof-list span::before {
  background: #fff !important;
}

:root body .quality-check-card > span,
:root body .quality-score-strip strong {
  color: #f6fbff !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

:root body .quality-proof-board figcaption {
  color: #fff !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72) !important;
}

:root body .quality-score-strip span small {
  color: #eef7ff !important;
}

:root body .quote-route-card :is(h3, p) {
  color: #fff !important;
}

:root body .work-proof-cockpit {
  grid-template-columns: auto minmax(180px, 1fr) minmax(260px, 0.8fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: none !important;
}

:root body .work-proof-count {
  color: #000 !important;
  background: #fff !important;
}

:root body .work-proof-count :is(strong, span) {
  color: #000 !important;
}

:root body .work-proof-copy :is(span, h3, p) {
  color: #fff !important;
}

:root body .work-proof-copy p {
  color: #cfcfcf !important;
}

:root body .work-proof-flow span {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: #111 !important;
}

:root body .work-proof-flow span.is-active {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .story-cta {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  width: fit-content !important;
  min-width: min(100%, 220px) !important;
  border-radius: 8px !important;
}

:root body :is(.impact-rail, .impact-rail-inner > div, .world-plan-board, .world-plan-board li) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: none !important;
}

:root body :is(.impact-rail-inner strong, .world-plan-board > strong, .world-plan-board li strong) {
  color: #fff !important;
}

:root body :is(.impact-rail-inner p, .world-plan-board > span, .world-plan-board li small) {
  color: #cfcfcf !important;
}

:root body :is(.impact-rail-inner span, .world-plan-board li > span) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .proof-list {
  gap: 8px !important;
}

:root body .proof-list span {
  min-height: 42px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  line-height: 1.25 !important;
}

:root body .proof-list span::before {
  position: static !important;
  display: block !important;
  width: 8px !important;
  height: 8px !important;
}

/* Final journey pilot contrast lock. */
:root body .journey-pilot,
:root body .journey-pilot.is-visible {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #0b0d0e !important;
  box-shadow: none !important;
}

:root body .journey-pilot-intel {
  color: #fff !important;
  background: transparent !important;
}

:root body .journey-pilot-intel span {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .journey-pilot-intel strong {
  color: #fff !important;
}

:root body .journey-pilot-intel small {
  color: #cfcfcf !important;
}

:root body .journey-pilot-steps a {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: #111 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

:root body .journey-pilot-steps a span {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .journey-pilot-steps a small {
  color: #fff !important;
  opacity: 1 !important;
}

:root body .journey-pilot-steps a:is(.is-active, :hover, :focus-visible) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .journey-pilot-steps a:is(.is-active, :hover, :focus-visible) small {
  color: #000 !important;
}

:root body .journey-pilot-steps a:is(.is-active, :hover, :focus-visible) span {
  color: #fff !important;
  border-color: #000 !important;
  background: var(--blue-deep) !important;
}

:root body .journey-pilot-steps a.is-complete {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: #111 !important;
}

:root body .journey-pilot-steps a.is-complete span {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .journey-pilot-cta {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  :root body .story-stage {
    grid-template-columns: 1fr !important;
  }

  :root body .story-photo {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: 360px !important;
  }

  :root body .material-panel {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    margin: 12px !important;
  }

  :root body .work-proof-cockpit {
    grid-template-columns: auto 1fr !important;
  }

  :root body .work-proof-flow,
  :root body .work-proof-cta {
    grid-column: 1 / -1 !important;
  }
}

/* Final desktop quote-page composition and contrast lock. */
:root body.quote-page,
:root body.quote-page .quote-page-main {
  color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body.quote-page .quote-page-main {
  overflow: hidden;
}

:root body.quote-page .quote-next-status,
:root body.quote-page .quote-next-status strong,
:root body.quote-page .quote-next-status span,
:root body.quote-page .quote-cockpit-progress,
:root body.quote-page .quote-cockpit-progress span {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  text-shadow: none !important;
}

:root body.quote-page .quote-next-status {
  min-width: 166px;
}

:root body.quote-page .sequence-guide li::after {
  display: none !important;
}

:root body.quote-page .sequence-guide li {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: #0b0d0e !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

:root body.quote-page .sequence-guide li span {
  color: #000 !important;
  border: 1px solid #fff !important;
  background: #fff !important;
}

:root body.quote-page .sequence-guide li :is(strong, small) {
  color: inherit !important;
}

:root body.quote-page .sequence-guide li small {
  color: #cfcfcf !important;
}

:root body.quote-page .sequence-guide li.is-active {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.quote-page .sequence-guide li.is-active :is(strong, small) {
  color: #000 !important;
}

:root body.quote-page .sequence-guide li.is-active span {
  color: #fff !important;
  border-color: #000 !important;
  background: var(--blue-deep) !important;
}

:root body.quote-page .sequence-guide li.is-complete:not(.is-active) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: #0b0d0e !important;
}

:root body.quote-page .sequence-guide li.is-complete:not(.is-active) :is(strong, small) {
  color: #fff !important;
}

:root body.quote-page .sequence-guide li.is-complete:not(.is-active) span {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.quote-page .quote-cockpit-pills span.is-complete:not(.is-active) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: #0b0b0b !important;
}

:root body.quote-page .quote-cockpit,
:root body.quote-page .quote-next-panel,
:root body.quote-page .fast-request-panel,
:root body.quote-page .form-stage {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0b0d0e !important;
  box-shadow: none !important;
}

:root body.quote-page :is(.quote-cockpit-copy > span, .quote-next-copy span, .fast-request-copy span) {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

:root body.quote-page :is(.quote-cockpit-copy p, .quote-next-copy p, .fast-request-copy p) {
  color: #cfcfcf !important;
}

:root body.quote-page .quote-next-action {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.quote-page .fast-route-card {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: #0b0d0e !important;
}

:root body.quote-page .fast-route-card span {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

/* Quote page form contrast guard: keep every nested service control black/white. */
:root body.quote-page :is(
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .config-step,
  .config-step-scope,
  .config-step-detail,
  .config-step-task,
  .config-summary,
  .config-empty,
  .upload-note,
  .quote-preview-shell,
  .quote-preview,
  .work-item,
  .form-status
) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: #0b0d0e !important;
  box-shadow: none !important;
}

:root body.quote-page :is(
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .config-step,
  .config-summary,
  .config-empty,
  .upload-note,
  .quote-preview,
  .work-item,
  .work-actions span,
  .builder-heading p,
  .stage-head p
) :is(strong, small, span, p, h3, h4, label) {
  color: inherit !important;
}

:root body.quote-page :is(.fast-route-card small, .config-copy small, .config-step-heading p, .work-item span, .upload-note > span:last-child, .quote-preview:not(.is-filled)) {
  color: #d6d6d6 !important;
}

:root body.quote-page :is(.fast-route-card:hover, .fast-route-card.is-active, .option-card:hover, .option-card.is-active, .sub-option-card:hover, .sub-option-card.is-active, .micro-option-card:hover, .micro-option-card.is-active) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body.quote-page :is(.fast-route-card:hover, .fast-route-card.is-active, .option-card:hover, .option-card.is-active, .sub-option-card:hover, .sub-option-card.is-active, .micro-option-card:hover, .micro-option-card.is-active) :is(strong, small, span, p) {
  color: #000 !important;
}

:root body.quote-page :is(.config-icon, .stage-head > span, .config-step-heading > span, .file-chip) {
  color: #000 !important;
  border: 1px solid #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body.quote-page :is(.option-card:hover, .option-card.is-active, .sub-option-card:hover, .sub-option-card.is-active, .micro-option-card:hover, .micro-option-card.is-active) .config-icon {
  color: #fff !important;
  border-color: #000 !important;
  background: var(--blue-deep) !important;
}

:root body.quote-page :is(.field-group label, .consent-line, .consent-line span, .work-actions span) {
  color: #fff !important;
}

:root body.quote-page .field-group :is(input, select, textarea) {
  color: #000 !important;
  border: 1px solid #fff !important;
  background: #fff !important;
  caret-color: #000 !important;
}

:root body.quote-page .field-group :is(input, textarea)::placeholder {
  color: #555 !important;
  opacity: 1 !important;
}

:root body.quote-page .field-group select option {
  color: #000 !important;
  background: #fff !important;
}

:root body.quote-page :is(.change-option-button, .work-item-actions button, .quote-next-action, .quote-copy-button, .quote-whatsapp-button, .button.ghost, .button.primary) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.quote-page :is(.change-option-button, .work-item-actions button, .quote-next-action, .quote-copy-button, .quote-whatsapp-button, .button.ghost, .button.primary):is(:hover, :focus-visible) {
  color: #fff !important;
  border-color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body.quote-page :is(.quote-copy-button:disabled, .quote-whatsapp-button[aria-disabled="true"]) {
  color: #777 !important;
  border-color: #777 !important;
  background: #141414 !important;
  opacity: 1 !important;
}

:root body.quote-page .quote-cockpit-pills span {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: #0b0d0e !important;
}

:root body.quote-page .quote-cockpit-pills span:is(.is-active, .is-complete) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.quote-page .quote-preview.is-filled,
:root body.quote-page .config-summary.is-filled,
:root body.quote-page .form-status[data-state="success"],
:root body.quote-page .form-status[data-state="error"] {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

@media (min-width: 1181px) {
  :root body .nav-shell {
    gap: clamp(20px, 2vw, 34px) !important;
    padding-inline: clamp(48px, 4.5vw, 88px) !important;
  }

  :root body .site-menu {
    gap: clamp(16px, 1.25vw, 26px) !important;
    align-items: center !important;
  }

  :root body .site-menu > a {
    min-height: 48px !important;
    padding: 0 2px !important;
    border: 0 !important;
    background: transparent !important;
  }

  :root body .site-menu > a::after {
    bottom: 4px !important;
    height: 2px !important;
    background: #fff !important;
  }

  :root body .site-menu > a.is-current,
  :root body .site-menu > a:hover,
  :root body .site-menu > a:focus-visible {
    color: #fff !important;
    background: transparent !important;
  }

  :root body.quote-page .quote-page-main {
    padding-inline: clamp(28px, 4vw, 76px) !important;
  }

  :root body.quote-page .quote-page-section {
    width: min(1480px, 100%) !important;
    max-width: 1480px !important;
    margin-inline: auto !important;
    grid-template-columns: minmax(420px, 0.82fr) minmax(640px, 1.18fr) !important;
    gap: clamp(56px, 5vw, 96px) !important;
    align-items: start !important;
    padding-top: clamp(60px, 5vw, 92px) !important;
  }

  :root body.quote-page .quote-form {
    width: 100% !important;
    min-width: 0 !important;
  }

  :root body.quote-page .sequence-guide {
    gap: 10px !important;
    padding: 10px !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    background: rgba(3, 3, 3, 0.96) !important;
  }

  :root body.quote-page .sequence-guide li {
    min-height: 76px !important;
    padding: 12px 14px 12px 58px !important;
  }

  :root body.quote-page .sequence-guide li span {
    top: 50% !important;
    left: 14px !important;
    width: 34px !important;
    height: 34px !important;
    transform: translateY(-50%) !important;
  }

  :root body.quote-page .sequence-guide strong {
    font-size: 0.92rem !important;
  }

  :root body.quote-page .sequence-guide small {
    font-size: 0.76rem !important;
  }

  :root body.quote-page .quote-cockpit {
    grid-template-columns: 96px minmax(280px, 1fr) minmax(260px, 0.82fr) !important;
    gap: 18px !important;
    padding: 22px !important;
  }

  :root body.quote-page .quote-cockpit-progress {
    min-width: 96px !important;
    min-height: 56px !important;
  }

  :root body.quote-page .quote-cockpit-pills {
    gap: 10px !important;
  }

  :root body.quote-page .quote-next-panel {
    grid-template-columns: auto minmax(300px, 1fr) auto !important;
    gap: 18px !important;
    padding: 18px !important;
  }
}

@media (min-width: 1181px) {
  :root body.quote-page .site-header .nav-shell .site-menu > a,
  :root body:not(.quote-page) .site-header .nav-shell .site-menu > a {
    color: #fff !important;
    border-width: 0 !important;
    border-color: transparent !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }

  :root body.quote-page .site-header .nav-shell .site-menu > a.is-current,
  :root body.quote-page .site-header .nav-shell .site-menu > a:hover,
  :root body.quote-page .site-header .nav-shell .site-menu > a:focus-visible,
  :root body:not(.quote-page) .site-header .nav-shell .site-menu > a.is-current,
  :root body:not(.quote-page) .site-header .nav-shell .site-menu > a:hover,
  :root body:not(.quote-page) .site-header .nav-shell .site-menu > a:focus-visible {
    color: #fff !important;
    background: transparent !important;
    background-color: transparent !important;
  }
}

/* Final quote stepper layout lock: numbers stay inside cards. */
:root body.quote-page .sequence-guide li,
:root body.quote-page .sequence-guide li.is-active,
:root body.quote-page .sequence-guide li.is-complete {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  align-content: center !important;
  column-gap: 12px !important;
  row-gap: 2px !important;
  min-height: 76px !important;
  padding: 12px !important;
  overflow: hidden !important;
}

:root body.quote-page .sequence-guide li span,
:root body.quote-page .sequence-guide li.is-active span,
:root body.quote-page .sequence-guide li.is-complete span {
  position: static !important;
  inset: auto !important;
  grid-row: 1 / span 2 !important;
  grid-column: 1 !important;
  width: 34px !important;
  height: 34px !important;
  transform: none !important;
}

:root body.quote-page .sequence-guide li strong,
:root body.quote-page .sequence-guide li small {
  position: static !important;
  z-index: 1 !important;
  grid-column: 2 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

:root body.quote-page .sequence-guide li strong {
  align-self: end !important;
}

:root body.quote-page .sequence-guide li small {
  align-self: start !important;
}

@media (max-width: 680px) {
  :root body.quote-page .sequence-guide li,
  :root body.quote-page .sequence-guide li.is-active,
  :root body.quote-page .sequence-guide li.is-complete {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    min-height: 58px !important;
    padding: 10px !important;
  }

  :root body.quote-page .sequence-guide li span,
  :root body.quote-page .sequence-guide li.is-active span,
  :root body.quote-page .sequence-guide li.is-complete span {
    width: 30px !important;
    height: 30px !important;
  }
}

/* Final fixed-black page shell lock after removing theme switching. */
:root body :is(.quote-page-main, .auth-main, .model-main, .gallery-admin-main) {
  color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body :is(.auth-shell, .model-shell, .gallery-admin-hero, .gallery-admin-app, .gallery-admin-gate) {
  color: #fff !important;
}

/* Final language switch lock for NL / ES / EN. */
:root body .language-toggle {
  display: inline-grid !important;
  grid-template-columns: repeat(3, minmax(42px, 1fr)) !important;
  min-width: 132px !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

:root body .language-toggle button {
  min-width: 42px !important;
  color: #fff !important;
  border: 0 !important;
  background: transparent !important;
}

:root body .language-toggle button.is-active {
  color: #000 !important;
  background: #fff !important;
}

/* Final Ideas AI chat lock: testable, monochrome, high contrast. */
:root body .assistant-panel {
  width: min(430px, calc(100% - 24px)) !important;
  color: #fff !important;
}

:root body .assistant-card.assistant-simple-chat {
  gap: 14px !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 8px !important;
  background: #0a0a0a !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.64) !important;
}

:root body .assistant-card.assistant-simple-chat :is(.assistant-ai-avatar, .assistant-message-avatar) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body .assistant-card.assistant-simple-chat :is(.avatar-lines, .avatar-spark) {
  stroke: #000 !important;
}

:root body .assistant-simple-chat .assistant-head span[data-assistant-eyebrow] {
  color: #d8d8d8 !important;
  border: 0 !important;
  background: transparent !important;
}

:root body .assistant-simple-chat .assistant-head h2,
:root body .assistant-simple-chat .assistant-close::before {
  color: #fff !important;
}

:root body .assistant-simple-chat .assistant-close {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
  background: #151515 !important;
}

:root body .assistant-simple-chat .assistant-intro {
  color: #e0e0e0 !important;
}

:root body .assistant-simple-chat .assistant-session-bar {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 8px !important;
  color: #fff !important;
}

:root body .assistant-simple-chat .assistant-session-new,
:root body .assistant-simple-chat .assistant-session-picker select {
  min-height: 40px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
  font: inherit !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

:root body .assistant-simple-chat .assistant-session-new {
  padding: 0 12px !important;
  color: #000 !important;
  background: #fff !important;
}

:root body .assistant-simple-chat .assistant-session-picker {
  min-width: 0 !important;
  display: grid !important;
  gap: 4px !important;
}

:root body .assistant-simple-chat .assistant-session-picker span,
:root body .assistant-simple-chat [data-assistant-session-id] {
  color: #d8d8d8 !important;
  font-size: 0.66rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

:root body .assistant-simple-chat .assistant-session-picker select {
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 30px 0 10px !important;
  color: #fff !important;
  background: #111 !important;
}

:root body .assistant-simple-chat [data-assistant-session-id] {
  align-self: center !important;
  padding: 8px 9px !important;
  color: #000 !important;
  border-radius: 8px !important;
  background: #fff !important;
  letter-spacing: 0 !important;
}

@media (max-width: 420px) {
  :root body .assistant-simple-chat .assistant-session-bar {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  :root body .assistant-simple-chat .assistant-session-new {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
}

:root body .assistant-simple-chat .assistant-notice,
:root body .assistant-simple-chat .assistant-notice[data-state="success"] {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  background: #101010 !important;
  box-shadow: none !important;
}

:root body .assistant-simple-chat .assistant-messages {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: var(--blue-deep) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

:root body .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: #141414 !important;
}

:root body .assistant-simple-chat .assistant-message.is-user .assistant-message-body {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body p,
:root body .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body figcaption,
:root body .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body small {
  color: #fff !important;
}

:root body .assistant-simple-chat .assistant-message.is-user .assistant-message-body p,
:root body .assistant-simple-chat .assistant-message.is-user .assistant-message-body figcaption,
:root body .assistant-simple-chat .assistant-message.is-user .assistant-message-body small {
  color: #000 !important;
}

:root body .assistant-simple-chat .assistant-attachments,
:root body .assistant-simple-chat .assistant-attachment-chip {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: #111 !important;
}

:root body .assistant-simple-chat .assistant-attachments > strong,
:root body .assistant-simple-chat .assistant-attachment-chip small,
:root body .assistant-simple-chat .assistant-attachment-chip button {
  color: #fff !important;
}

:root body .assistant-simple-chat .assistant-attachment-chip em {
  color: #000 !important;
  background: #fff !important;
}

:root body .assistant-simple-chat .assistant-media-button {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: #111 !important;
}

:root body .assistant-simple-chat .assistant-media-button:hover,
:root body .assistant-simple-chat .assistant-media-button:focus-visible {
  color: #000 !important;
  background: #fff !important;
}

:root body .assistant-simple-chat .assistant-form textarea {
  color: #fff !important;
  caret-color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: #181818 !important;
}

:root body .assistant-simple-chat .assistant-form textarea::placeholder {
  color: #bdbdbd !important;
  opacity: 1 !important;
}

:root body .assistant-simple-chat .assistant-send-button {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body .assistant-simple-chat .assistant-send-button:disabled {
  color: #777 !important;
  border-color: #2a2a2a !important;
  background: #161616 !important;
}

/* Final auth surface lock: no infrastructure copy, strict black/white contrast. */
:root body.auth-page .auth-card,
:root body.auth-page .auth-session {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  background: #111 !important;
  box-shadow: none !important;
}

:root body.auth-page .auth-tabs {
  gap: 8px !important;
  padding: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 8px !important;
  background: var(--blue-deep) !important;
}

:root body.auth-page .auth-tabs button {
  min-height: 58px !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  border-radius: 8px !important;
  background: #111 !important;
  box-shadow: none !important;
}

:root body.auth-page .auth-tabs button.is-active {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.auth-page .auth-card :is(label, .field-group label) {
  color: #fff !important;
}

:root body.auth-page .auth-card input {
  color: #000 !important;
  caret-color: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.82) !important;
  background: #fff !important;
}

:root body.auth-page .auth-card input::placeholder {
  color: #555 !important;
  opacity: 1 !important;
}

:root body.auth-page .auth-card .button.primary,
:root body.auth-page .auth-session .button.primary {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.auth-page .auth-status {
  color: #fff !important;
}

:root body.auth-page .auth-status[data-state="error"] {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  background: #1a1a1a !important;
}

:root body.auth-page .auth-proof span,
:root body.auth-page .auth-map-node,
:root body.auth-page .auth-account-map {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: #111 !important;
}

:root body.auth-page .auth-proof span::before,
:root body.auth-page .auth-map-node > span {
  background: #fff !important;
  color: #000 !important;
}

:root body.auth-page .auth-map-node small,
:root body.auth-page .auth-copy p:not(.eyebrow) {
  color: #e0e0e0 !important;
}

@media (max-width: 720px) {
  :root body.auth-page .language-toggle {
    width: 112px !important;
    margin-right: 48px !important;
    grid-template-columns: repeat(3, 36px) !important;
    justify-content: end !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    background: var(--blue-deep) !important;
  }

  :root body.auth-page .language-toggle button {
    min-width: 36px !important;
    min-height: 36px !important;
    padding: 0 !important;
    color: #fff !important;
    background: #0b0b0b !important;
    font-size: 0.76rem !important;
  }

  :root body.auth-page .language-toggle button.is-active {
    color: #000 !important;
    background: #fff !important;
  }

  :root body.auth-page .floating-call.assistant-launch {
    top: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
    color: #000 !important;
    border-color: #fff !important;
    background: #fff !important;
  }
}

/* Social navigation: desktop dropdown, compact mobile icons. */
:root body .mobile-social-links {
  display: none !important;
}

:root body .social-dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 48px !important;
  color: #fff !important;
  font: inherit !important;
}

:root body .social-dropdown summary {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 2px !important;
  color: #fff !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  list-style: none !important;
  white-space: nowrap !important;
}

:root body .social-dropdown summary::-webkit-details-marker {
  display: none !important;
}

:root body .social-dropdown summary::after {
  width: 7px !important;
  height: 7px !important;
  content: "" !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: translateY(-2px) rotate(45deg) !important;
  transition: transform 160ms ease !important;
}

:root body .social-dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg) !important;
}

:root body .social-dropdown-panel {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  z-index: 40 !important;
  width: 196px !important;
  display: grid !important;
  gap: 5px !important;
  padding: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
  background: var(--blue-deep) !important;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45) !important;
}

:root body .social-dropdown:not([open]) > .social-dropdown-panel {
  display: none !important;
}

:root body .social-dropdown-panel a {
  min-height: 42px !important;
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 8px 10px !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  background: #111 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

:root body .social-dropdown-panel a::after {
  display: none !important;
}

:root body .social-dropdown-panel a:hover,
:root body .social-dropdown-panel a:focus-visible {
  color: #000 !important;
  background: #fff !important;
}

:root body .social-dropdown-panel a span {
  width: 28px !important;
  height: 28px !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #000 !important;
  border-radius: 999px !important;
  background: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
}

:root body .social-dropdown-panel a:hover span,
:root body .social-dropdown-panel a:focus-visible span {
  color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body .site-footer address a[data-facebook-footer],
:root body .site-footer address a[data-tiktok-footer],
:root body .site-footer address a[data-instagram-footer] {
  color: #fff !important;
  font-weight: 850 !important;
}

@media (max-width: 1320px) {
  :root body .site-menu .social-dropdown {
    width: 100% !important;
    display: block !important;
    min-height: auto !important;
  }

  :root body .site-menu .social-dropdown summary {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }

  :root body .site-menu .social-dropdown[open] summary {
    color: #000 !important;
    background: #fff !important;
  }

  :root body .site-menu .social-dropdown-panel {
    position: static !important;
    width: 100% !important;
    margin-top: 8px !important;
    box-shadow: none !important;
  }
}

@media (max-width: 760px) {
  :root body .nav-shell {
    grid-template-columns: auto minmax(86px, 1fr) auto !important;
    gap: 10px !important;
  }

  :root body .mobile-social-links {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    justify-self: end !important;
    align-items: center !important;
    gap: 6px !important;
  }

  :root body .social-icon {
    width: 36px !important;
    height: 36px !important;
    display: inline-grid !important;
    place-items: center !important;
    color: #000 !important;
    border: 1px solid #fff !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  :root body .social-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  :root body .social-icon path {
    fill: currentColor !important;
    stroke: none !important;
  }

  :root body .social-icon rect,
  :root body .social-icon circle {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
  }

  :root body .menu-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }

  :root body .site-menu .social-dropdown {
    display: none !important;
  }
}

/* Profile configuration surface. */
:root body.profile-page {
  background: var(--blue-deep) !important;
  color: #fff !important;
}

:root body.profile-page .profile-main {
  min-height: 100vh;
  padding: clamp(120px, 12vw, 172px) clamp(16px, 5vw, 72px) 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #000;
  background-size: 72px 72px;
}

:root body.profile-page .profile-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

:root body.profile-page .profile-hero {
  max-width: 820px;
  display: grid;
  gap: 18px;
}

:root body.profile-page .profile-hero h1 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

:root body.profile-page .profile-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #dfdfdf !important;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

:root body.profile-page .profile-gate,
:root body.profile-page .profile-app {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #101010;
  box-shadow: none;
}

:root body.profile-page .profile-gate {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
}

:root body.profile-page .profile-gate[hidden],
:root body.profile-page .profile-app[hidden],
:root body.profile-page .profile-panel[hidden] {
  display: none !important;
}

:root body.profile-page .profile-gate h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

:root body.profile-page .profile-gate p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #dfdfdf;
}

:root body.profile-page .profile-app {
  min-height: 720px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

:root body.profile-page .profile-sidebar {
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

:root body.profile-page .profile-avatar-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #161616;
}

:root body.profile-page .profile-avatar,
:root body.profile-page .profile-photo-preview {
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #000;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  font-weight: 950;
}

:root body.profile-page .profile-avatar {
  width: 64px;
  height: 64px;
  font-size: 1.15rem;
}

:root body.profile-page .profile-photo-preview {
  width: 132px;
  height: 132px;
  font-size: 2rem;
}

:root body.profile-page .profile-avatar img,
:root body.profile-page .profile-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root body.profile-page .profile-avatar-card strong,
:root body.profile-page .profile-avatar-card span {
  min-width: 0;
  display: block;
  color: #fff;
}

:root body.profile-page .profile-avatar-card strong {
  overflow: hidden;
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:root body.profile-page .profile-avatar-card span {
  margin-top: 4px;
  color: #cfcfcf;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

:root body.profile-page .profile-tabs {
  display: grid;
  gap: 8px;
}

:root body.profile-page .profile-tabs button,
:root body.profile-page .profile-logout,
:root body.profile-page .profile-inline-actions .button,
:root body.profile-page .profile-panel .button,
:root body.profile-page .profile-api-form .button {
  min-height: 48px;
  border-radius: 8px !important;
}

:root body.profile-page .profile-tabs button {
  width: 100%;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #101010;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

:root body.profile-page .profile-tabs button.is-active,
:root body.profile-page .profile-tabs button:hover,
:root body.profile-page .profile-tabs button:focus-visible {
  color: #000;
  border-color: #fff;
  background: #fff;
}

:root body.profile-page .profile-logout {
  align-self: end;
}

:root body.profile-page .profile-workspace {
  min-width: 0;
  padding: clamp(18px, 3vw, 34px);
}

:root body.profile-page .profile-status {
  min-height: 0;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 850;
}

:root body.profile-page .profile-status:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #161616;
}

:root body.profile-page .profile-status[data-state="success"] {
  color: #000;
  border-color: #fff;
  background: #fff;
}

:root body.profile-page .profile-panel {
  display: grid;
  gap: 22px;
}

:root body.profile-page .profile-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

:root body.profile-page .profile-panel-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

:root body.profile-page .profile-panel-head .eyebrow,
:root body.profile-page .profile-hero .eyebrow,
:root body.profile-page .profile-gate .eyebrow {
  color: #cfcfcf !important;
  background: #242424 !important;
}

:root body.profile-page .profile-form,
:root body.profile-page .profile-mini-card,
:root body.profile-page .profile-api-form,
:root body.profile-page .profile-knowledge-form,
:root body.profile-page .profile-permission-card,
:root body.profile-page .profile-knowledge-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #141414;
}

:root body.profile-page .profile-form,
:root body.profile-page .profile-knowledge-form {
  padding: clamp(16px, 3vw, 28px);
}

:root body.profile-page .profile-upload {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

:root body.profile-page .field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

:root body.profile-page .profile-wide {
  grid-column: 1 / -1;
}

:root body.profile-page .field-group {
  display: grid;
  gap: 8px;
}

:root body.profile-page .field-group label {
  color: #fff !important;
  font-size: 0.86rem;
  font-weight: 950;
}

:root body.profile-page .field-group :is(input, select, textarea) {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: #fff !important;
  caret-color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 8px;
  background: var(--blue-deep) !important;
  font: inherit;
  box-shadow: none !important;
}

:root body.profile-page .field-group textarea {
  resize: vertical;
}

:root body.profile-page .field-group :is(input, select, textarea)::placeholder {
  color: #bdbdbd !important;
  opacity: 1;
}

:root body.profile-page .field-group input[readonly] {
  color: #d5d5d5 !important;
  background: #1f1f1f !important;
}

:root body.profile-page .profile-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

:root body.profile-page .profile-mini-card {
  padding: 22px;
  display: grid;
  gap: 14px;
}

:root body.profile-page .profile-mini-card > span,
:root body.profile-page .profile-permission-card small,
:root body.profile-page .profile-knowledge-card small {
  color: #cfcfcf;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

:root body.profile-page .profile-mini-card h3,
:root body.profile-page .profile-permission-card strong,
:root body.profile-page .profile-knowledge-card strong {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}

:root body.profile-page .profile-mini-card p,
:root body.profile-page .profile-knowledge-card p,
:root body.profile-page .profile-empty {
  margin: 0;
  color: #dfdfdf;
}

:root body.profile-page .profile-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

:root body.profile-page .profile-api-form {
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

:root body.profile-page .profile-permission-list,
:root body.profile-page .profile-knowledge-list {
  display: grid;
  gap: 12px;
}

:root body.profile-page .profile-permission-card,
:root body.profile-page .profile-knowledge-card {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

:root body.profile-page .profile-scope-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

:root body.profile-page .profile-scope-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #000;
  border-radius: 999px;
  background: #fff;
  font-weight: 950;
}

:root body.profile-page .profile-knowledge-card > div {
  min-width: 0;
  display: grid;
  gap: 8px;
}

:root body.profile-page .button.primary,
:root body.profile-page .nav-cta {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.profile-page .button.ghost,
:root body.profile-page .button.danger {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: var(--blue-deep) !important;
}

:root body.profile-page .button.ghost:hover,
:root body.profile-page .button.ghost:focus-visible,
:root body.profile-page .button.danger:hover,
:root body.profile-page .button.danger:focus-visible {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.profile-page :is(button, input, select, textarea, a):focus-visible {
  outline: 3px solid #fff !important;
  outline-offset: 3px !important;
}

@media (max-width: 1020px) {
  :root body.profile-page .profile-app {
    grid-template-columns: 1fr;
  }

  :root body.profile-page .profile-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  :root body.profile-page .profile-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  :root body.profile-page .profile-tabs button {
    text-align: center;
  }
}

@media (max-width: 760px) {
  :root body.profile-page .profile-main {
    padding: 108px 12px 48px;
  }

  :root body.profile-page .profile-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  :root body.profile-page .profile-gate,
  :root body.profile-page .profile-panel-head,
  :root body.profile-page .profile-permission-card,
  :root body.profile-page .profile-knowledge-card {
    flex-direction: column;
    align-items: stretch;
  }

  :root body.profile-page .profile-tabs {
    grid-template-columns: 1fr 1fr;
  }

  :root body.profile-page .field-grid,
  :root body.profile-page .profile-card-grid,
  :root body.profile-page .profile-api-form {
    grid-template-columns: 1fr;
  }

  :root body.profile-page .profile-upload {
    align-items: flex-start;
    flex-direction: column;
  }

  :root body.profile-page .profile-scope-row {
    justify-content: flex-start;
  }
}

/* Quote page final contrast guard: form panels, buttons and dropdowns stay readable. */
:root body.quote-page :is(
  .quote-form,
  .sequence-guide,
  .quote-cockpit,
  .quote-next-panel,
  .fast-request-panel,
  .form-stage,
  .config-step,
  .config-step-scope,
  .config-step-detail,
  .config-step-task,
  .config-summary,
  .config-empty,
  .upload-note,
  .quote-preview-shell,
  .quote-preview,
  .work-item
) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: #0b0b0b !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.quote-page :is(
  .quote-form,
  .sequence-guide,
  .quote-cockpit,
  .quote-next-panel,
  .fast-request-panel,
  .form-stage,
  .config-step,
  .config-summary,
  .upload-note,
  .quote-preview-shell,
  .work-item
) :is(h2, h3, h4, strong, p, small, span, label, output) {
  color: inherit !important;
  text-shadow: none !important;
}

:root body.quote-page :is(
  .quote-cockpit-copy p,
  .quote-next-copy p,
  .fast-request-copy p,
  .config-step-heading p,
  .work-item span,
  .quote-preview:not(.is-filled),
  .upload-note > span:last-child
) {
  color: #d8d8d8 !important;
}

:root body.quote-page :is(
  .sequence-guide li,
  .quote-cockpit-pills span,
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card
) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: #111 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.quote-page :is(
  .sequence-guide li,
  .quote-cockpit-pills span,
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card
) :is(strong, small, span, p) {
  color: inherit !important;
}

:root body.quote-page :is(
  .sequence-guide li.is-active,
  .sequence-guide li.is-complete,
  .quote-cockpit-pills span.is-active,
  .quote-cockpit-pills span.is-complete,
  .fast-route-card:hover,
  .fast-route-card:focus-visible,
  .fast-route-card.is-active,
  .option-card:hover,
  .option-card:focus-visible,
  .option-card.is-active,
  .sub-option-card:hover,
  .sub-option-card:focus-visible,
  .sub-option-card.is-active,
  .micro-option-card:hover,
  .micro-option-card:focus-visible,
  .micro-option-card.is-active
) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.quote-page :is(
  .sequence-guide li.is-active,
  .sequence-guide li.is-complete,
  .quote-cockpit-pills span.is-active,
  .quote-cockpit-pills span.is-complete,
  .fast-route-card:hover,
  .fast-route-card:focus-visible,
  .fast-route-card.is-active,
  .option-card:hover,
  .option-card:focus-visible,
  .option-card.is-active,
  .sub-option-card:hover,
  .sub-option-card:focus-visible,
  .sub-option-card.is-active,
  .micro-option-card:hover,
  .micro-option-card:focus-visible,
  .micro-option-card.is-active
) :is(strong, small, span, p) {
  color: #000 !important;
}

:root body.quote-page :is(.stage-head > span, .config-step-heading > span, .config-icon, .file-chip, .quote-cockpit-progress, .quote-next-status) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body.quote-page :is(.option-card.is-active, .sub-option-card.is-active, .micro-option-card.is-active) .config-icon {
  color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body.quote-page .quote-form :is(input, select, textarea) {
  color: #000 !important;
  border: 1px solid #fff !important;
  background: #fff !important;
  caret-color: #000 !important;
  text-shadow: none !important;
}

:root body.quote-page .quote-form :is(input, textarea)::placeholder {
  color: #555 !important;
  opacity: 1 !important;
}

:root body.quote-page .quote-form select option {
  color: #000 !important;
  background: #fff !important;
}

:root body.quote-page .quote-form :is(.button, .quote-next-action, .quote-copy-button, .quote-whatsapp-button, .work-item-actions button, .change-option-button) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body.quote-page .quote-form :is(.button, .quote-next-action, .quote-copy-button, .quote-whatsapp-button, .work-item-actions button, .change-option-button):is(:hover, :focus-visible) {
  color: #fff !important;
  border-color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body.quote-page .quote-form :is(.quote-copy-button:disabled, .quote-whatsapp-button[aria-disabled="true"]) {
  color: #777 !important;
  border-color: #777 !important;
  background: #151515 !important;
  opacity: 1 !important;
}

:root body.quote-page .quote-form :is(.config-summary.is-filled, .quote-preview.is-filled, .form-status[data-state="success"], .form-status[data-state="error"]) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
}

/* Process section contrast guard: numbered badges must remain readable. */
:root body #werkwijze .process-grid article {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: #0b0d0e !important;
  text-shadow: none !important;
}

:root body #werkwijze .process-grid article h3 {
  color: #fff !important;
}

:root body #werkwijze .process-grid article p {
  color: #d8d8d8 !important;
}

:root body #werkwijze .process-grid article > span {
  color: #f6fbff !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

/* Runway route cards contrast guard: numbered badges must remain readable. */
:root body .runway-card,
:root body .runway-card:is(.card-one, .card-two, .card-three, .card-four, .is-active, .is-complete) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: #0b0d0e !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body .runway-card :is(strong, small) {
  color: inherit !important;
  text-shadow: none !important;
}

:root body .runway-card small {
  color: #d8d8d8 !important;
  opacity: 1 !important;
}

:root body .runway-card > span,
:root body .runway-card:is(.is-active, .is-complete) > span {
  color: #f6fbff !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

/* Global contrast audit guard: explicit black/white pairs for remaining edge cases. */
:root body :is(
  .kinetic-renovation-section,
  .gallery-admin-main,
  .gallery-admin-hero,
  .gallery-admin-health,
  .gallery-admin-gate,
  .auth-account-map,
  .auth-map-node,
  .model-panel,
  .model-reference,
  .model-canvas-wrap,
  .quote-launch-node
) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: #0b0d0e !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body :is(
  .kinetic-renovation-section h2,
  .kinetic-renovation-section p,
  .gallery-admin-hero h1,
  .gallery-admin-hero h2,
  .gallery-admin-hero p,
  .gallery-admin-health h2,
  .gallery-admin-health span,
  .gallery-admin-gate h2,
  .gallery-admin-gate p,
  .auth-map-node strong,
  .model-panel .eyebrow,
  .model-reference figcaption,
  .quote-launch-node strong,
  .quote-launch-node small
) {
  color: #fff !important;
  background: transparent !important;
  text-shadow: none !important;
}

:root body :is(
  .kinetic-renovation-section small,
  .gallery-admin-hero small,
  .gallery-admin-health small,
  .gallery-admin-flow small,
  .auth-map-node small,
  .model-progress-strip small
) {
  color: #d8d8d8 !important;
  background: transparent !important;
  text-shadow: none !important;
}

:root body :is(
  .gallery-admin-flow span,
  .gallery-admin-stats span,
  .model-progress-strip span
) {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: #111 !important;
  box-shadow: none !important;
}

:root body :is(
  .gallery-admin-flow strong,
  .file-chip,
  .model-progress-strip strong
) {
  color: #000 !important;
  border: 1px solid #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body :is(.model-progress-strip span.is-active, .model-progress-strip span.is-active small) {
  color: #000 !important;
  background: #fff !important;
}

:root body :is(
  .work-proof-cta,
  .coverage-control-row button,
  .coverage-map-toolbar button.is-active,
  .mobile-quick-status
) {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body .work-proof-cta:is(:hover, :focus-visible),
:root body .coverage-control-row button:is(:hover, :focus-visible) {
  color: #fff !important;
  background: var(--blue-deep) !important;
}

:root body .journey-pilot > strong,
:root body .model-panel .eyebrow,
:root body.quote-page .upload-note > span.file-chip,
:root body.quote-page .upload-note > span.file-chip:last-child {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.quote-page .sequence-guide li > span,
:root body.quote-page .sequence-guide li.is-complete:not(.is-active) > span {
  color: #000 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.quote-page .sequence-guide li.is-active > span {
  color: #fff !important;
  border-color: #000 !important;
  background: var(--blue-deep) !important;
}

/* Final navy lock: navy blue and white across the full site. */
:root {
  --navy-bg: #071f3f;
  --navy-bg-deep: #061833;
  --navy-surface: #123761;
  --navy-surface-2: #174a7d;
  --navy-surface-3: #205f9b;
  --navy-line: rgba(255, 255, 255, 0.22);
  --navy-line-strong: rgba(255, 255, 255, 0.34);
  --navy-text: #fff;
  --navy-muted: #d9e6f7;
  --navy-soft: #edf5ff;
  --mono-black: var(--navy-bg);
  --mono-950: var(--navy-bg-deep);
  --mono-900: var(--navy-surface);
  --mono-850: var(--navy-surface-2);
  --mono-800: var(--navy-surface-3);
  --mono-700: #2a5585;
  --mono-500: #89a7ca;
  --mono-300: var(--navy-muted);
  --mono-150: var(--navy-soft);
  --mono-white: #fff;
  --black-void: var(--navy-bg);
  --black-panel: var(--navy-surface);
  --black-panel-2: var(--navy-surface-2);
  --black-text: #fff;
  --black-muted: var(--navy-muted);
  --black-gold: #fff;
  --black-gold-2: var(--navy-soft);
  --paper: var(--navy-bg);
  --soft: var(--navy-surface);
  --cream: var(--navy-bg);
  --ink: #fff;
  --muted: var(--navy-muted);
  --line: var(--navy-line);
  --forest: #fff;
  --forest-2: var(--navy-muted);
  --clay: #fff;
}

:root body,
:root[data-theme="dark"] body,
:root body::before,
:root body::after {
  color: var(--navy-text) !important;
  background: var(--navy-bg) !important;
}

:root body::selection {
  color: var(--navy-bg) !important;
  background: #fff !important;
}

:root body :is(
  .site-header,
  .topbar,
  .nav-shell,
  .site-menu,
  .mobile-quick-bar,
  .quote-page .sequence-guide,
  .assistant-panel,
  .assistant-card,
  .assistant-simple-chat,
  .assistant-messages,
  .assistant-notice,
  .assistant-template,
  .assistant-briefing,
  .floating-call,
  .assistant-launch,
  .assistant-launch-icon,
  .social-menu,
  .social-dropdown,
  .language-toggle,
  .theme-toggle,
  .menu-toggle,
  .brand
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: color-mix(in srgb, var(--navy-bg-deep) 92%, white 8%) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body :is(
  main,
  footer,
  .hero,
  .intro-band,
  .section,
  .services,
  .material-lab,
  .work-section,
  .quality-dossier-section,
  .faq-section,
  .testimonials,
  .quote-teaser-section,
  .skill-showcase,
  .atelier-section,
  .runway-section,
  .renovation-world-section,
  .renovation-story-section,
  .impact-rail,
  .renovation-compass-section,
  .kinetic-renovation-section,
  .netherlands-coverage,
  .quote-page-main,
  .quote-page-section,
  .auth-main,
  .auth-shell,
  .model-main,
  .model-shell,
  .gallery-admin-main,
  .profile-main,
  .profile-shell
) {
  color: #fff !important;
  background: var(--navy-bg) !important;
}

:root body .hero-shade,
:root body .story-photo::after,
:root body .material-stage::after,
:root body .atelier-photo::after,
:root body .quality-proof-board::after {
  background:
    linear-gradient(90deg, rgba(6, 22, 45, 0.94) 0%, rgba(6, 22, 45, 0.68) 48%, rgba(6, 22, 45, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 22, 45, 0.1), var(--navy-bg) 98%) !important;
}

:root body :is(
  .hero-service-stack,
  .journey-pilot,
  .kinetic-board,
  .kinetic-chip,
  .world-step,
  .world-plan-board,
  .story-stage,
  .story-layer,
  .runway-stage,
  .runway-device,
  .runway-card,
  .service-card,
  .service-card-body,
  .gallery-item,
  .gallery-caption,
  .quality-check-card,
  .quality-proof-board,
  .quality-score-strip,
  .process-grid article,
  .testimonial-grid figure,
  .faq-list details,
  .compass-visual,
  .compass-panel,
  .compass-route-card,
  .impact-rail-inner > div,
  .atelier-photo,
  .material-stage,
  .material-panel,
  .material-swatch-strip,
  .work-proof-cockpit,
  .quote-route-card,
  .quote-launch-map,
  .quote-launch-node,
  .quote-cockpit,
  .quote-next-panel,
  .fast-request-panel,
  .fast-route-card,
  .quote-form,
  .form-stage,
  .config-step,
  .config-step-scope,
  .config-step-detail,
  .config-step-task,
  .config-summary,
  .config-empty,
  .upload-note,
  .quote-preview-shell,
  .quote-preview,
  .work-item,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .auth-card,
  .auth-account-map,
  .auth-map-node,
  .gallery-admin-hero,
  .gallery-admin-health,
  .gallery-admin-gate,
  .gallery-admin-card,
  .gallery-admin-flow span,
  .gallery-admin-stats span,
  .model-panel,
  .model-view-area,
  .model-canvas-wrap,
  .model-reference,
  .model-reference-card,
  .model-progress-strip,
  .model-progress-strip span,
  .model-control-block,
  .model-chip,
  .profile-app,
  .profile-sidebar,
  .profile-panel,
  .profile-gate,
  .profile-permission-card,
  .profile-knowledge-card,
  .coverage-map-shell,
  .coverage-disclosure,
  .coverage-planner,
  .coverage-planner-body,
  .coverage-control-row,
  .coverage-points span,
  .coverage-insight-card
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--navy-surface) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body :is(
  h1,
  h2,
  h3,
  h4,
  .hero h1,
  .section-heading h2,
  .section-text h2,
  .compass-panel h2,
  .kinetic-copy h2,
  .world-copy h2,
  .story-copy h2,
  .runway-copy h2,
  .quality-dossier-head h2,
  .quote-copy h1,
  .quote-copy h2,
  .skill-copy h2,
  .atelier-copy h2,
  .auth-copy h1,
  .model-panel h1,
  .gallery-admin-hero h1,
  .profile-hero h1,
  strong
) {
  color: #fff !important;
  text-shadow: none !important;
}

:root body :is(
  p,
  li,
  small,
  figcaption,
  label,
  output,
  .hero-copy,
  .hero-proofline,
  .hero-facts,
  .section-heading p,
  .section-text p,
  .compass-panel p,
  .kinetic-copy p,
  .world-copy p,
  .story-copy p,
  .runway-copy p,
  .quality-dossier-head p,
  .quote-copy p,
  .skill-copy p,
  .atelier-copy p,
  .auth-copy p,
  .model-panel p,
  .faq-list p,
  .check-list li,
  .service-card-body p,
  .gallery-caption small,
  .gallery-caption p,
  .quote-cockpit-copy p,
  .quote-next-copy p,
  .gallery-admin-hero p,
  .profile-panel p
) {
  color: var(--navy-muted) !important;
}

:root body :is(
  .button,
  .nav-cta,
  .mobile-menu-action.primary,
  .mobile-quick-bar a.is-primary,
  .quote-copy-button,
  .quote-whatsapp-button,
  .journey-pilot-cta,
  .filter-button.is-active,
  .material-tabs button.is-active,
  .assistant-send-button,
  .language-toggle button.is-active,
  .quote-next-action,
  .change-option-button,
  .work-item-actions button,
  .coverage-control-row button,
  .coverage-map-toolbar button.is-active,
  .auth-submit,
  .profile-tabs button.is-active,
  .profile-action,
  .gallery-admin-action,
  .model-chip.is-active
) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body :is(
  .button.secondary,
  .button.ghost,
  .site-menu > a,
  .auth-link,
  .language-toggle button,
  .filter-button,
  .gallery-model-link,
  .gallery-quote-link,
  .mobile-quick-bar a,
  .assistant-media-button,
  .quote-next-action[disabled],
  .material-tabs button,
  .quote-cockpit-pills span,
  .profile-tabs button,
  .model-toolbar button,
  .coverage-map-toolbar button
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface-2) !important;
  box-shadow: none !important;
}

:root body :is(
  .quote-launch-head span,
  .quote-launch-head strong,
  .sequence-guide span,
  .material-specs span,
  .work-proof-flow span,
  .atelier-metrics strong,
  .quote-cockpit-copy > span,
  .quote-next-copy span,
  .quote-next-badge strong,
  .quote-next-badge span,
  .assistant-head span[data-assistant-eyebrow],
  .gallery-proof-tags em,
  .stage-head > span,
  .config-step-heading > span,
  .config-icon,
  .file-chip,
  .model-progress-strip strong,
  .journey-pilot > strong,
  .mobile-quick-status
) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body :is(
  .sequence-guide li.is-active,
  .sequence-guide li.is-complete,
  .quote-cockpit-pills span.is-active,
  .quote-cockpit-pills span.is-complete,
  .fast-route-card:hover,
  .fast-route-card:focus-visible,
  .fast-route-card.is-active,
  .option-card:hover,
  .option-card:focus-visible,
  .option-card.is-active,
  .sub-option-card:hover,
  .sub-option-card:focus-visible,
  .sub-option-card.is-active,
  .micro-option-card:hover,
  .micro-option-card:focus-visible,
  .micro-option-card.is-active,
  .kinetic-chip.is-active,
  .kinetic-chip:hover,
  .kinetic-chip:focus-visible,
  .world-step.is-active,
  .model-chip:hover,
  .model-chip:focus-visible
) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(
  .sequence-guide li.is-active,
  .sequence-guide li.is-complete,
  .quote-cockpit-pills span.is-active,
  .quote-cockpit-pills span.is-complete,
  .fast-route-card:hover,
  .fast-route-card:focus-visible,
  .fast-route-card.is-active,
  .option-card:hover,
  .option-card:focus-visible,
  .option-card.is-active,
  .sub-option-card:hover,
  .sub-option-card:focus-visible,
  .sub-option-card.is-active,
  .micro-option-card:hover,
  .micro-option-card:focus-visible,
  .micro-option-card.is-active,
  .kinetic-chip.is-active,
  .kinetic-chip:hover,
  .kinetic-chip:focus-visible,
  .world-step.is-active,
  .model-chip:hover,
  .model-chip:focus-visible
) :is(strong, small, span, p, h3, h4) {
  color: var(--navy-bg) !important;
}

:root body.quote-page .sequence-guide li > span,
:root body.quote-page .sequence-guide li.is-complete:not(.is-active) > span,
:root body :is(.journey-pilot-steps a > span, .model-progress-strip strong) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.quote-page .sequence-guide li.is-active > span,
:root body :is(.journey-pilot-steps a.is-active > span) {
  color: #fff !important;
  border-color: var(--navy-bg) !important;
  background: var(--navy-bg) !important;
}

:root body :is(input, select, textarea) {
  color: var(--navy-bg) !important;
  border: 1px solid #fff !important;
  background: #fff !important;
  caret-color: var(--navy-bg) !important;
  box-shadow: none !important;
}

:root body :is(input, textarea)::placeholder {
  color: #526b8c !important;
  opacity: 1 !important;
}

:root body select option {
  color: var(--navy-bg) !important;
  background: #fff !important;
}

:root body :is(
  .assistant-simple-chat .assistant-message.is-assistant .assistant-message-body,
  .assistant-message.is-assistant .assistant-message-body,
  .assistant-response,
  .assistant-status,
  .form-status
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface-2) !important;
}

:root body :is(
  .assistant-simple-chat .assistant-message.is-user .assistant-message-body,
  .assistant-message.is-user .assistant-message-body,
  .quote-preview.is-filled,
  .config-summary.is-filled,
  .form-status[data-state="success"],
  .form-status[data-state="error"]
) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body :is(
  .assistant-ai-avatar,
  .assistant-message-avatar,
  .assistant-card.assistant-simple-chat .assistant-ai-avatar,
  .assistant-card.assistant-simple-chat .assistant-message-avatar
) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body :is(.avatar-lines, .avatar-spark) {
  stroke: var(--navy-bg) !important;
}

:root body :is(.coverage-real-map, .coverage-map-fallback, .coverage-map-empty) {
  color: #fff !important;
  background: var(--navy-bg-deep) !important;
}

:root body :is(.coverage-real-map .leaflet-control-zoom a, .coverage-real-map .leaflet-control-layers, .coverage-label, .coverage-points span) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body :is(.coverage-real-map .leaflet-popup-content-wrapper, .coverage-real-map .leaflet-popup-tip) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface-2) !important;
}

:root body :is(.menu-toggle span:not(.sr-only), .status-dot, .scroll-progress, .mobile-quick-progress span, .story-progress span, .runway-progress span) {
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(.brand img, .assistant-ai-avatar svg, .assistant-message-avatar svg) {
  filter: none !important;
}

/* Navy specificity guard: override older high-specificity black/white header and chip rules. */
:root body .site-header .topbar,
:root body .site-header .topbar :is(a, span),
:root body .site-header .topbar .topbar-right span {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-bg-deep) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.quote-page .site-header .nav-shell .site-menu > a,
:root body:not(.quote-page) .site-header .nav-shell .site-menu > a,
:root body .site-header .nav-shell .site-menu > details.social-dropdown > summary,
:root body .site-header .nav-shell .site-menu > .mobile-menu-actions > a.mobile-menu-action {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

@media (min-width: 1181px) {
  :root body.quote-page .site-header .nav-shell .site-menu > a,
  :root body:not(.quote-page) .site-header .nav-shell .site-menu > a,
  :root body .site-header .nav-shell .site-menu > details.social-dropdown > summary {
    background: transparent !important;
  }
}

:root body :is(
  .auth-copy .eyebrow,
  .gallery-admin-hero .eyebrow,
  .gallery-admin-gate .eyebrow,
  .model-panel .eyebrow,
  .section-heading .eyebrow,
  .section-text .eyebrow,
  .quote-copy .eyebrow,
  .skill-copy .eyebrow,
  .atelier-copy .eyebrow,
  .material-lab-copy .eyebrow,
  .kinetic-copy .eyebrow,
  .profile-hero .eyebrow
) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body :is(
  .material-specs span strong,
  .material-specs span small,
  .quality-score-strip span strong,
  .quality-score-strip span small,
  .quote-next-badge strong,
  .quote-next-badge span
) {
  color: var(--navy-bg) !important;
}

:root body .floating-call.assistant-launch,
:root body .assistant-launch,
:root body .assistant-launch-icon {
  color: #fff !important;
  border-color: var(--navy-line-strong) !important;
  background: var(--navy-surface) !important;
  box-shadow: none !important;
}

:root body .assistant-launch :is(strong, small),
:root body .assistant-launch-copy :is(strong, small) {
  color: #fff !important;
  background: transparent !important;
}

:root body .lightbox,
:root body .lightbox-backdrop {
  background: rgba(6, 22, 45, 0.96) !important;
}

:root body .lightbox-close {
  color: #fff !important;
  border-color: var(--navy-line-strong) !important;
  background: var(--navy-surface) !important;
}

:root body p.eyebrow,
:root body .compass-panel p.eyebrow,
:root body .world-copy p.eyebrow,
:root body .story-copy p.eyebrow,
:root body .runway-copy p.eyebrow,
:root body .quality-dossier-head p.eyebrow {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

/* Navy page-surface guard: win against older page-specific black panel locks. */
:root body.quote-page :is(
  .quote-copy,
  .quote-form,
  .quote-launch-map,
  .quote-launch-node,
  .quote-cockpit,
  .quote-next-panel,
  .fast-request-panel,
  .fast-route-card,
  .form-stage,
  .config-step,
  .config-summary,
  .config-empty,
  .upload-note,
  .quote-preview-shell,
  .quote-preview,
  .work-item,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .sequence-guide li,
  .quote-cockpit-pills span
),
:root body.auth-page :is(
  .auth-copy,
  .auth-card,
  .auth-tabs,
  .auth-tabs button,
  .auth-account-map,
  .auth-map-node,
  .check-list li,
  .profile-app,
  .profile-sidebar,
  .profile-panel,
  .profile-gate,
  .profile-permission-card,
  .profile-knowledge-card
),
:root body.model-page :is(
  .model-panel,
  .model-view-area,
  .model-canvas-wrap,
  .model-reference,
  .model-reference-card,
  .model-progress-strip,
  .model-progress-strip span,
  .model-control-block,
  .model-chip
),
:root body.gallery-admin-page :is(
  .gallery-admin-hero,
  .gallery-admin-health,
  .gallery-admin-gate,
  .gallery-admin-card,
  .gallery-admin-flow span,
  .gallery-admin-stats span
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--navy-surface) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.quote-page :is(.sequence-guide li.is-active, .sequence-guide li.is-complete, .fast-route-card.is-active, .option-card.is-active, .sub-option-card.is-active, .micro-option-card.is-active),
:root body.auth-page .auth-tabs button.is-active,
:root body.model-page .model-chip.is-active {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.quote-page :is(.sequence-guide li.is-active, .sequence-guide li.is-complete, .fast-route-card.is-active, .option-card.is-active, .sub-option-card.is-active, .micro-option-card.is-active) :is(strong, small, span, p),
:root body.auth-page .auth-tabs button.is-active,
:root body.model-page .model-chip.is-active {
  color: var(--navy-bg) !important;
}

:root body.auth-page .auth-tabs button:not(.is-active),
:root body.quote-page :is(.quote-cockpit-pills span:not(.is-active), .sequence-guide li:not(.is-active):not(.is-complete)) {
  color: #fff !important;
  background: var(--navy-surface-2) !important;
}

:root body.quote-page :is(.contact-strip a, .proof-list span, .quote-copy .proof-list span, .quote-copy .contact-strip a),
:root body.auth-page :is(.auth-copy .check-list li, .auth-map-head, .auth-account-map .auth-map-head, .auth-account-map .auth-map-node) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--navy-surface-2) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.auth-page .auth-copy .check-list li::before,
:root body.quote-page .proof-list span::before {
  background: #fff !important;
}

:root body.auth-page :is(
  .auth-proof span,
  .auth-account-map .auth-map-head,
  .auth-account-map .auth-map-head > span,
  .auth-account-map .auth-map-head > strong
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--navy-surface-2) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.auth-page :is(.auth-proof span::before, .auth-account-map .auth-map-head > strong::before) {
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

html,
:root {
  background: var(--navy-bg) !important;
}

:root body:is(.quote-page, .auth-page, .model-page, .gallery-admin-page, .profile-page),
:root body:is(.quote-page, .auth-page, .model-page, .gallery-admin-page, .profile-page)::before,
:root body:is(.quote-page, .auth-page, .model-page, .gallery-admin-page, .profile-page)::after,
:root body.profile-page :is(
  .profile-main,
  .profile-shell,
  .profile-gate,
  .profile-app,
  .profile-sidebar,
  .profile-panel,
  .profile-workspace,
  .profile-form,
  .profile-mini-card,
  .profile-api-form,
  .profile-knowledge-form,
  .profile-permission-card,
  .profile-knowledge-card,
  .profile-avatar-card,
  .profile-upload
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--navy-surface) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.profile-page .profile-main {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy-bg) !important;
}

:root body.profile-page :is(
  .profile-hero h1,
  .profile-gate h2,
  .profile-panel-head h2,
  .profile-mini-card h3,
  .profile-permission-card strong,
  .profile-knowledge-card strong,
  .profile-avatar-card strong
) {
  color: #fff !important;
}

:root body.profile-page :is(
  .profile-hero p:not(.eyebrow),
  .profile-gate p:not(.eyebrow),
  .profile-mini-card p,
  .profile-knowledge-card p,
  .profile-empty,
  .profile-avatar-card span,
  .profile-permission-card small,
  .profile-knowledge-card small
) {
  color: var(--navy-muted) !important;
}

:root body.profile-page :is(.profile-avatar, .profile-photo-preview, .profile-tabs button.is-active, .profile-scope-row span, .profile-status[data-state="success"]) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
}

:root body.profile-page :is(.profile-tabs button, .profile-logout, .profile-inline-actions .button, .profile-panel .button, .profile-api-form .button) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface-2) !important;
  box-shadow: none !important;
}

:root body.profile-page :is(.button.primary, .nav-cta, .profile-tabs button.is-active) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
}

:root body.profile-page .field-group :is(input, select, textarea) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  caret-color: var(--navy-bg) !important;
}

:root body.profile-page .field-group :is(input, textarea)::placeholder {
  color: rgba(7, 31, 63, 0.62) !important;
}

:root body.quote-page .quote-page-main,
:root body.quote-page main#main.quote-page-main {
  color: #fff !important;
  background: var(--navy-bg) !important;
}

:root body .site-header .brand,
:root body .nav-shell .brand,
:root body a.brand,
:root body .site-header .nav-shell a.brand {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface) !important;
  box-shadow: none !important;
}

:root body .brand img,
:root body .site-header .brand img,
:root body .site-header .nav-shell a.brand img {
  filter: none !important;
}

:root body.profile-page :is(.profile-panel-head .eyebrow, .profile-hero .eyebrow, .profile-gate .eyebrow) {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.model-page :is(.back-link, .model-toolbar, .model-view-summary span) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.model-page .model-toolbar button,
:root body.model-page .model-status {
  color: var(--navy-bg) !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

:root body.gallery-admin-page .gallery-admin-status,
:root body.gallery-admin-page .gallery-admin-status[data-state="success"],
:root body.gallery-admin-page .gallery-admin-status[data-state="error"] {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background: var(--navy-surface-2) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* Mobile media carousel lock: keep renovation photos complete instead of squeezed. */
@media (max-width: 760px) {
  :root body :is(.modular-carousel, .painting-carousel, .quality-proof-carousel, .skill-media-grid, .gallery, .service-grid, .atelier-visual) {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-flow: column !important;
    grid-auto-rows: auto !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
    scroll-padding-inline: 14px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch !important;
    perspective: none !important;
  }

  :root body :is(.modular-carousel, .painting-carousel, .quality-proof-carousel, .skill-media-grid, .gallery, .service-grid, .atelier-visual)::-webkit-scrollbar {
    display: none !important;
  }

  :root body .skill-media-grid {
    margin-inline: -2px !important;
    padding: 2px 2px 18px !important;
  }

  :root body :is(.modular-carousel, .painting-carousel, .quality-proof-carousel, .gallery, .service-grid, .atelier-visual) {
    margin-inline: calc(-1 * clamp(14px, 4vw, 18px)) !important;
    padding-inline: clamp(14px, 4vw, 18px) !important;
    padding-bottom: 18px !important;
  }

  :root body .skill-media-grid .skill-media,
  :root body .skill-media-grid .skill-media-wide,
  :root body .skill-media-grid .skill-media-tall,
  :root body .skill-media-grid .skill-media-video {
    flex: 0 0 min(86vw, 380px) !important;
    width: min(86vw, 380px) !important;
    min-width: min(86vw, 380px) !important;
    min-height: min(74svh, 560px) !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) auto !important;
    align-content: stretch !important;
    aspect-ratio: 3 / 4 !important;
    scroll-snap-align: center !important;
    transform: none !important;
  }

  :root body .skill-media-grid .skill-media-wide,
  :root body .skill-media-grid .skill-media-video {
    flex-basis: min(88vw, 420px) !important;
    width: min(88vw, 420px) !important;
    min-width: min(88vw, 420px) !important;
    aspect-ratio: 4 / 3 !important;
  }

  :root body .skill-media::before,
  :root body .gallery-item::after,
  :root body .atelier-photo::after {
    display: none !important;
    content: none !important;
  }

  :root body .skill-media :is(img, video),
  :root body .gallery-item img,
  :root body .quality-proof-carousel img,
  :root body .modular-card img,
  :root body .service-card img,
  :root body .atelier-photo img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: var(--navy-bg-deep) !important;
    transform: none !important;
  }

  :root body .skill-media figcaption,
  :root body .atelier-photo figcaption {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    max-width: none !important;
    min-height: 38px !important;
    margin: 10px !important;
    justify-content: center !important;
    color: #fff !important;
    border-color: var(--navy-line) !important;
    background: var(--navy-surface-2) !important;
    text-align: center !important;
    box-shadow: none !important;
  }

  :root body .gallery .gallery-item,
  :root body .gallery .gallery-item.large,
  :root body .gallery .gallery-item.wide,
  :root body .modular-carousel .modular-card,
  :root body .modular-carousel .modular-card-large,
  :root body .service-grid .service-card,
  :root body .atelier-visual .atelier-photo,
  :root body .atelier-visual .atelier-photo.main,
  :root body .atelier-visual .atelier-photo.side,
  :root body .atelier-visual .atelier-photo.bottom,
  :root body .atelier-visual .atelier-photo.extra {
    flex: 0 0 min(88vw, 420px) !important;
    width: min(88vw, 420px) !important;
    min-width: min(88vw, 420px) !important;
    min-height: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    scroll-snap-align: center !important;
    transform: none !important;
  }

  :root body .gallery .gallery-item[hidden] {
    display: none !important;
  }

  :root body .gallery-photo-button {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: clamp(300px, 74vw, 520px) !important;
    min-height: 300px !important;
    background: var(--navy-bg-deep) !important;
  }

  :root body .gallery-caption {
    position: static !important;
    inset: auto !important;
    margin: 10px !important;
    color: #fff !important;
    border-color: var(--navy-line) !important;
    background: var(--navy-surface-2) !important;
  }

  :root body .gallery-caption :is(span, small, p) {
    color: #fff !important;
  }

  :root body .service-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr !important;
  }

  :root body .service-card:nth-child(even) img,
  :root body .service-card:nth-child(even) .service-card-body {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  :root body .service-card img,
  :root body .modular-card img,
  :root body .atelier-photo img {
    display: block !important;
    height: clamp(300px, 74vw, 520px) !important;
    min-height: 300px !important;
  }

  :root body .service-card-body {
    min-height: 220px !important;
  }

  :root body .compass-hotspots {
    display: none !important;
  }

  :root body :is(.kinetic-renovation-section, .renovation-world-section, .runway-section) {
    display: none !important;
  }

  :root body .renovation-story-section .story-stage {
    display: none !important;
  }

  :root body .gallery .gallery-caption {
    display: none !important;
  }

  :root body .gallery .gallery-item {
    padding-bottom: 0 !important;
    overflow: hidden !important;
  }

  :root body .mobile-carousel-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: fit-content !important;
    max-width: calc(100% - 32px) !important;
    min-height: 48px !important;
    margin: 8px auto 24px !important;
    padding: 6px 10px !important;
    color: #fff !important;
    border: 1px solid var(--navy-line) !important;
    border-radius: 999px !important;
    background: color-mix(in srgb, var(--navy-bg-deep) 92%, white 8%) !important;
    box-shadow: none !important;
  }

  :root body .mobile-carousel-controls[hidden] {
    display: none !important;
  }

  :root body .mobile-carousel-arrow {
    display: inline-grid !important;
    place-items: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    color: var(--navy-bg) !important;
    border: 1px solid #fff !important;
    border-radius: 999px !important;
    background: #fff !important;
    font: 900 1.08rem/1 var(--font-body) !important;
    box-shadow: none !important;
  }

  :root body .mobile-carousel-dots {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-width: 78px !important;
  }

  :root body .mobile-carousel-dot {
    display: block !important;
    width: 8px !important;
    height: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.34) !important;
    transition: width 180ms ease, background 180ms ease !important;
  }

  :root body .mobile-carousel-dot.is-active {
    width: 24px !important;
    background: #fff !important;
  }
}

.mobile-carousel-controls {
  display: none;
}

.mobile-carousel-title {
  display: none;
}

/* Mobile minimal copy pass: keep images/actions, remove secondary text noise. */
@media (max-width: 760px) {
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .hero-copy,
    .hero-facts,
    .intro-band,
    .renovation-compass-section .compass-panel,
    .renovation-story-section,
    .impact-rail,
    .testimonials,
    .faq-section,
    .work-proof-cockpit,
    .filter-bar,
    .quality-system-panel,
    .quality-proof-notes,
    .quality-dossier-head p[data-quality-copy],
    .section-heading p:not(.eyebrow),
    .section-text p,
    .section-text .check-list,
    .atelier-copy p,
    .atelier-metrics,
    .skill-copy p,
    .skill-progress-map,
    .skill-panel-copy p,
    .skill-tasks,
    .skill-media figcaption,
    .atelier-photo figcaption,
    .material-lab-copy p,
    .material-specs,
    .service-card-body p,
    .process-grid article p,
    .quote-route-card p,
    .quote-stat p,
    .coverage-copy p[data-map-copy],
    .coverage-disclosure
  ) {
    display: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .netherlands-coverage,
    .renovation-compass-section,
    .section,
    .services,
    .modular-homes-section,
    .material-lab,
    .work-section,
    .quality-dossier-section,
    .quote-teaser-section,
    .atelier-section,
    .skill-showcase
  ) {
    padding-top: clamp(30px, 9vw, 54px) !important;
    padding-bottom: clamp(34px, 10vw, 62px) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .section-heading,
    .quality-dossier-head,
    .skill-copy,
    .atelier-copy,
    .modular-homes-head,
    .material-lab-copy,
    .coverage-copy
  ) {
    margin-bottom: 16px !important;
    gap: 8px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .section-heading h2,
    .section-text h2,
    .quality-dossier-head h2,
    .skill-copy h2,
    .atelier-copy h2,
    .modular-homes-head h2,
    .material-lab-copy h2,
    .coverage-copy h2
  ) {
    max-width: 10.5ch !important;
    font-size: clamp(2rem, 9.4vw, 2.9rem) !important;
    line-height: 0.98 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-content {
    gap: 14px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-actions {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-actions .button {
    min-height: 48px !important;
    padding: 12px 14px !important;
    font-size: 0.96rem !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .compass-shell {
    display: block !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .compass-visual {
    min-height: min(72svh, 620px) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-panel {
    gap: 14px !important;
    padding: 16px 0 22px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-panel-copy {
    padding-inline: clamp(14px, 4vw, 18px) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-panel-copy strong {
    font-size: clamp(1.72rem, 8vw, 2.35rem) !important;
    line-height: 1 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-wide,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-tall,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-video {
    grid-template-rows: minmax(0, 1fr) !important;
    min-height: min(68svh, 520px) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .service-card-body {
    min-height: 132px !important;
    padding: 18px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .service-card-body h3,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .process-grid article h3 {
    font-size: clamp(1.28rem, 6vw, 1.78rem) !important;
    line-height: 1.05 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .process-grid article {
    min-height: 132px !important;
    padding: 18px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .quote-route-card,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .quote-stat {
    min-height: auto !important;
  }
}

/* Photo fill pass: keep the blue style while images fill their frames. */
:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
  .compass-visual,
  .feature-photo:not(.no-frame-photo),
  .atelier-photo,
  .skill-media,
  .gallery-item,
  .gallery-photo-button,
  .service-card,
  .material-stage,
  .quality-proof-board
) {
  background: var(--navy-bg-deep) !important;
  border-color: var(--navy-line) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
  .compass-visual img,
  .feature-photo img,
  .atelier-photo img,
  .skill-media img,
  .skill-media video,
  .gallery-item img,
  .gallery-photo-button img,
  .service-card img,
  .material-stage img,
  .quality-proof-board img
) {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: var(--navy-bg-deep) !important;
}

@media (max-width: 760px) {
  :root body .brand-meta {
    display: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .skill-panel-copy,
    .material-panel,
    .quote-teaser-section .quote-copy p:not(.eyebrow),
    .quote-route-card,
    .quote-stat,
    .site-footer
  ) {
    display: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-panel {
    display: block !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid {
    margin-top: 0 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .material-stage {
    min-height: clamp(340px, 82vw, 520px) !important;
  }
}

/* Mobile photo frame pass: fill images so no blue side gutters appear. */
@media (max-width: 760px) {
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .compass-visual,
    .feature-photo:not(.no-frame-photo),
    .atelier-photo,
    .skill-media,
    .gallery-item,
    .gallery-photo-button,
    .service-card,
    .material-stage,
    .quality-proof-board
  ) {
    background: var(--navy-bg-deep) !important;
    border-color: var(--navy-line) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .compass-visual img,
    .feature-photo img,
    .atelier-photo img,
    .skill-media img,
    .skill-media video,
    .gallery-item img,
    .gallery-photo-button img,
    .service-card img,
    .material-stage img,
    .quality-proof-carousel img,
    .quality-proof-board img
  ) {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: var(--navy-bg-deep) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .skill-media-grid,
    .quality-proof-carousel,
    .modular-carousel,
    .gallery,
    .service-grid,
    .atelier-visual
  ) {
    background: transparent !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-controls {
    background: color-mix(in srgb, var(--navy-bg-deep) 92%, white 8%) !important;
    border-color: var(--navy-line) !important;
  }
}

/* Blue depth pass: varied blue zones instead of black blocks or one flat blue. */
:root {
  --blue-base: #071f3f;
  --blue-deep: #061833;
  --blue-ink: #09284a;
  --blue-petrol: #0d365f;
  --blue-harbor: #124776;
  --blue-open: #1b5f97;
  --blue-air: #d9e6f7;
  --blue-card: #123761;
  --blue-card-2: #174a7d;
  --blue-card-3: #0f3158;
  --navy-bg: var(--blue-base);
  --navy-bg-deep: var(--blue-deep);
  --navy-surface: var(--blue-card);
  --navy-surface-2: var(--blue-card-2);
  --navy-surface-3: var(--blue-open);
  --navy-muted: var(--blue-air);
  --paper: var(--blue-base);
  --cream: var(--blue-base);
  --soft: var(--blue-card);
  --black-void: var(--blue-base);
  --black-panel: var(--blue-card);
  --black-panel-2: var(--blue-card-2);
  --mono-black: var(--blue-base);
  --mono-950: var(--blue-deep);
  --mono-900: var(--blue-card);
  --mono-850: var(--blue-card-2);
  --mono-800: var(--blue-open);
}

:root body,
:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 20% 8%, rgba(27, 95, 151, 0.42), transparent 30%),
    radial-gradient(circle at 86% 30%, rgba(18, 71, 118, 0.5), transparent 34%),
    linear-gradient(180deg, var(--blue-base) 0%, var(--blue-ink) 32%, var(--blue-petrol) 58%, var(--blue-deep) 100%) !important;
}

:root body :is(main, footer) {
  background: transparent !important;
}

:root body :is(.hero, .quote-page-main, .auth-main) {
  background:
    radial-gradient(circle at 76% 18%, rgba(27, 95, 151, 0.52), transparent 34%),
    linear-gradient(135deg, var(--blue-base), var(--blue-petrol) 58%, var(--blue-deep)) !important;
}

:root body :is(.netherlands-coverage, .renovation-compass-section, .services, .quote-page-section) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, var(--blue-ink), var(--blue-harbor)) !important;
}

:root body :is(.skill-showcase, .material-lab, .gallery-admin-main, .model-main) {
  background:
    radial-gradient(circle at 18% 10%, rgba(27, 95, 151, 0.36), transparent 32%),
    linear-gradient(160deg, var(--blue-petrol), var(--blue-base) 68%, var(--blue-deep)) !important;
}

:root body :is(.work-section, .quality-dossier-section, .profile-main, .profile-shell) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--blue-harbor), var(--blue-ink) 62%, var(--blue-base)) !important;
}

:root body :is(.quote-teaser-section, .atelier-section, .renovation-world-section, .renovation-story-section, .kinetic-renovation-section, .runway-section, .site-footer) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(180deg, var(--blue-open), var(--blue-petrol) 48%, var(--blue-deep)) !important;
}

:root body :is(
  .nav-shell,
  .site-menu,
  .mobile-quick-bar,
  .assistant-panel,
  .assistant-card,
  .assistant-messages,
  .assistant-message,
  .assistant-notice,
  .assistant-template,
  .assistant-briefing,
  .quote-page .sequence-guide,
  .auth-card,
  .profile-panel,
  .gallery-admin-card,
  .model-panel,
  .model-view-area,
  .form-stage,
  .quote-cockpit,
  .quote-next-panel,
  .coverage-planner,
  .coverage-map-shell
) {
  color: #fff !important;
  border-color: var(--navy-line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    var(--blue-card-3) !important;
}

:root body :is(
  .service-card,
  .gallery-item,
  .quality-check-card,
  .process-grid article,
  .fast-route-card,
  .option-card,
  .sub-option-card,
  .micro-option-card,
  .config-step,
  .config-step-scope,
  .config-step-detail,
  .config-step-task,
  .config-summary,
  .upload-note,
  .quote-preview-shell,
  .material-panel,
  .work-item,
  .coverage-insight-card,
  .coverage-disclosure
) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016)),
    var(--blue-card) !important;
}

:root body :is(
  .service-card:nth-child(2n),
  .gallery-item:nth-child(2n),
  .process-grid article:nth-child(2n),
  .quality-check-card:nth-child(2n),
  .option-card:nth-child(2n),
  .sub-option-card:nth-child(2n),
  .micro-option-card:nth-child(2n)
) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    var(--blue-card-2) !important;
}

:root body :is(
  .compass-visual,
  .feature-photo:not(.no-frame-photo),
  .atelier-photo,
  .skill-media,
  .gallery-photo-button,
  .material-stage,
  .quality-proof-board
) {
  background: var(--blue-deep) !important;
  border-color: rgba(217, 230, 247, 0.28) !important;
}

:root body :is(.hero-shade, .story-photo::after, .material-stage::after, .atelier-photo::after, .quality-proof-board::after) {
  background:
    linear-gradient(90deg, rgba(6, 24, 51, 0.88), rgba(9, 40, 74, 0.56) 46%, rgba(18, 71, 118, 0.12)),
    linear-gradient(180deg, rgba(27, 95, 151, 0.12), rgba(6, 24, 51, 0.72)) !important;
}

:root body :is(.button.secondary, .button.ghost, .site-menu > a, .auth-link, .language-toggle button, .filter-button, .gallery-model-link, .gallery-quote-link, .mobile-quick-bar a, .assistant-media-button, .material-tabs button, .profile-tabs button, .model-toolbar button, .coverage-map-toolbar button) {
  background: var(--blue-harbor) !important;
  border-color: rgba(217, 230, 247, 0.32) !important;
}

:root body :is(.button, .nav-cta, .mobile-menu-action.primary, .mobile-quick-bar a.is-primary, .quote-copy-button, .quote-whatsapp-button, .filter-button.is-active, .material-tabs button.is-active, .assistant-send-button, .language-toggle button.is-active, .quote-next-action, .auth-submit, .profile-tabs button.is-active, .profile-action, .gallery-admin-action, .model-chip.is-active) {
  color: var(--blue-base) !important;
  background: #fff !important;
  border-color: #fff !important;
}

:root body .skip-link,
:root body .skip-link:focus {
  color: #fff !important;
  background: var(--blue-harbor) !important;
}

/* Specific home override: beat older black/flat-blue mobile locks. */
:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.hero, .intro-band) {
  background:
    radial-gradient(circle at 78% 18%, rgba(27, 95, 151, 0.5), transparent 34%),
    linear-gradient(135deg, var(--blue-base), var(--blue-petrol) 58%, var(--blue-deep)) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.netherlands-coverage, .renovation-compass-section, .services) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, var(--blue-ink), var(--blue-harbor)) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.skill-showcase, .material-lab) {
  background:
    radial-gradient(circle at 18% 10%, rgba(27, 95, 151, 0.36), transparent 32%),
    linear-gradient(160deg, var(--blue-petrol), var(--blue-base) 68%, var(--blue-deep)) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.work-section, .quality-dossier-section) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--blue-harbor), var(--blue-ink) 62%, var(--blue-base)) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.quote-teaser-section, .atelier-section, .renovation-world-section, .renovation-story-section, .kinetic-renovation-section, .runway-section, .site-footer) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(180deg, var(--blue-open), var(--blue-petrol) 48%, var(--blue-deep)) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-image {
  object-position: center center !important;
  filter: saturate(1.04) contrast(1.08) brightness(0.86) !important;
  transform: scale(1.08) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-shade {
  background:
    radial-gradient(circle at 74% 18%, rgba(27, 95, 151, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(6, 24, 51, 0.94) 0%, rgba(9, 40, 74, 0.72) 44%, rgba(9, 40, 74, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 24, 51, 0.24), rgba(6, 24, 51, 0.84) 100%) !important;
}

/* Mobile visual QA pass: cleaner rhythm, centered media and calmer blue surfaces. */
@media (max-width: 760px) {
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) {
    --mobile-section-x: clamp(18px, 5vw, 24px);
    --mobile-radius: 8px;
    --mobile-surface: #103963;
    --mobile-surface-2: #164d80;
    --mobile-surface-3: #0b2d52;
    overflow-x: hidden !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .hero,
    .netherlands-coverage,
    .renovation-compass-section,
    .section,
    .services,
    .material-lab,
    .work-section,
    .quality-dossier-section,
    .quote-teaser-section,
    .atelier-section,
    .skill-showcase
  ) {
    padding-right: var(--mobile-section-x) !important;
    padding-left: var(--mobile-section-x) !important;
    overflow: hidden !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .netherlands-coverage,
    .renovation-compass-section,
    .section,
    .services,
    .material-lab,
    .work-section,
    .quality-dossier-section,
    .quote-teaser-section,
    .atelier-section,
    .skill-showcase
  ) {
    scroll-margin-top: 138px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .atelier-section,
    .skill-showcase,
    .material-lab,
    .work-section,
    .quality-dossier-section,
    .quote-teaser-section
  ) {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
      linear-gradient(155deg, var(--blue-harbor), var(--blue-ink) 54%, var(--blue-petrol)) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-content {
    width: min(100%, 560px) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    padding-inline: 0 !important;
    gap: 16px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero h1 {
    max-width: min(100%, 12.8ch) !important;
    font-size: clamp(2.55rem, 9.7vw, 3.85rem) !important;
    line-height: 1.01 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-copy {
    display: block !important;
    max-width: 33ch !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: clamp(1rem, 4.2vw, 1.16rem) !important;
    line-height: 1.48 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-actions {
    width: 100% !important;
    max-width: 390px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .section-heading,
    .section-text,
    .quality-dossier-head,
    .skill-copy,
    .modular-homes-head,
    .atelier-copy,
    .material-lab-copy,
    .coverage-copy
  ) {
    width: 100% !important;
    max-width: 620px !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    padding-inline: 0 !important;
    gap: 10px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .skill-shell,
    .skill-panels,
    .skill-panel
  ) {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .section-heading h2,
    .section-text h2,
    .quality-dossier-head h2,
    .skill-copy h2,
    .modular-homes-head h2,
    .atelier-copy h2,
    .material-lab-copy h2,
    .coverage-copy h2
  ) {
    max-width: min(100%, 14.5ch) !important;
    margin: 0 !important;
    font-size: clamp(2rem, 8.2vw, 2.75rem) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    p.eyebrow,
    .hero .eyebrow,
    .section-heading .eyebrow,
    .section-text .eyebrow,
    .skill-copy .eyebrow,
    .modular-homes-head .eyebrow,
    .atelier-copy .eyebrow,
    .material-lab-copy .eyebrow,
    .quality-dossier-head .eyebrow,
    .coverage-copy .eyebrow
  ) {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    color: rgba(217, 230, 247, 0.9) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    letter-spacing: 0.12em !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .skill-panel,
    .modular-card,
    .service-card,
    .gallery-item,
    .material-stage,
    .quality-proof-board,
    .atelier-photo,
    .feature-photo:not(.no-frame-photo),
    .compass-visual,
    #werkwijze .process-grid article,
    #offerte .contact-strip a,
    #offerte .proof-list span
  ) {
    color: #fff !important;
    border-color: rgba(217, 230, 247, 0.24) !important;
    border-radius: var(--mobile-radius) !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
      var(--mobile-surface-3) !important;
    box-shadow: 0 16px 36px rgba(2, 13, 31, 0.2) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    #werkwijze .process-grid article:nth-child(2n),
    #offerte .contact-strip a:nth-child(2n),
    #offerte .proof-list span:nth-child(2n)
  ) {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.014)),
      var(--mobile-surface) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    #werkwijze .process-grid,
    #offerte .contact-strip,
    #offerte .proof-list
  ) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .skill-media-grid,
    .quality-proof-carousel,
    .modular-carousel,
    .gallery,
    .service-grid,
    .atelier-visual
  ) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-panel {
    padding: 0 0 20px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid {
    width: calc(100% + (2 * var(--mobile-section-x))) !important;
    max-width: none !important;
    margin-right: calc(-1 * var(--mobile-section-x)) !important;
    margin-left: calc(-1 * var(--mobile-section-x)) !important;
    padding: 4px var(--mobile-section-x) 10px !important;
    gap: 14px !important;
    scroll-padding-inline: var(--mobile-section-x) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .modular-carousel,
    .quality-proof-carousel,
    .gallery,
    .service-grid,
    .atelier-visual
  ) {
    width: calc(100% + (2 * var(--mobile-section-x))) !important;
    max-width: none !important;
    margin-right: calc(-1 * var(--mobile-section-x)) !important;
    margin-left: calc(-1 * var(--mobile-section-x)) !important;
    padding-right: var(--mobile-section-x) !important;
    padding-left: var(--mobile-section-x) !important;
    gap: 14px !important;
    scroll-padding-inline: var(--mobile-section-x) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .quality-proof-board {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .quality-proof-carousel {
    height: clamp(360px, 78svh, 560px) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-wide,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-tall,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-video {
    flex: 0 0 min(100%, 420px) !important;
    width: min(100%, 420px) !important;
    min-width: min(100%, 420px) !important;
    min-height: clamp(360px, 72svh, 560px) !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
    border-radius: var(--mobile-radius) !important;
    background: var(--mobile-surface-3) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-wide,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .skill-media-grid .skill-media-video {
    aspect-ratio: 4 / 5 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .skill-media img,
    .skill-media video,
    .quality-proof-carousel img,
    .modular-card img,
    .gallery-photo-button img,
    .service-card img,
    .atelier-photo img,
    .feature-photo img,
    .compass-visual img,
    .material-stage img,
    .quality-proof-board img
  ) {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    filter: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .gallery .gallery-item,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .gallery .gallery-item.large,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .gallery .gallery-item.wide,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .quality-proof-carousel img,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-carousel .modular-card,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-carousel .modular-card-large,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .service-grid .service-card,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .atelier-visual .atelier-photo,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .atelier-visual .atelier-photo.main,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .atelier-visual .atelier-photo.side,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .atelier-visual .atelier-photo.bottom,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .atelier-visual .atelier-photo.extra {
    flex: 0 0 min(88vw, 420px) !important;
    width: min(88vw, 420px) !important;
    min-width: min(88vw, 420px) !important;
    overflow: hidden !important;
    border-radius: var(--mobile-radius) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .gallery-photo-button {
    height: clamp(340px, 82vw, 520px) !important;
    min-height: clamp(340px, 82vw, 520px) !important;
    border-radius: var(--mobile-radius) !important;
    background: var(--mobile-surface-3) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .service-card img,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-card img,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .atelier-photo img {
    height: clamp(340px, 82vw, 520px) !important;
    min-height: clamp(340px, 82vw, 520px) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title {
    display: grid !important;
    gap: 6px !important;
    width: calc(100% - (2 * var(--mobile-section-x))) !important;
    max-width: 460px !important;
    margin: 8px var(--mobile-section-x) 14px !important;
    padding: 0 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: 0 1px 16px rgba(0, 18, 42, 0.28) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title [data-carousel-title-kicker] {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    width: max-content !important;
    max-width: 100% !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title [data-carousel-title-kicker]::before,
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title [data-carousel-title-kicker]::after {
    display: block !important;
    content: "" !important;
    background: #fff !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title [data-carousel-title-kicker]::before {
    width: 7px !important;
    height: 7px !important;
    border-radius: 999px !important;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.58) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title [data-carousel-title-kicker]::after {
    width: min(22vw, 96px) !important;
    height: 1px !important;
    opacity: 0.52 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title [data-carousel-title-main] {
    display: block !important;
    max-width: 14ch !important;
    color: #fff !important;
    font-size: clamp(1.38rem, 6.2vw, 1.92rem) !important;
    font-weight: 900 !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title [data-carousel-title-copy] {
    display: block !important;
    max-width: 34ch !important;
    color: rgba(238, 246, 255, 0.86) !important;
    font-size: clamp(0.9rem, 3.6vw, 1.02rem) !important;
    font-weight: 750 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-controls {
    width: fit-content !important;
    max-width: calc(100% - 30px) !important;
    margin: 14px auto 28px !important;
    padding: 7px 12px !important;
    gap: 10px !important;
    color: #fff !important;
    border: 1px solid rgba(217, 230, 247, 0.32) !important;
    border-radius: 999px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
      var(--mobile-surface) !important;
    box-shadow: 0 12px 30px rgba(2, 13, 31, 0.22) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-arrow {
    color: var(--blue-base) !important;
    border-color: #fff !important;
    background: #fff !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-dot {
    border-color: rgba(255, 255, 255, 0.82) !important;
    background: rgba(255, 255, 255, 0.42) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-dot.is-active {
    background: #fff !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .material-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .material-tabs button {
    min-height: 50px !important;
    padding: 12px 14px !important;
    border-radius: var(--mobile-radius) !important;
    white-space: normal !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .material-tabs button:nth-child(3) {
    grid-column: 1 / -1 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .assistant-launch {
    top: auto !important;
    right: 10px !important;
    bottom: calc(74px + env(safe-area-inset-bottom)) !important;
    width: 52px !important;
    height: 52px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-homes-section {
    padding: clamp(42px, 10vw, 62px) var(--mobile-section-x) clamp(38px, 10vw, 58px) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-homes-head {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 0 18px !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-homes-head h2 {
    max-width: min(100%, 13ch) !important;
    font-size: clamp(2rem, 8.7vw, 2.7rem) !important;
    line-height: 1.02 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-homes-head p:not(.eyebrow) {
    display: block !important;
    max-width: 32ch !important;
    color: rgba(238, 246, 255, 0.84) !important;
    font-size: clamp(0.96rem, 3.9vw, 1.08rem) !important;
    line-height: 1.42 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .mobile-carousel-title[data-carousel-title-for="modular"] {
    display: none !important;
  }
}

/* Label contrast lock: prevent old white-strip eyebrow rules from resurfacing. */
:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
  p.eyebrow,
  .hero .eyebrow,
  .section-heading .eyebrow,
  .section-text .eyebrow,
  .compass-panel .eyebrow,
  .kinetic-copy .eyebrow,
  .world-copy .eyebrow,
  .story-copy .eyebrow,
  .runway-copy .eyebrow,
  .skill-copy .eyebrow,
  .modular-homes-head .eyebrow,
  .atelier-copy .eyebrow,
  .material-lab-copy .eyebrow,
  .quality-dossier-head .eyebrow,
  .coverage-copy .eyebrow,
  .quote-copy .eyebrow
) {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: rgba(217, 230, 247, 0.94) !important;
  border: 0 !important;
  background: rgba(7, 31, 63, 0.72) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  letter-spacing: 0.12em !important;
}

/* Hero photo clarity pass: reveal the villa photo without the heavy blue veil. */
:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-image {
  filter: saturate(1.06) contrast(1.04) brightness(0.98) !important;
  object-position: center center !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.74) 0%, rgba(2, 8, 18, 0.48) 38%, rgba(2, 8, 18, 0.16) 68%, rgba(2, 8, 18, 0.04) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.08) 0%, rgba(2, 8, 18, 0.46) 100%) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .hero h1 {
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.72), 0 2px 14px rgba(0, 0, 0, 0.36) !important;
}

:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .modular-homes-head .eyebrow {
  padding: 0 !important;
  color: rgba(238, 246, 255, 0.88) !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Final unboxed markers: override older high-specificity square badges. */
@media (max-width: 760px) {
  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .service-card-body > span,
    #werkwijze .process-grid article > span,
    .process-grid article > span,
    .quality-check-card > span,
    .quality-score-strip strong,
    .runway-card > span,
    .world-step > span,
    .story-layer > span,
    .quote-launch-node > span
  ) {
    align-self: start !important;
    justify-self: start !important;
    flex: 0 0 auto !important;
    inline-size: max-content !important;
    width: max-content !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 5px !important;
    color: #f6fbff !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(90deg, rgba(17, 91, 148, 0.001), rgba(17, 91, 148, 0.001)) !important;
    box-shadow: none !important;
    text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
  }

  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .service-card-body > span,
    #werkwijze .process-grid article > span,
    .process-grid article > span,
    .quality-check-card > span,
    .quality-score-strip strong,
    .runway-card > span,
    .world-step > span,
    .story-layer > span,
    .quote-launch-node > span
  )::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, #f6fbff, rgba(98, 178, 232, 0.22), transparent);
    box-shadow: 0 0 16px rgba(98, 178, 232, 0.34);
  }

  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .feature-photo {
    color: rgba(244, 249, 255, 0.9) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .feature-photo img,
    .atelier-photo,
    .skill-media,
    .gallery-item,
    .gallery-photo-button,
    .service-card,
    .material-stage,
    .quality-proof-board,
    .process-grid article,
    .quality-check-card
  ) {
    border-color: rgba(217, 230, 247, 0.08) !important;
    box-shadow: 0 10px 24px rgba(2, 13, 31, 0.14) !important;
  }
}

/* Mobile polish pass: unboxed labels, softer media and full-width section bands. */
@media (max-width: 760px) {
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .netherlands-coverage,
    .renovation-compass-section,
    .section,
    .services,
    .material-lab,
    .work-section,
    .quality-dossier-section,
    .quote-teaser-section,
    .atelier-section,
    .skill-showcase
  ) {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    p.eyebrow,
    .hero .eyebrow,
    .section-heading .eyebrow,
    .section-text .eyebrow,
    .compass-panel .eyebrow,
    .kinetic-copy .eyebrow,
    .world-copy .eyebrow,
    .story-copy .eyebrow,
    .runway-copy .eyebrow,
    .skill-copy .eyebrow,
    .atelier-copy .eyebrow,
    .material-lab-copy .eyebrow,
    .quality-dossier-head .eyebrow,
    .coverage-copy .eyebrow,
    .quote-copy .eyebrow
  ) {
    position: relative !important;
    isolation: isolate !important;
    padding: 0 0 4px !important;
    color: #edf6ff !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(90deg, rgba(17, 91, 148, 0.001), rgba(17, 91, 148, 0.001)) !important;
    box-shadow: none !important;
    text-shadow: 0 0 18px rgba(167, 217, 255, 0.46), 0 2px 10px rgba(0, 0, 0, 0.38) !important;
    letter-spacing: 0.13em !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    p.eyebrow,
    .hero .eyebrow,
    .section-heading .eyebrow,
    .section-text .eyebrow,
    .compass-panel .eyebrow,
    .kinetic-copy .eyebrow,
    .world-copy .eyebrow,
    .story-copy .eyebrow,
    .runway-copy .eyebrow,
    .skill-copy .eyebrow,
    .atelier-copy .eyebrow,
    .material-lab-copy .eyebrow,
    .quality-dossier-head .eyebrow,
    .coverage-copy .eyebrow,
    .quote-copy .eyebrow
  )::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(235, 246, 255, 0.92), rgba(98, 178, 232, 0.2), transparent);
    box-shadow: 0 0 18px rgba(98, 178, 232, 0.32);
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .service-card-body > span,
    .process-grid article > span,
    .quality-check-card > span,
    .quality-score-strip strong,
    .runway-card > span,
    .world-step > span,
    .story-layer > span,
    .quote-launch-node > span
  ) {
    position: relative !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 5px !important;
    color: #f6fbff !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(90deg, rgba(17, 91, 148, 0.001), rgba(17, 91, 148, 0.001)) !important;
    box-shadow: none !important;
    text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .service-card-body > span,
    .process-grid article > span,
    .quality-check-card > span,
    .quality-score-strip strong,
    .runway-card > span,
    .world-step > span,
    .story-layer > span,
    .quote-launch-node > span
  )::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, #f6fbff, rgba(98, 178, 232, 0.22), transparent);
    box-shadow: 0 0 16px rgba(98, 178, 232, 0.34);
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .feature-photo:not(.no-frame-photo),
    .atelier-photo,
    .skill-media,
    .gallery-item,
    .gallery-photo-button,
    .service-card,
    .material-stage,
    .quality-proof-board,
    .process-grid article,
    .quality-check-card
  ) {
    border-color: rgba(217, 230, 247, 0.12) !important;
    border-radius: 6px !important;
    box-shadow: 0 12px 28px rgba(2, 13, 31, 0.16) !important;
    outline: 0 !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .feature-photo,
    .feature-photo figcaption,
    .gallery-caption,
    .skill-media figcaption,
    .atelier-photo figcaption
  ) {
    color: rgba(244, 249, 255, 0.9) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(
    .feature-photo img,
    .atelier-photo img,
    .skill-media img,
    .skill-media video,
    .gallery-photo-button img,
    .service-card img,
    .material-stage img,
    .quality-proof-board img
  ) {
    border: 0 !important;
    border-radius: 6px !important;
  }
}

/* Final mobile cleanup lock: no caption slabs or harsh outlines. */
/* Global label lock: short numeric markers stay text-led, never white-on-white boxes. */
:root body:not(#visual-label-lock) :is(
  .service-card-body > span,
  #werkwijze .process-grid article > span,
  .process-grid article > span,
  .world-step > span,
  .story-layer > span,
  .runway-card > span,
  .quality-check-card > span,
  .quality-score-strip strong,
  .quote-launch-node > span
) {
  position: relative !important;
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 0 5px !important;
  color: #f6fbff !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: 0 0 22px rgba(180, 225, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.42) !important;
}

:root body:not(#visual-label-lock) :is(
  .service-card-body > span,
  #werkwijze .process-grid article > span,
  .process-grid article > span,
  .world-step > span,
  .story-layer > span,
  .runway-card > span,
  .quality-check-card > span,
  .quality-score-strip strong,
  .quote-launch-node > span
)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #f6fbff, rgba(98, 178, 232, 0.22), transparent);
  box-shadow: 0 0 16px rgba(98, 178, 232, 0.34);
}

:root body:not(#visual-label-lock) .quality-score-strip span small {
  color: #eef7ff !important;
}

@media (max-width: 760px) {
  html:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) figure.feature-photo.no-frame-photo.no-frame-photo {
    border: 0 !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    outline: 0 !important;
  }

  html:root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) figure.feature-photo.no-frame-photo.no-frame-photo figcaption {
    margin-top: 10px !important;
    padding: 0 !important;
    color: rgba(244, 249, 255, 0.88) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  html body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) :is(.gallery-item, .gallery-photo-button, .atelier-photo, .skill-media, .service-card, .quality-proof-board, .material-stage) {
    border-color: rgba(217, 230, 247, 0.08) !important;
    box-shadow: 0 10px 24px rgba(2, 13, 31, 0.14) !important;
  }
}

@media (max-width: 760px) {
  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-section {
    padding: 56px clamp(14px, 4vw, 18px);
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-head {
    margin-bottom: 18px;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-head h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 12vw, 3.55rem);
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-flow: column !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: calc(-1 * clamp(14px, 4vw, 18px)) !important;
    padding-inline: clamp(14px, 4vw, 18px) !important;
    padding-bottom: 18px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain !important;
    scroll-padding-inline: clamp(14px, 4vw, 18px) !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-carousel::-webkit-scrollbar {
    display: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-card {
    flex: 0 0 min(88vw, 420px) !important;
    width: min(88vw, 420px) !important;
    min-width: min(88vw, 420px) !important;
    min-height: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) auto !important;
    scroll-snap-align: center !important;
    transform: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-card img {
    width: 100% !important;
    height: clamp(310px, 74vw, 520px) !important;
    min-height: 310px !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }

  :root body:not(.quote-page):not(.auth-page):not(.model-page):not(.gallery-admin-page):not(.profile-page) .painting-card figcaption {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    max-width: none !important;
    min-height: 42px !important;
    margin: 10px !important;
    justify-content: center !important;
    color: #fff !important;
    border-color: var(--navy-line) !important;
    background: var(--navy-surface-2) !important;
    text-align: center !important;
    box-shadow: none !important;
  }
}
