:root {
  --ink: #171915;
  --ink-soft: #242721;
  --paper: #f5f1e8;
  --paper-light: #fbfaf6;
  --muted: #62645d;
  --line: #d8d3c8;
  --orange: #f26a2e;
  --orange-dark: #b73b0b;
  --lime: #d8ef61;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 18, 14, 0.13);
  --radius: 4px;
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

input:focus-visible,
textarea:focus-visible {
  outline: 0;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

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

.is-hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(20, 22, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.server-warning {
  position: fixed;
  z-index: 120;
  top: 82px;
  right: 0;
  left: 0;
  color: #fff;
  background: #b63419;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.server-warning[hidden] {
  display: none;
}

.server-warning .container {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 18px;
  font-size: 12px;
}

.server-warning strong {
  font-weight: 800;
}

.server-warning span {
  color: rgba(255, 255, 255, 0.75);
}

.server-warning a {
  padding: 9px 12px;
  margin-left: auto;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  padding: 5px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 2px;
  fill: currentColor;
}

.brand-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.account-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.account-trigger:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.account-trigger svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}

.header-phone-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  z-index: 90;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100dvh - 82px);
  padding: 34px 32px;
  color: var(--white);
  background: var(--ink);
  overflow-y: auto;
}

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--display);
  font-size: clamp(20px, 6vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-account-action,
.mobile-admin-link {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  color: var(--lime);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.mobile-admin-link {
  color: var(--orange);
  font-family: var(--body) !important;
  font-size: 13px !important;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 12px;
}

.button-full {
  width: 100%;
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
}

.button-primary:hover {
  color: var(--white);
  background: var(--orange-dark);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--lime);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 148px 0 88px;
  color: var(--white);
  background: #171915;
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("assets/pallet-yard-hero.png");
  background-image: image-set(
    url("assets/pallet-yard-hero.webp") type("image/webp"),
    url("assets/pallet-yard-hero.png") type("image/png")
  );
  background-position: center center;
  background-size: cover;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 16, 13, 0.97) 0%, rgba(14, 16, 13, 0.88) 32%, rgba(14, 16, 13, 0.34) 67%, rgba(14, 16, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 14, 11, 0.88) 0%, transparent 38%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 9%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 410px 0 rgba(255, 255, 255, 0.05), 820px 0 rgba(255, 255, 255, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero .eyebrow {
  margin-bottom: 28px;
}

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.pulse-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--lime);
  border-radius: inherit;
  animation: pulse 2s infinite;
}

.hero .eyebrow::before {
  display: none;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.hero-points span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 10px;
}

.quick-card {
  width: 100%;
  max-width: 420px;
  padding: 30px;
  justify-self: end;
  color: var(--ink);
  background: rgba(250, 249, 245, 0.96);
  border-top: 5px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick-time {
  padding: 4px 7px;
  color: var(--ink);
  background: #e8e3d8;
}

.quick-card h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 18px;
  background: #e9e5dc;
  border-radius: var(--radius);
}

.mode-option {
  min-height: 44px;
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mode-option.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 4px 10px rgba(20, 22, 18, 0.15);
}

.mode-option:disabled {
  cursor: wait;
  opacity: 0.62;
}

.selected-product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  padding: 12px 14px;
  margin: -7px 0 16px;
  background: #edf6b6;
  border-left: 4px solid var(--lime-dark);
}

.selected-product[hidden] {
  display: none;
}

.selected-product > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.selected-product strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 12px;
}

.selected-product button {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  min-height: 44px;
  padding: 7px 5px;
  color: var(--orange-dark);
  background: transparent;
  border: 0;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.selected-product-wide {
  margin: -10px 0 22px;
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field > span:first-child,
.field > label:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid #cfcbc1;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 100px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 106, 46, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #70726b;
}

.input-shell {
  position: relative;
  display: block !important;
  margin: 0 !important;
}

.input-shell input {
  padding-right: 56px;
}

.unit {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--muted);
  font-size: 12px;
  transform: translateY(-50%);
}

.form-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.37);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.hero-bottom i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.audience-strip {
  color: var(--ink);
  background: var(--orange);
}

.audience-row {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 48px;
}

.audience-label {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-items {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
}

.audience-items span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  border-left: 1px solid rgba(23, 25, 21, 0.3);
}

