/* ACCURATES — A4 portrait brochure (cover + inner pages) */

:root {
  --ink: #020617;
  --navy: #0f172a;
  --steel: #94a3b8;
  --steel-bright: #e2e8f0;
  --accent: #ea580c;
  --accent-soft: rgba(234, 88, 12, 0.2);
  --accent-line: rgba(234, 88, 12, 0.9);
  --safety: #14b8a6;
  --white: #f8fafc;
  --a4-w: 210mm;
  --a4-h: 297mm;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #020617;
  color: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

/* ——— Preview chrome ——— */
.preview-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(180deg, #161b22 0%, #0d1117 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--steel);
}

.preview-bar__hint {
  max-width: 42rem;
  line-height: 1.4;
}

.preview-bar__btn {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(232, 93, 4, 0.45);
  background: linear-gradient(180deg, rgba(232, 93, 4, 0.25), rgba(232, 93, 4, 0.08));
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.preview-bar__btn:hover {
  background: linear-gradient(180deg, rgba(232, 93, 4, 0.4), rgba(232, 93, 4, 0.12));
  border-color: rgba(232, 93, 4, 0.75);
}

.preview-bar__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.stage {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem 3rem;
}

.stage__inner {
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ——— Cover page (shared) ——— */
.cover {
  position: relative;
  width: var(--a4-w);
  height: var(--a4-h);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(148, 163, 184, 0.08);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.cover[data-parallax] {
  transition: transform 0.35s ease-out;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  will-change: transform;
}

.cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cover__hero {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: -1000px bottom;
}

.cover__overlay--warmth {
  background: linear-gradient(
    155deg,
    rgba(90, 55, 28, 0.38) 0%,
    rgba(45, 32, 22, 0.22) 42%,
    rgba(8, 12, 22, 0.45) 100%
  );
  mix-blend-mode: multiply;
  opacity: 1;
}

.cover__hero-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.35) 48%,
    rgba(0, 0, 0, 0.75) 68%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
}

.cover__overlay--vignette {
  background: radial-gradient(
    ellipse 120% 90% at 78% 42%,
    transparent 0%,
    rgba(2, 6, 23, 0.25) 45%,
    rgba(2, 6, 23, 0.55) 100%
  );
}

.cover__overlay--gradient {
  background: linear-gradient(
    100deg,
    rgba(2, 6, 23, 0.97) 0%,
    rgba(15, 23, 42, 0.88) 34%,
    rgba(15, 23, 42, 0.35) 56%,
    transparent 74%
  );
}

.cover__overlay--mesh {
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.cover__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ——— Unified header (cover + inner pages) ——— */
.brochure-head {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.brochure-head--cover {
  padding: 12mm 18mm 0;
}

.brochure-head--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8mm;
  padding: 9mm 16mm 8mm;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.brochure-head__logo {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.brochure-head__logo--cover {
  height: 28mm;
  max-width: 88mm;
  filter: brightness(0) invert(1) drop-shadow(0 6px 28px rgba(0, 0, 0, 0.28));
  opacity: 0.62;
}

.brochure-head__logo--inner {
  height: 26mm;
  max-width: 102mm;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
  opacity: 0.62;
}

.brochure-head__page {
  text-align: right;
  flex-shrink: 0;
}

.brochure-head__label {
  margin: 0 0 1mm;
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.brochure-head__title {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24pt;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.05;
}

.brochure-head__rule {
  width: 36mm;
  height: 3px;
  margin: 3mm 0 0 auto;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.15) 0%, var(--accent) 55%, var(--accent) 100%);
  border-radius: 2px;
}

.cover__main {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 150mm) 1fr;
  align-items: center;
  padding: 4mm 18mm 12mm;
  gap: 8mm;
}

.cover__main-spacer {
  min-height: 1px;
}

.cover__copy {
  justify-self: start;
  text-align: left;
  max-width: 108mm;
  padding: 5mm 0 5mm 5mm;
  border-left: 3px solid var(--accent-line);
}

.cover__activities {
  margin: 0 0 13mm;
  font-size: 12pt;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-bright);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cover__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.95;
}

.cover__title {
  margin: 5mm 0 10mm;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 65pt;
  line-height: 0.5;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.cover__title span {
  font-size: 31pt;
  font-weight: 400;
  line-height: 0.5;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cover__tagline {
  margin: 0 0 2mm;
  font-size: 17pt;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(248, 250, 252, 0.96);
  max-width: 25ch;
}

.cover__subline {
  margin: 0 0 7mm;
  font-size: 13pt;
  font-weight: 500;
  line-height: 1.5;
  color: var(--steel);
  max-width: 36ch;
}

.cover__web {
  margin: 0;
  font-size: 13pt;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--safety);
}

/* ——— Unified footer ——— */
.brochure-foot {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: auto;
  padding: 5mm 16mm 6mm;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.brochure-foot--cover,
.brochure-foot--inner {
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5.5mm 16mm 6.5mm;
}

.brochure-foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2mm;
  width: 100%;
}

.brochure-foot__line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3rem 0.55rem;
  text-align: center;
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel-bright);
  line-height: 1.45;
}

.brochure-foot__sep {
  color: var(--accent);
  /* color: rgba(148, 163, 184, 0.45); */
  font-weight: 400;
}

/* ——— Inner page: About Us ——— */
.sheet {
  position: relative;
  width: var(--a4-w);
  min-height: var(--a4-h);
  height: var(--a4-h);
  overflow: hidden;
  background: linear-gradient(165deg, #0f172a 0%, #020617 55%, #0a1628 100%);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(148, 163, 184, 0.08);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.sheet__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.6;
}

.sheet__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(234, 88, 12, 0.06) 0%,
    transparent 42%,
    rgba(20, 184, 166, 0.04) 100%
  );
}

.sheet .brochure-head--inner {
  z-index: 1;
}

.sheet__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 5mm 0 0;
}

/* Center the block vertically between header and footer; avoid a flex-grown “void” under Vision/Mission */
.sheet--about .sheet__inner {
  padding-top: 5mm;
  justify-content: center;
}

/* About — editorial layout: asymmetric copy + hero, full-width photo strip, vision/mission */
.about__content {
  flex: 0 1 auto;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 3.5mm;
  padding: 0 11mm 2mm;
}

.about__intro-block {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 4mm 9mm;
  align-items: stretch;
  flex: 0 0 auto;
  min-height: 0;
}

.about__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border: none;
}

.about__text::before {
  content: "";
  width: 100%;
  max-width: 48mm;
  height: 2px;
  margin-bottom: 3.5mm;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(234, 88, 12, 0.15) 70%, transparent 100%);
  border-radius: 1px;
}

.about__kicker {
  margin: 0 0 3mm;
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--safety);
  line-height: 1.45;
}

.about__intro p:first-child {
  font-size: 10.5pt;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: rgba(248, 250, 252, 0.98);
}

.about__intro p {
  margin: 0 0 2.2mm;
  font-size: 9.25pt;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.92);
  text-align: justify;
  text-justify: inter-word;
}

.about__intro p:last-child {
  margin-bottom: 0;
}

.about__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4mm;
  flex-shrink: 0;
  min-height: 0;
}

.about__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.95);
}

.about__figure--hero {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 100mm;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  align-self: start;
}

.about__figure--wide {
  aspect-ratio: 2 / 1;
  min-height: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.about__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2mm 3mm;
  font-size: 6.25pt;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.98);
  background: linear-gradient(transparent, rgba(2, 6, 23, 0.9));
}

.about__vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4mm;
  width: 100%;
  flex-shrink: 0;
  padding-top: 3mm;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.about__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 3.5mm 4.5mm 4mm;
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.28) 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  min-height: 0;
  overflow: hidden;
}

.about__card-num {
  position: absolute;
  right: 3mm;
  top: 2mm;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 32pt;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(248, 250, 252, 0.06);
  pointer-events: none;
  user-select: none;
}

.about__card--vision {
  border-top: 2px solid var(--accent);
}

.about__card--mission {
  border-top: 2px solid var(--safety);
}

.about__card-head {
  display: flex;
  align-items: flex-start;
  gap: 2.5mm;
  margin-bottom: 2mm;
  position: relative;
  z-index: 1;
}

.about__card-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.about__card--mission .about__card-icon {
  color: var(--safety);
}