.audience-items svg {
  width: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.process-sticky h2,
.faq-heading h2,
.cycle-copy h2,
.request-copy h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
  text-transform: uppercase;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card-accent {
  background: var(--lime);
  border-color: var(--lime);
}

.service-number {
  margin-bottom: 55px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
}

.service-card-dark .service-number {
  color: rgba(255, 255, 255, 0.45);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  background: var(--orange);
}

.service-card-dark .service-icon {
  color: var(--ink);
  background: var(--lime);
}

.service-card-accent .service-icon {
  color: var(--white);
  background: var(--ink);
}

.service-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card-accent p {
  color: rgba(23, 25, 21, 0.7);
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
  border-top: 1px solid currentColor;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.pallets {
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.pallet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.75fr;
  gap: 14px;
}

.pallet-grid.has-dynamic-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pallet-grid.has-single-catalog {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.pallet-grid.has-dynamic-catalog .pallet-card-question {
  grid-column: 1 / -1;
  min-height: 360px;
}

.pallet-grid.has-single-catalog .pallet-card-question,
.pallet-grid.has-two-catalog .pallet-card-question {
  min-height: 540px;
  grid-column: auto;
}

.pallet-card {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

[data-catalog-default][hidden] {
  display: none;
}

.catalog-empty-card {
  display: flex;
  min-height: 360px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  grid-column: 1 / 3;
  padding: 42px;
  background: #e8e3d8;
  border: 1px solid var(--line);
}

.catalog-empty-card[hidden] {
  display: none;
}

.catalog-empty-card h3 {
  max-width: 560px;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.05em;
}

.catalog-empty-card > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-loading-card {
  position: relative;
  overflow: hidden;
}

.catalog-loader {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 4px solid rgba(23, 25, 21, 0.14);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: catalog-spin .8s linear infinite;
}

.catalog-error-card {
  background: #f4ded3;
  border-color: #dda68e;
}

.catalog-error-card .eyebrow {
  color: #8a2f10;
}

@keyframes catalog-spin {
  to { transform: rotate(360deg); }
}

.pallet-visual {
  position: relative;
  display: grid;
  height: 290px;
  place-items: center;
  background: #ddd6c8;
  overflow: hidden;
}

.pallet-visual::before,
.pallet-visual::after {
  position: absolute;
  content: "";
  background: rgba(23, 25, 21, 0.1);
}

.pallet-visual::before {
  top: 30px;
  bottom: 30px;
  left: 50%;
  width: 1px;
}

.pallet-visual::after {
  top: 50%;
  right: 30px;
  left: 30px;
  height: 1px;
}

.pallet-visual-b {
  background: #d7dfc0;
}

.pallet-visual-image::before,
.pallet-visual-image::after {
  display: none;
}

.pallet-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-dimensions {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 6px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.css-pallet {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 120px;
  transform: rotateX(57deg) rotateZ(-28deg);
  transform-style: preserve-3d;
}

.css-pallet i,
.css-pallet b {
  position: absolute;
  display: block;
  background: #b77d46;
  border: 1px solid #8d5b2e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 4px 5px 0 #744723;
}

.css-pallet i {
  top: 0;
  bottom: 0;
  width: 24px;
}

.css-pallet i:nth-child(1) { left: 0; }
.css-pallet i:nth-child(2) { left: 50%; transform: translateX(-50%); }
.css-pallet i:nth-child(3) { right: 0; }

.css-pallet b {
  right: 0;
  left: 0;
  height: 20px;
}

.css-pallet b:nth-of-type(1) { top: 14px; }
.css-pallet b:nth-of-type(2) { bottom: 14px; }

.css-pallet-wide {
  width: 210px;
  height: 135px;
}

.dimension {
  position: absolute;
  z-index: 2;
  color: rgba(23, 25, 21, 0.52);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.dimension-x {
  right: 30px;
  bottom: 20px;
}

.dimension-y {
  top: 34px;
  left: 20px;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.pallet-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.card-tag {
  align-self: flex-start;
  padding: 5px 8px;
  margin-bottom: 15px;
  color: var(--orange-dark);
  background: #fae4d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pallet-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.045em;
}

.pallet-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.pallet-card .button {
  width: 100%;
  margin-top: auto;
}

.catalog-facts {
  display: grid;
  gap: 5px;
  margin: -8px 0 22px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.catalog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.pallet-card .catalog-actions .button {
  min-height: 46px;
  padding-inline: 12px;
  margin-top: 0;
  font-size: 10px;
}

.catalog-manager-link {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.catalog-manager-link:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.catalog-actions [data-catalog-order].is-busy,
.catalog-actions [data-catalog-order][aria-disabled="true"] {
  cursor: wait;
  pointer-events: none;
  opacity: 0.72;
}

.catalog-actions [data-catalog-order].is-success {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  cursor: default;
  opacity: 1;
}

.pallet-card-question {
  position: relative;
  justify-content: space-between;
  padding: 30px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  overflow: hidden;
}

.pallet-card-question::before {
  position: absolute;
  right: -50px;
  bottom: 70px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.025), 0 0 0 70px rgba(255, 255, 255, 0.02);
}

.question-mark {
  display: grid;
  width: 65px;
  height: 65px;
  margin-bottom: 54px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 30px;
}

.pallet-card-question h3 {
  font-size: 28px;
}

.pallet-card-question p {
  color: rgba(255, 255, 255, 0.64);
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  padding: 80px clamp(32px, 7vw, 120px);
  overflow: hidden;
}

.split-sell {
  background: var(--orange);
}

.split-buy {
  color: var(--white);
  background: var(--ink);
}

.split-panel::after {
  position: absolute;
  right: -170px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.09;
  box-shadow: 0 0 0 55px currentColor, 0 0 0 110px rgba(0, 0, 0, 0.25);
}

.split-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(23, 25, 21, 0.14);
  font-family: var(--display);
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
}

.split-buy .split-number {
  color: rgba(255, 255, 255, 0.07);
}

.split-content {
  position: relative;
  z-index: 1;
  width: min(100%, 550px);
}

.split-sell .eyebrow {
  color: var(--ink);
}

.split-content h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.06em;
  line-height: 1.08;
  text-transform: uppercase;
}

.split-content p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 34px;
  font-size: 16px;
  opacity: 0.72;
}

.process {
  background: #ebe6dc;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 130px;
}

.process-sticky p:not(.eyebrow) {
  max-width: 420px;
  margin: 28px 0 32px;
  color: var(--muted);
}

.steps-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid #c9c3b7;
}

.step:last-child {
  border-bottom: 1px solid #c9c3b7;
}

.step-index {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: 9px;
}

.step h3 {
  margin: 3px 0 9px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.step p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-status {
  padding: 5px 8px;
  color: var(--orange-dark);
  background: #f5d9ca;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cycle-section {
  position: relative;
  padding: 130px 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.cycle-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.09;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.cycle-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  align-items: center;
}

.cycle-copy h2 span,
.request-copy h2 span {
  color: var(--orange);
}

.cycle-copy,
.cycle-diagram {
  min-width: 0;
}

.cycle-copy > p:last-child {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.cycle-diagram {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  justify-self: end;
}

.cycle-line {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(216, 239, 97, 0.45);
  border-radius: 50%;
}

.cycle-node {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 126px;
  height: 74px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.cycle-node span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 8px;
}

.cycle-node strong {
  font-size: 11px;
  line-height: 1.25;
}

.cycle-node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.cycle-node-2 { top: 50%; right: 0; transform: translateY(-50%); }
.cycle-node-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.cycle-node-4 { top: 50%; left: 0; transform: translateY(-50%); }

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cycle-center svg {
  position: absolute;
  inset: 22px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cycle-center span {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.faq {
  background: var(--paper-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p:last-child {
  max-width: 360px;
  margin: 25px 0 0;
  color: var(--muted);
}

.accordion-item {
  border-top: 1px solid var(--line);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.035em;
  cursor: pointer;
}

.accordion-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-icon {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.accordion-item.is-open .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  padding: 0 70px 28px 0;
}

.accordion-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.request-section {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  background: #20231d;
  overflow: hidden;
}

.request-section::before {
  position: absolute;
  top: -170px;
  left: -130px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.018), 0 0 0 130px rgba(255,255,255,.012);
}

.request-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.request-copy {
  padding-top: 25px;
}

.request-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.62);
}

.request-contact {
  display: flex;
  flex-direction: column;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.request-contact span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-contact a {
  font-family: var(--display);
  font-size: 21px;
}

.request-form {
  padding: 36px;
  color: var(--ink);
  background: var(--paper-light);
  border-top: 5px solid var(--orange);
  box-shadow: var(--shadow);
}

.mode-switch-wide {
  margin-bottom: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}

.field-full {
  grid-column: 1 / -1;
}

.file-field {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  margin: 2px 0 18px;
  background: #eeebe3;
  border: 1px dashed #bcb7ac;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.file-field:hover {
  background: #e9e5dc;
  border-color: var(--orange);
}

.file-field:focus-within {
  border-color: var(--orange-dark);
  outline: 3px solid rgba(216, 239, 97, 0.85);
  outline-offset: 3px;
}

.file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
}

.file-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.file-field > span:nth-of-type(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  line-height: 1.35;
}

.file-field strong {
  font-size: 12px;
}

.file-field small {
  color: var(--muted);
  font-size: 9px;
}

.file-count {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
}

.file-error {
  padding: 10px 12px;
  margin: -10px 0 18px;
  color: #7b1d0d;
  background: #f8d9ce;
  border-left: 3px solid #b72f16;
  font-size: 11px;
  font-weight: 700;
}

.site-footer {
  padding: 55px 0 22px;
  color: var(--white);
  background: #11130f;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 45px;
}

.brand-footer .brand-mark {
  color: var(--ink);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-call {
  font-family: var(--display);
  font-size: 16px;
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.footer-details[hidden] {
  display: none;
}

.footer-details a {
  color: var(--lime);
}

.to-top {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease;
}

.to-top:hover {
  color: var(--ink);
  background: var(--lime);
}

.to-top svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 11px;
}

.footer-bottom a:hover {
  color: var(--lime);
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.mobile-cta {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 22px));
  transition: opacity .2s ease, transform .25s ease;
}

.mobile-cta.is-shown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 22px));
}

.toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.auth-dialog,
.account-dialog {
  width: min(610px, calc(100% - 32px));
  max-height: min(90dvh, 880px);
  padding: 38px;
  color: var(--ink);
  background: var(--paper-light);
  border: 0;
  border-top: 5px solid var(--orange);
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.4);
  overflow-x: hidden;
  overflow-y: auto;
}

.account-dialog {
  width: min(780px, calc(100% - 32px));
}

.auth-dialog::backdrop,
.account-dialog::backdrop {
  background: rgba(15, 17, 14, 0.78);
  backdrop-filter: blur(6px);
}

.auth-dialog .dialog-close,
.account-dialog .dialog-close {
  z-index: 2;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.auth-brand .brand-mark {
  width: 32px;
  height: 32px;
}

.auth-dialog h2,
.account-dialog h2 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(23px, 4vw, 32px);
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.auth-intro {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 13px;
}

.auth-order-context {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  margin: -8px 0 20px;
  background: #f5e7dc;
  border-left: 4px solid var(--orange);
}

.auth-order-context[hidden] {
  display: none;
}

.auth-order-context span,
.auth-order-context small {
  color: var(--muted);
  font-size: 10px;
}

.auth-order-context span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-order-context strong {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.25;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 24px;
  background: #e9e5dc;
}

.auth-tab {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.is-active {
  color: var(--white);
  background: var(--ink);
}

.auth-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.password-shell {
  position: relative;
  display: block !important;
  margin: 0 !important;
}

.password-shell input {
  padding-right: 88px;
}

.password-shell button {
  position: absolute;
  top: 50%;
  right: 12px;
  min-width: 68px;
  min-height: 44px;
  padding: 8px;
  color: var(--orange-dark);
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
}

.auth-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 3px 0 18px;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.auth-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  accent-color: var(--orange);
}

.auth-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-error {
  padding: 10px 12px;
  margin: 0 0 14px;
  color: #7b1d0d;
  background: #f8d9ce;
  border-left: 3px solid #b72f16;
  font-size: 11px;
}

.auth-guest-link {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  margin: -6px 0 18px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.account-head {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  padding-right: 58px;
  margin-bottom: 26px;
}

.account-head .eyebrow {
  margin-bottom: 8px;
}

.account-head h2 {
  margin-bottom: 3px;
}

.account-head > div:last-child > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.account-avatar {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.must-change-password {
  display: flex;
  flex-direction: column;
  padding: 15px 17px;
  margin-bottom: 16px;
  color: #6e2b0c;
  background: #fae0d2;
  border-left: 4px solid var(--orange);
  font-size: 12px;
}

.must-change-password[hidden] {
  display: none;
}

.must-change-password span {
  margin-top: 2px;
  font-size: 10px;
}

.account-admin-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--ink);
  border-left: 5px solid var(--orange);
}

.account-admin-card > span:first-child {
  display: flex;
  flex-direction: column;
}

.account-admin-card strong {
  font-family: var(--display);
  font-size: 13px;
}

.account-admin-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.account-section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.account-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
}

.account-section-head .eyebrow {
  margin-bottom: 6px;
}

.account-section-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.04em;
}

.account-refresh {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.account-leads {
  display: grid;
  gap: 10px;
}

.account-leads-more {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.account-lead-card {
  padding: 18px;
  background: #eeebe3;
  border: 1px solid #d7d1c5;
}

.account-lead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.account-lead-top > strong {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .04em;
}

.lead-status {
  padding: 4px 7px;
  color: var(--ink);
  background: #ddd8cc;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lead-status-new { background: #f7cdb8; color: #7b2607; }
.lead-status-completed { background: #d8efc1; color: #254c17; }
.lead-status-cancelled,
.lead-status-spam { background: #e3dfe0; color: #635c5e; }
.lead-status-quoted,
.lead-status-estimated { background: var(--lime); }

.account-lead-card h4 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.035em;
}

.account-lead-product {
  padding: 7px 9px;
  margin: -2px 0 10px;
  color: var(--ink);
  background: #e5f29d;
  font-size: 10px;
  font-weight: 800;
}

.account-lead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  color: var(--muted);
  font-size: 10px;
}

.account-lead-quote {
  padding-top: 10px;
  margin: 12px 0 0;
  color: var(--orange-dark);
  border-top: 1px solid #d2ccc0;
  font-size: 12px;
  font-weight: 800;
}

.account-empty,
.account-empty-state {
  padding: 25px;
  margin: 0;
  color: var(--muted);
  background: #eeebe3;
  font-size: 12px;
  text-align: center;
}

.account-empty-state {
  display: flex;
  flex-direction: column;
}

.account-empty-state strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
}

.account-security {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-security summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.account-security summary::-webkit-details-marker {
  display: none;
}

.account-security[open] summary span {
  transform: rotate(45deg);
}

.account-security form {
  padding: 4px 0 20px;
}

.account-logout {
  width: 100%;
  padding: 16px;
  margin-top: 18px;
  color: #8a2411;
  background: transparent;
  border: 1px solid #ca8c7e;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.success-dialog {
  width: min(570px, calc(100% - 32px));
  padding: 40px;
  color: var(--ink);
  background: var(--paper-light);
  border: 0;
  border-top: 5px solid var(--orange);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.success-dialog::backdrop {
  background: rgba(15, 17, 14, 0.76);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.dialog-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.dialog-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.success-dialog h2 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.045em;
}

.success-dialog > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}

.dialog-summary {
  padding: 15px;
  margin: 18px 0;
  white-space: pre-line;
  background: #ece8df;
  border-left: 3px solid var(--orange);
  font-size: 12px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dialog-actions .button {
  flex: 1;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (scripting: enabled) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  }

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

  .reveal-delay {
    transition-delay: .14s;
  }
}

.legal-main {
  min-height: 100vh;
  padding: 150px 0 90px;
  background: var(--paper-light);
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -0.06em;
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-lead {
  padding: 20px 24px;
  margin-bottom: 55px;
  color: #7c3a1c;
  background: #fae4d8;
  border-left: 4px solid var(--orange);
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.legal-content > p:not(.eyebrow):not(.legal-lead) {
  color: var(--muted);
}

.legal-content [data-legal-email] {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content > .button {
  margin-top: 30px;
}

@keyframes pulse {
  0% { opacity: .8; transform: scale(.45); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-phone {
    display: none !important;
  }

  .account-trigger {
    width: 42px;
    padding: 8px;
    justify-content: center;
  }

  .account-trigger > span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.1fr .8fr;
    gap: 38px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: 350px;
  }

  .service-number {
    margin-bottom: 30px;
  }

  .pallet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pallet-grid.has-dynamic-catalog {
    grid-template-columns: 1fr 1fr;
  }

  .pallet-card-question {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .process-layout,
  .faq-layout,
  .request-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 720px);
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 138px 0 90px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(14,16,13,.95), rgba(14,16,13,.66)), linear-gradient(0deg, rgba(14,16,13,.96), transparent 60%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    max-width: 620px;
    justify-self: start;
  }

  .hero-bottom {
    display: none;
  }

  .audience-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 28px 0;
  }

  .audience-items {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
  }

  .audience-items span:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro {
    max-width: 610px;
  }

  .split-cta {
    grid-template-columns: 1fr;
  }

  .split-panel {
    min-height: 510px;
  }

  .process-layout,
  .faq-layout,
  .request-grid,
  .cycle-grid {
    grid-template-columns: 1fr;
  }

  .process-sticky,
  .faq-heading {
    position: static;
  }

  .cycle-diagram {
    width: min(100%, 520px);
    justify-self: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr auto;
  }

  .footer-top > p {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 32px);
  }

  .server-warning {
    top: 64px;
  }

  .server-warning .container {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 12px;
  }

  .server-warning a {
    width: 100%;
    margin: 5px 0 0;
    text-align: center;
  }

  .catalog-actions {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 70px;
  }

  .mobile-menu {
    height: calc(100dvh - 70px);
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-actions {
    gap: 9px;
  }

  .account-trigger {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 115px 0 70px;
  }

  .hero-backdrop {
    background-position: 61% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(14,16,13,.95), rgba(14,16,13,.72)), linear-gradient(0deg, rgba(14,16,13,.98), rgba(14,16,13,.2) 70%);
  }

  .hero .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 61px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;
    margin-bottom: 34px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .quick-card {
    padding: 24px 18px;
  }

  .audience-items {
    grid-template-columns: 1fr;
  }

  .audience-items span,
  .audience-items span:nth-child(odd) {
    padding: 8px 0;
    border: 0;
    border-top: 1px solid rgba(23,25,21,.28);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .process-sticky h2,
  .faq-heading h2,
  .cycle-copy h2,
  .request-copy h2 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .section-intro {
    font-size: 14px;
  }

  .service-grid,
  .pallet-grid {
    grid-template-columns: 1fr;
  }

  .pallet-grid.has-dynamic-catalog {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 340px;
  }

  .pallet-card-question {
    grid-column: auto;
  }

  .catalog-empty-card {
    min-height: 320px;
    grid-column: auto;
    padding: 28px;
  }

  .pallet-card {
    min-height: 500px;
  }

  .pallet-visual {
    height: 260px;
  }

  .split-panel {
    min-height: 480px;
    padding: 62px 24px;
  }

  .split-number {
    font-size: 80px;
  }

  .split-content h2 {
    font-size: 35px;
  }

  .process-layout,
  .faq-layout,
  .request-grid,
  .cycle-grid {
    gap: 48px;
  }

  .step {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }

  .step-status {
    display: none;
  }

  .step-index {
    width: 42px;
    height: 42px;
  }

  .step h3 {
    font-size: 17px;
  }

  .cycle-section {
    padding: 80px 0;
  }

  .cycle-copy h2 {
    font-size: clamp(28px, 8.3vw, 38px);
    hyphens: manual;
    overflow-wrap: anywhere;
  }

  .cycle-diagram {
    transform: scale(.94);
  }

  .cycle-node {
    width: 108px;
    height: 64px;
    padding: 9px 10px;
  }

  .cycle-node strong {
    font-size: 9px;
  }

  .cycle-center {
    width: 115px;
    height: 115px;
  }

  .accordion-item button {
    min-height: 78px;
    font-size: 14px;
  }

  .accordion-panel {
    padding-right: 25px;
  }

  .request-section {
    padding: 75px 0;
  }

  .request-form {
    padding: 24px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-call {
    display: none !important;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 68px;
  }

  .mobile-cta {
    display: flex;
  }

  .toast {
    right: 16px;
    bottom: 84px;
    left: 16px;
  }

  .success-dialog {
    padding: 32px 22px;
  }

  .auth-dialog,
  .account-dialog {
    width: 100%;
    max-width: none;
    max-height: 92dvh;
    padding: 30px 20px calc(24px + env(safe-area-inset-bottom));
    margin: auto 0 0;
  }

  .auth-field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .account-head {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding-right: 54px;
  }

  .account-avatar {
    width: 56px;
    height: 56px;
    font-size: 14px;
  }

  .account-head h2 {
    font-size: 21px;
  }

  .account-admin-card {
    padding: 15px;
  }

  .account-lead-meta {
    flex-direction: column;
    gap: 3px;
  }

  .dialog-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