.about__card-label {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 11pt;
  letter-spacing: 0.02em;
  color: var(--white);
}

.about__card-text {
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
  font-size: 8.75pt;
  line-height: 1.5;
  color: var(--steel-bright);
}

/* ——— Catalog pages (product categories): same dark shell as About ——— */
.sheet--catalog {
  color: var(--white);
}

.sheet--catalog .sheet__bg {
  z-index: 0;
}

.sheet__inner--catalog {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 4mm;
  padding: 4mm 12mm 5mm;
  overflow: hidden;
}

.catalog-section {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.catalog-section + .catalog-section {
  padding-top: 3mm;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.catalog-section__title {
  display: flex;
  align-items: center;
  gap: 2.5mm;
  margin: 0 0 3mm;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 11pt;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.2;
}

.catalog-section__bar {
  width: 3px;
  align-self: stretch;
  min-height: 13px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.catalog-section__bar--teal {
  background: var(--safety);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5mm 3.5mm;
}

.catalog-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.catalog-item__img-wrap {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.sheet--catalog-safety .catalog-item__img-wrap,
.sheet--catalog-hand-tools .catalog-item__img-wrap,
.sheet--catalog-electrical .catalog-item__img-wrap,
.sheet--catalog-power-tools .catalog-item__img-wrap,
.sheet--catalog-welding .catalog-item__img-wrap,
.sheet--catalog-lifting .catalog-item__img-wrap,
.sheet--catalog-general .catalog-item__img-wrap {
  aspect-ratio: auto;
  height: 138px;
}

.sheet--catalog-safety .catalog-item__img-wrap,
.sheet--catalog-hand-tools .catalog-item__img-wrap,
.sheet--catalog-electrical .catalog-item__img-wrap,
.sheet--catalog-power-tools .catalog-item__img-wrap,
.sheet--catalog-welding .catalog-item__img-wrap,
.sheet--catalog-lifting .catalog-item__img-wrap,
.sheet--catalog-general .catalog-item__img-wrap {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

.sheet--catalog-safety .catalog-item__img-wrap img,
.sheet--catalog-hand-tools .catalog-item__img-wrap img,
.sheet--catalog-electrical .catalog-item__img-wrap img,
.sheet--catalog-power-tools .catalog-item__img-wrap img,
.sheet--catalog-welding .catalog-item__img-wrap img,
.sheet--catalog-lifting .catalog-item__img-wrap img,
.sheet--catalog-general .catalog-item__img-wrap img {
  object-fit: contain;
  padding: 10px;
  background: transparent;
}

.catalog-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.catalog-item figcaption {
  margin: 1.2mm 0 0;
  font-size: 6.75pt;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--steel-bright);
  padding: 0 1mm;
}

/* ——— Contact (closing page) ——— */
.sheet--contact {
  color: var(--white);
}

.sheet--contact .contact__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sheet--contact .contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.2;
  filter: saturate(0.75) contrast(1.05);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.sheet--contact .contact__media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(2, 6, 23, 0.82) 42%,
    rgba(15, 23, 42, 0.9) 100%
  );
}

.sheet--contact .sheet__bg {
  z-index: 1;
}

.sheet--contact .brochure-head--inner,
.sheet--contact .sheet__inner {
  position: relative;
  z-index: 2;
}

.sheet__inner--contact {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4mm 16mm 5mm;
}

.contact__layout {
  width: 100%;
  max-width: 118mm;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5mm;
}

.contact__card {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  padding: 5.5mm 6.5mm 5mm;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4.5mm;
}

.contact__row {
  display: flex;
  gap: 4mm;
  align-items: flex-start;
}

.contact__row + .contact__row {
  padding-top: 4mm;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.contact__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.28);
  color: var(--safety);
}

.contact__icon-wrap--sm {
  width: 36px;
  height: 36px;
}

.contact__icon {
  width: 20px;
  height: 20px;
}

.contact__body {
  min-width: 0;
  flex: 1;
}

.contact__label {
  margin: 0 0 1.5mm;
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.contact__value {
  margin: 0;
  font-size: 10pt;
  font-weight: 500;
  line-height: 1.55;
  color: var(--steel-bright);
}

.contact__link {
  color: var(--steel-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 88, 12, 0.45);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.contact__link:hover {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.contact__divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(148, 163, 184, 0.28) 20%,
    rgba(148, 163, 184, 0.28) 80%,
    transparent 100%
  );
  margin: 0 2mm;
}

.contact__hours {
  display: flex;
  align-items: center;
  gap: 4mm;
  padding: 4mm 5.5mm;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.contact__hours .contact__label {
  margin-bottom: 1mm;
}

.contact__hours-text {
  min-width: 0;
}

.contact__hours-value {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13pt;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}

.contact__web {
  margin: 1mm 0 0;
  text-align: center;
}

.contact__web-link {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 14pt;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--safety);
  text-decoration: none;
  border-bottom: 2px solid rgba(20, 184, 166, 0.45);
  padding-bottom: 1px;
}

.contact__web-link:hover {
  color: #5eead4;
  border-bottom-color: var(--safety);
}

.contact__closing {
  margin: 2mm 0 0;
  text-align: center;
  font-size: 9.5pt;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.92);
  font-style: italic;
  padding: 0 4mm;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }

  html {
    width: 100%;
    height: 100%;
  }

  body {
    margin: 0 !important;
    padding: 0 !important;
    width: 210mm;
    min-height: 297mm;
    background: white;
  }

  .no-print {
    display: none !important;
  }

  .stage {
    margin: 0 !important;
    padding: 0 !important;
    width: 210mm;
    min-height: 297mm;
    display: block !important;
  }

  .stage__inner {
    width: 210mm;
    min-height: 297mm;
    margin: 0 !important;
    padding: 0 !important;
    perspective: none !important;
    transform: none !important;
  }

  .cover {
    width: 210mm !important;
    height: 297mm !important;
    min-height: 297mm !important;
    max-height: 297mm !important;
    margin: 0 !important;
    page-break-after: always;
  }

  .cover[data-parallax] {
    transform: none !important;
    box-shadow: none !important;
  }

  .cover__media {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .cover__overlay--warmth,
  .cover__overlay--vignette,
  .cover__overlay--gradient,
  .cover__overlay--mesh {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Backdrop blur often drops in print — use opaque bar so text always shows */
  .brochure-foot--cover,
  .brochure-foot--inner {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgb(15, 23, 42) !important;
    border-top-color: rgba(148, 163, 184, 0.35) !important;
  }

  .brochure-foot__inner {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .sheet {
    width: 210mm !important;
    min-height: 297mm !important;
    height: 297mm !important;
    max-height: 297mm !important;
    margin: 0 !important;
    box-shadow: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .sheet--about {
    page-break-before: always;
  }

  .sheet--catalog {
    page-break-before: always;
    border: none !important;
    background: linear-gradient(165deg, #0f172a 0%, #020617 55%, #0a1628 100%) !important;
  }

  .sheet--catalog .sheet__bg {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .sheet--contact {
    page-break-before: always;
    border: none !important;
    background: linear-gradient(165deg, #0f172a 0%, #020617 55%, #0a1628 100%) !important;
  }

  .sheet--contact .contact__media img {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    opacity: 0.16 !important;
  }

  .contact__card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(15, 23, 42, 0.94) !important;
  }

  .catalog-item__img-wrap img {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .about__intro p {
    font-size: 9.5pt;
  }

  .about__figure {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .brochure-foot__line {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .brochure-head--inner {
    background: rgba(15, 23, 42, 0.96) !important;
  }
}

@media (max-width: 900px) {
  .stage__inner {
    transform: scale(0.72);
    transform-origin: top center;
  }
}

@media (max-width: 720px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sheet--about .sheet__inner {
    justify-content: flex-start;
    padding-top: 4mm;
  }

  .about__intro-block {
    grid-template-columns: 1fr;
    gap: 5mm;
  }

  .about__figure--hero {
    max-height: 280px;
    margin: 0 auto;
    max-width: 320px;
  }

  .about__mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 3mm;
  }

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

  .brochure-head--inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brochure-head__page {
    text-align: left;
  }

  .brochure-head__rule {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .stage__inner {
    transform: scale(0.5);
  }

  .cover__title {
    font-size: 56pt;
  }
}
