
:root {
  --ink: #0a0a0a;
  --ink-soft: #111111;
  --ink-card: #171717;
  --paper: #f3f1ed;
  --white: #ffffff;
  --muted: #8a8a8a;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(10, 10, 10, 0.15);
  --orange: #f29200;
  --orange-deep: #c66f00;
  --font-sans: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  --font-mono: var(--font-geist-mono), "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  cursor: default;
}

a,
button,
summary {
  cursor: pointer;
}

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

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

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

.site-shell {
  min-width: 320px;
  overflow: clip;
  background: var(--paper);
}

.brand-intro {
  display: none;
}

html[data-weltri-intro="pending"] .brand-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    #070707;
  background-size: 64px 64px;
  pointer-events: none;
  animation: brand-intro-curtain 1.02s cubic-bezier(.68,0,.22,1) both;
}

.brand-intro__stage {
  width: min(560px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
}

.brand-intro__logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: brand-intro-logo 0.48s cubic-bezier(.2,.75,.2,1) 0.04s both;
}

.brand-intro__mark {
  position: relative;
  width: 72px;
  height: 63px;
  overflow: hidden;
}

.brand-intro__mark img {
  position: absolute;
  inset: 0;
  width: 72px;
  max-width: none;
  height: auto;
}

.brand-intro__name {
  color: var(--orange);
  font-size: clamp(38px, 5vw, 50px);
  font-weight: 850;
  letter-spacing: -0.075em;
}

.brand-intro__name span {
  color: #e1e1e1;
}

.brand-intro__cad {
  width: 100%;
  height: auto;
  margin-top: 22px;
  overflow: visible;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-intro__cad-axis {
  opacity: 0;
  stroke: rgba(255,255,255,0.13);
  stroke-width: 1;
  animation: brand-intro-axis 0.24s ease 0.12s both;
}

.brand-intro__cad-stringer,
.brand-intro__cad-stairs {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.brand-intro__cad-stringer {
  stroke: rgba(255,255,255,0.28);
  stroke-width: 1;
  animation: brand-intro-draw 0.54s ease-out 0.17s both;
}

.brand-intro__cad-stairs {
  stroke: var(--orange);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 7px rgba(242,146,0,0.24));
  animation: brand-intro-draw 0.6s cubic-bezier(.45,0,.2,1) 0.19s both;
}

.brand-intro__cad-points {
  fill: var(--orange);
  stroke: #070707;
  stroke-width: 1;
  opacity: 0;
  animation: brand-intro-points 0.22s ease 0.61s both;
}

.brand-intro__caption {
  margin-top: -3px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: brand-intro-caption 0.28s ease 0.49s both;
}

.brand-intro__caption i {
  width: 18px;
  height: 1px;
  background: var(--orange);
}

@keyframes brand-intro-curtain {
  0%, 70% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes brand-intro-logo {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes brand-intro-axis {
  to { opacity: 1; }
}

@keyframes brand-intro-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes brand-intro-points {
  from { opacity: 0; transform: scale(0.65); transform-origin: center; }
  to { opacity: 1; transform: scale(1); transform-origin: center; }
}

@keyframes brand-intro-caption {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 12px 18px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.topline {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #060606;
  color: #9e9e9e;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline p {
  margin: 0;
}

.topline p span {
  color: var(--orange);
  margin-inline: 5px;
}

.topline__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topline a {
  color: #d7d7d7;
  transition: color 0.2s ease;
}

.topline a:hover {
  color: var(--orange);
}

.nav {
  position: absolute;
  z-index: 18;
  top: 34px;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(18px);
}

.nav__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
}

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

.brand__mark {
  position: relative;
  width: 47px;
  height: 41px;
  overflow: hidden;
  flex: 0 0 47px;
}

.brand__mark img {
  position: absolute;
  inset: 0;
  width: 47px;
  max-width: none;
  height: auto;
}

.brand__name {
  color: var(--orange);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.07em;
}

.brand__name span {
  color: #dfdfdf;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
  margin-right: 35px;
}

.nav__links a {
  position: relative;
  padding-block: 31px;
  color: #d0d0d0;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.04em;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 1px;
  background: var(--orange);
  transition: right 0.25s ease;
}

.nav__links a:hover {
  color: #fff;
}

.nav__links a:hover::after {
  right: 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.025em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

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

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button--nav {
  min-height: 44px;
  background: var(--orange);
  color: var(--ink);
}

.button--nav:hover,
.button--primary:hover {
  background: #ffad2f;
}

.hero {
  position: relative;
  min-height: 840px;
  display: flex;
  align-items: stretch;
  background: var(--ink);
  isolation: isolate;
}

.hero__media,
.hero__image,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
  z-index: -1;
}

.hero__image {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.92) 28%, rgba(5, 5, 5, 0.45) 52%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.78) 0%, transparent 35%),
    url("../images/weltri-hero.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(0.82) contrast(1.04);
  animation: hero-reveal 1.1s cubic-bezier(.2,.7,.2,1) both;
}

.hero__grid {
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

@keyframes hero-reveal {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-content-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__copy > .eyebrow,
.hero__copy > h1,
.hero__copy > .hero__lead,
.hero__copy > .hero__actions,
.hero__copy > .hero__meta,
.hero__badge,
.hero__scroll {
  animation: hero-content-rise 0.54s cubic-bezier(.2,.75,.2,1) both;
}

.hero__copy > .eyebrow { animation-delay: 0.08s; }
.hero__copy > h1 { animation-delay: 0.14s; }
.hero__copy > .hero__lead { animation-delay: 0.2s; }
.hero__copy > .hero__actions { animation-delay: 0.26s; }
.hero__copy > .hero__meta { animation-delay: 0.32s; }
.hero__badge { animation-delay: 0.28s; }
.hero__scroll { animation-delay: 0.35s; }

html[data-weltri-intro="pending"] .nav {
  animation: hero-content-rise 0.44s cubic-bezier(.2,.75,.2,1) 0.7s both;
}

html[data-weltri-intro="pending"] .hero__image {
  animation-delay: 0.46s;
}

html[data-weltri-intro="pending"] .hero__copy > .eyebrow {
  animation-delay: 0.65s;
}

html[data-weltri-intro="pending"] .hero__copy > h1 {
  animation-delay: 0.72s;
}

html[data-weltri-intro="pending"] .hero__copy > .hero__lead {
  animation-delay: 0.79s;
}

html[data-weltri-intro="pending"] .hero__copy > .hero__actions {
  animation-delay: 0.86s;
}

html[data-weltri-intro="pending"] .hero__copy > .hero__meta {
  animation-delay: 0.93s;
}

html[data-weltri-intro="pending"] .hero__badge {
  animation-delay: 0.84s;
}

html[data-weltri-intro="pending"] .hero__scroll {
  animation-delay: 0.95s;
}

.hero__content {
  position: relative;
  min-height: 840px;
  display: flex;
  align-items: center;
  padding-top: 135px;
  padding-bottom: 68px;
}

.hero__copy {
  width: min(650px, 65%);
}

.eyebrow {
  margin: 0 0 23px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c4c4c4;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.eyebrow--dark {
  color: #696969;
}

.hero h1,
.section-heading h2,
.precision h2,
.region h2,
.faq h2,
.contact h2 {
  margin: 0;
  letter-spacing: -0.064em;
  line-height: 0.93;
}

.hero h1 {
  max-width: 650px;
  color: #f4f4f4;
  font-size: clamp(62px, 6.25vw, 94px);
  font-weight: 780;
}

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

.hero__lead {
  max-width: 580px;
  margin: 29px 0 0;
  color: #b8b8b8;
  font-size: 17px;
  line-height: 1.72;
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button--primary {
  min-height: 56px;
  padding-inline: 23px;
  background: var(--orange);
  color: var(--ink);
}

.button--primary > svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  color: #e2e2e2;
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--orange);
}

.hero__meta {
  max-width: 610px;
  margin-top: 60px;
  padding-top: 21px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero__meta > div {
  display: flex;
  gap: 13px;
}

.hero__meta strong {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}

.hero__meta span {
  color: #8f8f8f;
  font-size: 11px;
  line-height: 1.55;
}

.hero__badge {
  position: absolute;
  top: 160px;
  right: 4px;
  width: 116px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(5,5,5,0.52);
  backdrop-filter: blur(12px);
}

.hero__badge > span {
  color: var(--orange);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.hero__badge p {
  margin: 0;
  color: #a8a8a8;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  right: 0;
  bottom: 59px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8c8c8c;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll span {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--orange) 0 50%, rgba(255,255,255,0.2) 50%);
}

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

.proofbar__grid {
  min-height: 98px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proofbar__grid > div {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 26px;
  border-left: 1px solid rgba(10,10,10,0.28);
}

.proofbar__grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proofbar strong {
  font-size: 13px;
  font-weight: 820;
}

.proofbar span {
  margin-top: 4px;
  color: rgba(10,10,10,0.64);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding-block: 120px;
}

.services,
.gallery,
.faq {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.region h2,
.faq h2 {
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 710;
}

.section-heading > p,
.region__copy > p,
.faq__intro > p {
  margin: 0 0 7px;
  color: #696969;
  font-size: 14px;
  line-height: 1.75;
}

.services__grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.service-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 29px 26px 25px;
  border-left: 1px solid var(--line-dark);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card:focus-visible {
  z-index: 3;
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.service-card:last-child {
  border-right: 1px solid var(--line-dark);
}

.service-card:hover {
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-10px);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #888;
  font-family: var(--font-mono);
  font-size: 10px;
}

.service-card__top svg {
  width: 19px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.4;
}

.service-card h3 {
  margin: 67px 0 17px;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.service-card > p {
  margin: 0;
  color: #6f6f6f;
  font-size: 12px;
  line-height: 1.75;
  transition: color 0.25s ease;
}

.service-card:hover > p {
  color: #a9a9a9;
}

.service-card__tags {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card__tags span {
  padding: 6px 8px;
  border: 1px solid var(--line-dark);
  color: #7a7a7a;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card:hover .service-card__tags span {
  border-color: var(--line);
  color: #aeaeae;
}

.precision {
  position: relative;
  padding-block: 126px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 120px 100%,
    var(--ink);
}

.precision::after {
  content: "CAD";
  position: absolute;
  right: -25px;
  bottom: -55px;
  color: rgba(255,255,255,0.022);
  font-size: 280px;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.precision__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 88px;
}

.precision__visual {
  position: relative;
  min-height: 525px;
  border: 1px solid var(--line);
  background: #191919;
}

.precision__visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -14px auto auto -14px;
  width: 48px;
  height: 48px;
  border-top: 1px solid var(--orange);
  border-left: 1px solid var(--orange);
}

.precision__visual img {
  width: 100%;
  height: 525px;
  object-fit: cover;
  filter: saturate(0.75);
}

.precision__label {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 15px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.precision h2,
.contact h2 {
  color: var(--white);
  font-size: clamp(50px, 4.85vw, 72px);
  font-weight: 680;
}

.precision h2 em {
  color: var(--orange);
  font-style: normal;
}

.precision__copy > p {
  margin: 26px 0 0;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.8;
}

.check-list {
  margin: 31px 0 35px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  color: #d4d4d4;
  font-size: 12px;
}

.check-list span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 8px;
}

.button--outline {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.calculator-teaser {
  position: relative;
  padding-block: 126px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 48%, rgba(242,146,0,0.14), transparent 31%),
    #101010;
}

.calculator-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 64px 64px;
}

.calculator-teaser__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 92px;
}

.calculator-teaser__visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015));
  box-shadow: 0 35px 90px rgba(0,0,0,0.35);
}

.calculator-teaser__visual::before,
.calculator-teaser__visual::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border-color: var(--orange);
}

.calculator-teaser__visual::before {
  inset: -1px auto auto -1px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.calculator-teaser__visual::after {
  inset: auto -1px -1px auto;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.calculator-teaser__code {
  position: absolute;
  top: 28px;
  right: 31px;
  color: rgba(255,255,255,0.09);
  font-size: 90px;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}

.calculator-teaser__formula {
  width: calc(100% - 70px);
  display: grid;
  gap: 15px;
}

.calculator-teaser__formula span {
  color: #888;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-teaser__formula strong {
  color: var(--orange);
  font-size: clamp(40px, 4vw, 62px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.calculator-teaser__formula i {
  width: 100%;
  height: 1px;
  margin-block: 9px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,0.08));
}

.calculator-teaser__copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 690;
  letter-spacing: -0.064em;
  line-height: 0.94;
}

.calculator-teaser__copy h2 em {
  color: var(--orange);
  font-style: normal;
}

.calculator-teaser__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.8;
}

.calculator-teaser__copy ul {
  margin: 29px 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  list-style: none;
}

.calculator-teaser__copy li {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  color: #cfcfcf;
  font-size: 10px;
  line-height: 1.5;
}

.calculator-teaser__copy li:first-child {
  padding-left: 0;
}

.calculator-teaser__copy li:last-child {
  border-right: 0;
}

.calculator-teaser__copy small {
  display: block;
  margin-top: 15px;
  color: #666;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading--gallery {
  align-items: end;
}

.gallery__grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  grid-template-rows: 420px 210px;
  gap: 17px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #171717;
}

.gallery-card--hero {
  grid-row: 1 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.6,.2,1), filter 0.4s ease;
}

.gallery-card--hero img {
  object-position: 63% center;
}

.gallery-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4,4,4,0.88));
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 23px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.gallery-card figcaption span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  max-width: 230px;
  font-size: 15px;
  font-weight: 580;
  text-align: right;
}

.gallery-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--orange);
  color: var(--ink);
}

.gallery-quote p {
  max-width: 400px;
  margin: 0;
  font-size: 22px;
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.gallery-quote span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  color: var(--white);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 20%, rgba(242,146,0,0.12), transparent 28%);
  pointer-events: none;
}

.section-heading--process {
  position: relative;
}

.section-heading--process h2 {
  color: var(--white);
}

.section-heading--process > p {
  color: #919191;
}

.process__list {
  position: relative;
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process__list li {
  position: relative;
  min-height: 225px;
  padding: 27px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.process__list li:hover {
  background: rgba(255,255,255,0.045);
}

.process__list li > span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
}

.process__list h3 {
  margin: 62px 0 12px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.process__list p {
  max-width: 260px;
  margin: 0;
  color: #858585;
  font-size: 11px;
  line-height: 1.7;
}

.region {
  padding-block: 115px;
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
}

.region__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.region__map {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.region__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.region__rings span {
  position: absolute;
  border: 1px solid rgba(10,10,10,0.22);
  border-radius: 50%;
}

.region__rings span:nth-child(1) { width: 440px; height: 440px; }
.region__rings span:nth-child(2) { width: 320px; height: 320px; }
.region__rings span:nth-child(3) { width: 195px; height: 195px; }

.region__rings i {
  width: 16px;
  height: 16px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(10,10,10,0.35), 0 0 0 14px rgba(10,10,10,0.08);
}

.region__map > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(10,10,10,0.74);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(60px);
}

.region__map strong {
  color: var(--ink);
  font-size: 16px;
}

.region .eyebrow--dark,
.region__copy > p {
  color: rgba(10,10,10,0.65);
}

.region .eyebrow > span {
  background: var(--ink);
}

.region__copy > p {
  max-width: 520px;
  margin-top: 27px;
}

.region__places {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region__places span,
.region__places a {
  padding: 9px 11px;
  border: 1px solid rgba(10,10,10,0.3);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.region__places a {
  background: var(--ink);
  color: var(--orange);
  transition: transform 0.2s ease;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__intro > p {
  margin-top: 28px;
}

.text-link--dark {
  margin-top: 23px;
  border-color: var(--line-dark);
  color: var(--ink);
}

.faq__items {
  border-top: 1px solid var(--line-dark);
}

.faq details {
  border-bottom: 1px solid var(--line-dark);
}

.faq summary {
  min-height: 89px;
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 680;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq summary > span {
  color: var(--orange-deep);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
}

.faq summary i {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  width: 14px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.faq summary i::after {
  transform: rotate(90deg);
}

.faq details[open] summary i::after {
  transform: rotate(0);
}

.faq details > p {
  margin: -8px 35px 28px 54px;
  color: #707070;
  font-size: 13px;
  line-height: 1.75;
}

.contact {
  position: relative;
  padding-block: 128px;
  overflow: hidden;
  background: #090909;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 82px 82px;
}

.contact__lines {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(242,146,0,0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 90px rgba(242,146,0,0.025),
    0 0 0 180px rgba(242,146,0,0.015);
}

.contact__content {
  position: relative;
  z-index: 1;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  font-size: clamp(58px, 6.5vw, 90px);
}

.contact__content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 30px auto 0;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

.contact__actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
}

.button--large {
  min-height: 60px;
  padding-inline: 28px;
}

.contact__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact__phone:hover {
  color: var(--orange);
}

.contact__phone span {
  margin-bottom: 5px;
  color: #737373;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  background: #050505;
  color: #999;
}

.footer__top {
  padding-block: 65px;
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 55px;
  border-bottom: 1px solid var(--line);
}

.brand--compact .brand__mark {
  width: 40px;
  height: 35px;
  flex-basis: 40px;
}

.brand--compact .brand__mark img {
  width: 40px;
}

.brand--compact .brand__name {
  font-size: 21px;
}

.footer__brand > p {
  max-width: 300px;
  margin: 22px 0 0;
  font-size: 11px;
  line-height: 1.7;
}

.footer h3 {
  margin: 5px 0 20px;
  color: #d0d0d0;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__top > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__top a,
.footer__top p {
  margin: 0 0 9px;
  color: #868686;
  font-size: 10px;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer__top a:hover {
  color: var(--orange);
}

.footer__bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #555;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-actions {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-actions a {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(14,14,14,0.9);
  color: var(--white);
  box-shadow: 0 9px 30px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.floating-actions a:last-child {
  background: var(--orange);
  color: var(--ink);
}

.floating-actions a:hover {
  transform: translateY(-3px);
  background: var(--white);
  color: var(--ink);
}

.floating-actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-dock {
  display: none;
}

.motion-ready .site-shell [data-motion-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.62s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    transform 0.62s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.motion-ready .site-shell .service-card[data-motion-reveal].is-visible:hover {
  transform: translateY(-10px);
}

@media (max-width: 1050px) {
  .nav__links {
    gap: 18px;
    margin-right: 22px;
  }

  .nav__links a:nth-last-child(-n+2) {
    display: none;
  }

  .hero__copy {
    width: 70%;
  }

  .hero__badge {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: 1px solid var(--line-dark);
  }

  .precision__grid {
    gap: 55px;
  }

  .faq__grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 34px, 680px);
  }

  .topline__links span {
    display: none;
  }

  .nav {
    top: 34px;
  }

  .nav__inner {
    min-height: 72px;
  }

  .nav__links {
    display: none;
  }

  .button--nav {
    margin-left: auto;
  }

  .hero,
  .hero__content {
    min-height: 780px;
  }

  .hero__content {
    padding-top: 135px;
  }

  .hero__image {
    background-image:
      linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.63) 68%, rgba(5,5,5,0.3)),
      linear-gradient(0deg, rgba(5,5,5,0.86), transparent 50%),
      url("../images/weltri-hero.webp");
    background-position: 60% center;
  }

  .hero__copy {
    width: 82%;
  }

  .hero__scroll {
    display: none;
  }

  .proofbar__grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 15px;
    gap: 13px 0;
  }

  .proofbar__grid > div,
  .proofbar__grid > div:first-child {
    min-height: 48px;
    padding-left: 18px;
    border-left: 1px solid rgba(10,10,10,0.28);
  }

  .proofbar__grid > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding-block: 90px;
  }

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

  .section-heading > p {
    max-width: 520px;
  }

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

  .calculator-teaser__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .calculator-teaser__visual {
    min-height: 350px;
  }

  .precision__visual,
  .precision__visual img {
    min-height: 0;
    height: 420px;
  }

  .gallery__grid {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 330px 200px;
  }

  .process__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .region__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .region__map {
    min-height: 340px;
  }

  .region__rings span:nth-child(1) { width: 340px; height: 340px; }
  .region__rings span:nth-child(2) { width: 250px; height: 250px; }
  .region__rings span:nth-child(3) { width: 150px; height: 150px; }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq__intro {
    position: static;
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__top > div:last-child {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-intro__stage {
    width: calc(100vw - 32px);
  }

  .brand-intro__mark {
    width: 55px;
    height: 48px;
  }

  .brand-intro__mark img {
    width: 55px;
  }

  .brand-intro__logo {
    gap: 11px;
  }

  .brand-intro__cad {
    margin-top: 17px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .topline__inner {
    justify-content: center;
  }

  .topline p {
    display: none;
  }

  .topline__links {
    width: 100%;
    justify-content: space-between;
  }

  .topline__links::before {
    content: "WELTRI · Kraków / Podhale";
    color: #777;
  }

  .brand__name {
    font-size: 20px;
  }

  .brand__mark {
    width: 39px;
    height: 34px;
    flex-basis: 39px;
  }

  .brand__mark img {
    width: 39px;
  }

  .button--nav {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .button--nav svg {
    display: none;
  }

  .hero,
  .hero__content {
    min-height: 730px;
  }

  .hero__content {
    align-items: flex-end;
    padding-top: 135px;
    padding-bottom: 45px;
  }

  .hero__image {
    background-image:
      linear-gradient(0deg, rgba(5,5,5,0.99) 0%, rgba(5,5,5,0.82) 48%, rgba(5,5,5,0.24) 100%),
      url("../images/weltri-hero.webp");
    background-position: 67% center;
  }

  .hero__grid {
    display: none;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero__lead {
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero__actions {
    margin-top: 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .button--primary {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero__meta {
    margin-top: 34px;
  }

  .hero__meta > div:nth-child(2) {
    display: none;
  }

  .hero__meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .proofbar strong {
    font-size: 11px;
  }

  .proofbar span {
    font-size: 6px;
  }

  .section {
    padding-block: 74px;
  }

  .section-heading h2,
  .region h2,
  .faq h2 {
    font-size: 44px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .service-card,
  .service-card:nth-child(2),
  .service-card:last-child {
    min-height: 290px;
    border-right: 1px solid var(--line-dark);
  }

  .service-card h3 {
    margin-top: 45px;
  }

  .precision {
    padding-block: 78px;
  }

  .calculator-teaser {
    padding-block: 78px;
  }

  .calculator-teaser__visual {
    min-height: 290px;
  }

  .calculator-teaser__formula {
    width: calc(100% - 42px);
  }

  .calculator-teaser__copy h2 {
    font-size: 46px;
  }

  .calculator-teaser__copy ul {
    grid-template-columns: 1fr;
  }

  .calculator-teaser__copy li,
  .calculator-teaser__copy li:first-child {
    min-height: 50px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .calculator-teaser__copy li:last-child {
    border-bottom: 0;
  }

  .precision__grid {
    gap: 50px;
  }

  .precision__visual,
  .precision__visual img {
    height: 305px;
  }

  .precision h2,
  .contact h2 {
    font-size: 46px;
  }

  .gallery__grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-card {
    height: 390px;
  }

  .gallery-card--detail {
    height: 430px;
  }

  .gallery-quote {
    min-height: 190px;
  }

  .process__list {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .process__list li {
    min-height: 190px;
  }

  .process__list h3 {
    margin-top: 47px;
  }

  .region {
    padding-block: 76px;
  }

  .region__map {
    min-height: 300px;
  }

  .region__rings span:nth-child(1) { width: 300px; height: 300px; }
  .region__rings span:nth-child(2) { width: 220px; height: 220px; }
  .region__rings span:nth-child(3) { width: 130px; height: 130px; }

  .faq summary {
    grid-template-columns: 28px 1fr 20px;
    min-height: 80px;
    font-size: 14px;
  }

  .faq details > p {
    margin-left: 40px;
    margin-right: 10px;
  }

  .contact {
    padding-block: 90px;
  }

  .contact__actions {
    flex-direction: column;
    gap: 24px;
  }

  .contact__phone {
    align-items: center;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 22px;
  }

  .footer__brand {
    grid-column: 1 / 3;
  }

  .footer__bottom span:last-child {
    display: none;
  }

  .floating-actions a:first-child {
    display: none;
  }

  .floating-actions {
    display: none;
  }

  .mobile-dock {
    position: fixed;
    z-index: 50;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 58px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(7,7,7,0.94);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(16px);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    color: #c4c4c4;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-dock a:last-child {
    border-right: 0;
    background: var(--orange);
    color: var(--ink);
  }

  .footer {
    padding-bottom: 75px;
  }
}

/* Kalkulator metali */

.tool-page {
  min-width: 320px;
  overflow: clip;
  background: #0b0b0b;
  color: var(--white);
}

.tool-topline {
  border-bottom: 1px solid var(--line);
  background: #050505;
  color: #7d7d7d;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-topline > div {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-topline a {
  color: #c6c6c6;
}

.tool-nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(16px);
}

.tool-nav > div {
  min-height: 82px;
  display: flex;
  align-items: center;
}

.tool-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tool-brand > span {
  width: 47px;
  height: 41px;
  overflow: hidden;
}

.tool-brand img {
  width: 47px;
  max-width: none;
  height: auto;
}

.tool-brand strong {
  color: var(--orange);
  font-size: 24px;
  font-style: normal;
  letter-spacing: -0.07em;
}

.tool-brand i {
  color: #dfdfdf;
  font-style: normal;
}

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

.tool-nav nav a {
  color: #bcbcbc;
  font-size: 12px;
  font-weight: 650;
}

.tool-nav nav a:hover {
  color: var(--orange);
}

.tool-nav__cta {
  min-height: 44px;
  margin-left: 34px;
  display: inline-flex;
  align-items: center;
  padding-inline: 19px;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.tool-hero {
  position: relative;
  padding-block: 90px 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 82px 100%,
    radial-gradient(circle at 80% 45%, rgba(242,146,0,0.17), transparent 25%),
    #0a0a0a;
}

.tool-hero::after {
  content: "kg";
  position: absolute;
  right: -15px;
  bottom: -80px;
  color: rgba(255,255,255,0.025);
  font-size: 310px;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.tool-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 90px;
}

.tool-hero h1 {
  margin: 0;
  color: #f1f1f1;
  font-size: clamp(60px, 6.7vw, 96px);
  font-weight: 760;
  letter-spacing: -0.067em;
  line-height: 0.92;
}

.tool-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.tool-hero__grid > div:first-child > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: #9a9a9a;
  font-size: 15px;
  line-height: 1.75;
}

.tool-hero__facts {
  display: grid;
  border-top: 1px solid var(--line);
}

.tool-hero__facts span {
  min-height: 57px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: #898989;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tool-hero__facts strong {
  min-width: 42px;
  color: var(--orange);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.tool-content {
  padding-block: 72px 115px;
}

.metal-calculator {
  color: var(--white);
}

.metal-calculator__steps {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #111;
}

.metal-calculator__steps span {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-inline: 23px;
  border-right: 1px solid var(--line);
  color: #9a9a9a;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metal-calculator__steps span:last-child {
  border-right: 0;
}

.metal-calculator__steps b {
  color: var(--orange);
}

.metal-calculator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(345px, 0.55fr);
  align-items: start;
  gap: 18px;
}

.calc-panel {
  border: 1px solid var(--line);
  background: #121212;
}

.calc-panel--controls {
  padding: 31px;
}

.calc-panel__heading {
  padding-bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.calc-panel__heading p,
.calc-order__heading p {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.calc-panel__heading strong {
  display: block;
  margin-top: 7px;
  color: #ededed;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.calc-reset {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(242,146,0,0.55);
  background: transparent;
  color: #8f8f8f;
  font: inherit;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.calc-reset:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.calc-shapes {
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}

.calc-shapes legend,
.calc-fields > label,
.calc-lead label,
.calc-lead__summary > label {
  color: #969696;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.calc-shapes__grid {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.calc-shapes button {
  min-height: 91px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 10px 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #191919;
  color: #909090;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.calc-shapes button:hover {
  border-color: rgba(242,146,0,0.6);
  color: #ddd;
  transform: translateY(-2px);
}

.calc-shapes button.is-active {
  border-color: var(--orange);
  background: rgba(242,146,0,0.1);
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--orange);
}

.calc-shapes button i {
  position: relative;
  min-height: 31px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.calc-shapes button .shape-symbol {
  width: 27px;
  height: 27px;
  min-height: 27px;
}

.shape-symbol--channel {
  background: linear-gradient(var(--orange), var(--orange)) left center / 5px 27px no-repeat;
}

.shape-symbol--channel::before,
.shape-symbol--channel::after,
.shape-symbol--iBeam::before,
.shape-symbol--iBeam::after {
  content: "";
  position: absolute;
  left: 0;
  width: 27px;
  height: 5px;
  background: var(--orange);
}

.shape-symbol--channel::before,
.shape-symbol--iBeam::before {
  top: 0;
}

.shape-symbol--channel::after,
.shape-symbol--iBeam::after {
  bottom: 0;
}

.shape-symbol--iBeam {
  background: linear-gradient(var(--orange), var(--orange)) center / 5px 27px no-repeat;
}

.calc-shapes button span {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.calc-fields {
  margin-top: 30px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
}

.calc-fields > label,
.calc-lead label,
.calc-lead__summary > label {
  display: grid;
  gap: 9px;
}

.calc-fields select,
.calc-input,
.calc-stepper,
.calc-lead input,
.calc-lead textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  background: #090909;
  color: #ededed;
}

.calc-fields select {
  padding-inline: 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.calc-input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.calc-input input,
.calc-stepper input {
  min-width: 0;
  min-height: 50px;
  border: 0;
  background: transparent;
  color: #ededed;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  outline: 0;
}

.calc-input input {
  padding-inline: 14px;
}

.calc-input i {
  padding-inline: 13px;
  color: #666;
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
}

.calc-fields select:focus,
.calc-input:focus-within,
.calc-stepper:focus-within,
.calc-lead input:focus,
.calc-lead textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(242,146,0,0.13);
  outline: 0;
}

.calc-stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
}

.calc-stepper button {
  border: 0;
  background: rgba(255,255,255,0.045);
  color: var(--orange);
  font-size: 19px;
}

.calc-stepper input {
  border-inline: 1px solid var(--line);
  text-align: center;
}

.calc-result {
  position: sticky;
  top: 18px;
  padding: 31px;
  background:
    radial-gradient(circle at 85% 15%, rgba(242,146,0,0.12), transparent 27%),
    #121212;
}

.calc-result__eyebrow {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.calc-result__value {
  display: block;
  margin-top: 18px;
  color: #f3f3f3;
  font-size: clamp(52px, 5.4vw, 77px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.calc-result__value small {
  color: var(--orange);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.calc-result > p {
  min-height: 44px;
  margin: 19px 0 0;
  color: #7d7d7d;
  font-size: 11px;
  line-height: 1.55;
}

.calc-result dl {
  margin: 27px 0 0;
}

.calc-result dl > div {
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.calc-result dt {
  color: #777;
  font-size: 10px;
}

.calc-result dd {
  margin: 0;
  color: #ddd;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.calc-result .calc-result__total {
  min-height: 67px;
  border-bottom: 1px solid var(--line);
}

.calc-result__total dd {
  color: var(--orange);
  font-size: 20px;
}

.calc-add {
  width: 100%;
  min-height: 57px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 19px;
  border: 0;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.calc-add span {
  font-size: 23px;
  font-weight: 500;
}

.calc-add:disabled {
  background: #242424;
  color: #666;
  cursor: not-allowed;
}

.calc-disclaimer {
  display: block;
  margin-top: 16px;
  color: #5f5f5f;
  font-size: 8px;
  line-height: 1.55;
}

.calc-order {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #121212;
}

.calc-order__heading {
  min-height: 138px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 28px 31px;
  border-bottom: 1px solid var(--line);
}

.calc-order__heading h2 {
  margin: 9px 0 0;
  color: #ededed;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.calc-order__heading > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(145px, 1fr));
  gap: 9px;
}

.calc-order__heading > div:last-child span {
  padding: 14px;
  border: 1px solid var(--line);
  color: #777;
  font-size: 9px;
}

.calc-order__heading > div:last-child strong {
  display: block;
  margin-top: 6px;
  color: var(--orange);
  font-size: 16px;
}

.calc-order__list {
  padding: 0 31px;
}

.calc-order__empty {
  margin: 0;
  padding-block: 32px;
  color: #6f6f6f;
  font-size: 11px;
  line-height: 1.6;
}

.calc-line {
  min-height: 92px;
  display: grid;
  grid-template-columns: 36px minmax(200px, 1fr) 104px 100px 110px 45px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.calc-line__number {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 9px;
}

.calc-line h3 {
  margin: 0;
  color: #ddd;
  font-size: 15px;
}

.calc-line p {
  margin: 5px 0 0;
  color: #6e6e6e;
  font-size: 9px;
}

.calc-line > strong {
  color: #d1d1d1;
  font-size: 11px;
  text-align: right;
}

.calc-line__quantity {
  display: grid;
  grid-template-columns: 29px 1fr 29px;
  align-items: center;
  border: 1px solid var(--line);
}

.calc-line__quantity button {
  height: 29px;
  border: 0;
  background: rgba(255,255,255,0.04);
  color: var(--orange);
}

.calc-line__quantity strong {
  font-size: 10px;
  text-align: center;
}

.calc-line__remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 8px;
  text-decoration: underline;
}

.calc-lead {
  margin-top: 20px;
  padding: 31px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #0d0d0d;
}

.calc-lead__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.calc-lead input,
.calc-lead textarea {
  padding: 12px 13px;
  font: inherit;
  font-size: 12px;
  resize: vertical;
}

.calc-lead__notes {
  grid-column: 1 / -1;
}

.calc-lead__summary textarea {
  min-height: 211px;
  color: #aaa;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.55;
}

.calc-lead__actions {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 8px;
}

.calc-lead__actions a,
.calc-lead__actions button {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding-inline: 12px;
  border: 1px solid var(--line);
  background: #171717;
  color: #c5c5c5;
  font: inherit;
  font-size: 10px;
  font-weight: 750;
  text-align: center;
}

.calc-lead__actions a {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.calc-lead__actions button:disabled {
  color: #555;
  cursor: not-allowed;
  opacity: 0.65;
}

.calc-lead__summary > p {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--orange);
  font-size: 9px;
}

.print-report {
  display: none;
}

.tool-seo {
  padding-block: 100px;
  background: var(--paper);
  color: var(--ink);
}

.tool-seo__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 100px;
}

.tool-seo h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.064em;
  line-height: 0.94;
}

.tool-seo__grid > div:last-child {
  padding-top: 34px;
}

.tool-seo__grid > div:last-child p {
  margin: 0 0 20px;
  color: #676767;
  font-size: 14px;
  line-height: 1.8;
}

.tool-cta {
  position: relative;
  padding-block: 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 105%, rgba(242,146,0,0.19), transparent 36%),
    #080808;
  text-align: center;
}

.tool-cta .eyebrow {
  justify-content: center;
}

.tool-cta h2 {
  margin: 0;
  color: #eee;
  font-size: clamp(56px, 6vw, 86px);
  letter-spacing: -0.066em;
  line-height: 0.92;
}

.tool-cta > div > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px auto 0;
  color: #888;
  font-size: 14px;
  line-height: 1.75;
}

.tool-cta > div > div {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tool-cta > div > div a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding-inline: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #ddd;
  font-size: 11px;
  font-weight: 750;
}

.tool-cta > div > div a:first-child {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.tool-footer {
  background: #040404;
}

.tool-footer > div {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.tool-footer p {
  margin: 0;
  color: #606060;
  font-size: 9px;
}

.tool-footer > div > a:last-child {
  color: var(--orange);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 980px) {
  .calc-shapes__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metal-calculator__layout {
    grid-template-columns: 1fr;
  }

  .calc-result {
    position: static;
  }

  .calc-order__heading,
  .calc-lead {
    grid-template-columns: 1fr;
  }

  .calc-line {
    grid-template-columns: 32px minmax(180px, 1fr) 100px 95px 100px 40px;
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .tool-nav nav {
    display: none;
  }

  .tool-nav__cta {
    margin-left: auto;
  }

  .tool-hero {
    padding-block: 70px;
  }

  .tool-hero__grid,
  .tool-seo__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tool-hero h1 {
    font-size: clamp(53px, 12vw, 76px);
  }

  .metal-calculator__steps {
    grid-template-columns: 1fr;
  }

  .metal-calculator__steps span {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .calc-line {
    padding-block: 18px;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
  }

  .calc-line__quantity {
    grid-column: 2;
    width: 100px;
  }

  .calc-line > strong {
    text-align: left;
  }

  .calc-line__remove {
    grid-column: 3;
    grid-row: 2 / 4;
  }

  .tool-footer > div {
    grid-template-columns: 1fr auto;
  }

  .tool-footer p {
    display: none;
  }
}

@media (max-width: 560px) {
  .tool-topline span {
    display: none;
  }

  .tool-topline > div {
    justify-content: flex-end;
  }

  .tool-brand strong {
    font-size: 20px;
  }

  .tool-brand > span,
  .tool-brand img {
    width: 39px;
  }

  .tool-brand > span {
    height: 34px;
  }

  .tool-nav > div {
    min-height: 70px;
  }

  .tool-nav__cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 9px;
  }

  .tool-hero {
    padding-block: 60px;
  }

  .tool-hero h1 {
    font-size: 50px;
  }

  .tool-hero__grid > div:first-child > p:last-child {
    font-size: 13px;
  }

  .tool-content {
    padding-block: 45px 75px;
  }

  .calc-panel--controls,
  .calc-result,
  .calc-lead {
    padding: 20px;
  }

  .calc-panel__heading {
    align-items: end;
    gap: 14px;
  }

  .calc-panel__heading strong {
    font-size: 21px;
  }

  .calc-shapes__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .calc-shapes button {
    min-height: 86px;
  }

  .calc-fields,
  .calc-lead__form {
    grid-template-columns: 1fr;
  }

  .calc-lead__notes {
    grid-column: auto;
  }

  .calc-result__value {
    font-size: 58px;
  }

  .calc-order__heading {
    padding: 24px 20px;
  }

  .calc-order__heading > div:last-child {
    grid-template-columns: 1fr;
  }

  .calc-order__list {
    padding-inline: 20px;
  }

  .calc-line {
    grid-template-columns: 22px 1fr;
  }

  .calc-line__quantity,
  .calc-line > strong,
  .calc-line__remove {
    grid-column: 2;
  }

  .calc-line__remove {
    grid-row: auto;
    justify-self: start;
  }

  .calc-lead__actions {
    grid-template-columns: 1fr;
  }

  .tool-seo {
    padding-block: 72px;
  }

  .tool-seo h2 {
    font-size: 44px;
  }

  .tool-cta {
    padding-block: 80px;
  }

  .tool-cta h2 {
    font-size: 48px;
  }

  .tool-cta > div > div {
    flex-direction: column;
  }

  .tool-footer > div {
    min-height: 95px;
  }
}

/* Lokalne podstrony usług */

.landing-page {
  min-width: 320px;
  overflow: clip;
  background: var(--paper);
  color: var(--ink);
}

.landing-top {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,7,0.82);
  backdrop-filter: blur(16px);
}

.landing-top > div {
  min-height: 82px;
  display: flex;
  align-items: center;
}

.landing-brand {
  color: var(--orange);
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.07em;
}

.landing-brand i {
  color: #e2e2e2;
  font-style: normal;
}

.landing-top nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}

.landing-top nav a {
  color: #c2c2c2;
  font-size: 12px;
  font-weight: 650;
}

.landing-phone {
  min-height: 43px;
  margin-left: 34px;
  display: inline-flex;
  align-items: center;
  padding-inline: 17px;
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.landing-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #080808;
}

.landing-hero__media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,0.98), rgba(5,5,5,0.89) 40%, rgba(5,5,5,0.28) 75%, rgba(5,5,5,0.1)),
    linear-gradient(0deg, rgba(5,5,5,0.68), transparent 45%),
    url("../images/weltri-hero.webp");
  background-position: center;
  background-size: cover;
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding-top: 110px;
}

.landing-hero__content > div {
  max-width: 790px;
}

.landing-breadcrumb {
  margin: 0 0 45px;
  color: #6f6f6f;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-breadcrumb a {
  color: var(--orange);
}

.landing-breadcrumb span {
  margin-inline: 10px;
}

.landing-hero h1 {
  margin: 0;
  color: #eee;
  font-size: clamp(63px, 7vw, 100px);
  font-weight: 760;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.landing-hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #aaa;
  font-size: 16px;
  line-height: 1.75;
}

.landing-actions {
  margin-top: 35px;
  display: flex;
  gap: 10px;
}

.landing-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding-inline: 22px;
  border: 1px solid rgba(255,255,255,0.24);
  color: #e0e0e0;
  font-size: 11px;
  font-weight: 750;
}

.landing-actions a:first-child {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.landing-benefits {
  background: var(--orange);
}

.landing-benefits > div {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.landing-benefits span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-inline: 24px;
  border-left: 1px solid rgba(10,10,10,0.25);
  font-size: 12px;
  font-weight: 780;
}

.landing-benefits span:first-child {
  padding-left: 0;
  border-left: 0;
}

.landing-benefits i {
  font-family: var(--font-mono);
  font-size: 8px;
  font-style: normal;
}

.landing-intro {
  padding-block: 115px;
}

.landing-intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  align-items: end;
  gap: 100px;
}

.landing-intro h2,
.landing-places h2,
.landing-faq h2 {
  margin: 0;
  font-size: clamp(50px, 5.2vw, 74px);
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.landing-intro__grid > p {
  margin: 0 0 5px;
  color: #656565;
  font-size: 14px;
  line-height: 1.82;
}

.landing-details {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line-dark);
}

.landing-details article {
  min-height: 285px;
  padding: 28px 24px;
  border-left: 1px solid var(--line-dark);
}

.landing-details article:last-child {
  border-right: 1px solid var(--line-dark);
}

.landing-details article > span {
  color: var(--orange-deep);
  font-family: var(--font-mono);
  font-size: 8px;
}

.landing-details h3 {
  margin: 70px 0 15px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.landing-details p {
  margin: 0;
  color: #707070;
  font-size: 11px;
  line-height: 1.7;
}

.landing-cad {
  padding-block: 120px;
  background: #0a0a0a;
  color: var(--white);
}

.landing-cad__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 85px;
}

.landing-cad__grid > div:first-child {
  position: relative;
}

.landing-cad__grid > div:first-child::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -14px;
  top: -14px;
  width: 55px;
  height: 55px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.landing-cad img {
  width: 100%;
  height: 485px;
  object-fit: cover;
}

.landing-cad h2 {
  margin: 0;
  font-size: clamp(50px, 5vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.landing-cad h2 em {
  color: var(--orange);
  font-style: normal;
}

.landing-cad__grid > div:last-child > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: #929292;
  font-size: 14px;
  line-height: 1.8;
}

.landing-cad__grid > div:last-child > a {
  margin-top: 28px;
  display: inline-flex;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--orange);
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
}

.landing-places {
  padding-block: 100px;
  background: var(--orange);
}

.landing-places .eyebrow > span {
  background: var(--ink);
}

.landing-places .eyebrow {
  color: rgba(10,10,10,0.6);
}

.landing-places > div > div {
  margin-top: 37px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.landing-places > div > div span {
  padding: 10px 13px;
  border: 1px solid rgba(10,10,10,0.3);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.landing-faq {
  padding-block: 110px;
}

.landing-faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.landing-faq__grid > div:last-child {
  border-top: 1px solid var(--line-dark);
}

.landing-faq details {
  border-bottom: 1px solid var(--line-dark);
}

.landing-faq summary {
  min-height: 84px;
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.landing-faq summary::-webkit-details-marker {
  display: none;
}

.landing-faq summary > span {
  color: var(--orange-deep);
  font-family: var(--font-mono);
  font-size: 8px;
}

.landing-faq summary i {
  position: relative;
  width: 16px;
  height: 16px;
}

.landing-faq summary i::before,
.landing-faq summary i::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 14px;
  height: 1px;
  background: var(--ink);
}

.landing-faq summary i::after {
  transform: rotate(90deg);
}

.landing-faq details[open] summary i::after {
  transform: none;
}

.landing-faq details > p {
  margin: -5px 20px 28px 51px;
  color: #696969;
  font-size: 12px;
  line-height: 1.75;
}

.landing-cta {
  padding-block: 115px;
  background:
    radial-gradient(circle at 50% 120%, rgba(242,146,0,0.2), transparent 39%),
    #080808;
  color: var(--white);
  text-align: center;
}

.landing-cta .eyebrow {
  justify-content: center;
}

.landing-cta h2 {
  margin: 0;
  font-size: clamp(58px, 6.5vw, 90px);
  letter-spacing: -0.066em;
  line-height: 0.92;
}

.landing-cta > div > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #898989;
  font-size: 14px;
}

.landing-cta > div > div {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.landing-cta > div > div a {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  padding-inline: 22px;
  border: 1px solid rgba(255,255,255,0.23);
  color: #ddd;
  font-size: 11px;
  font-weight: 750;
}

.landing-cta > div > div a:first-child {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.landing-footer {
  background: #030303;
  color: #777;
}

.landing-footer > div {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
}

.landing-footer p,
.landing-footer > div > a:last-child {
  font-size: 9px;
}

.landing-footer > div > a:last-child {
  color: var(--orange);
}

@media (max-width: 820px) {
  .landing-intro__grid,
  .landing-cad__grid,
  .landing-faq__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .landing-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-benefits > div {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 15px;
  }

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

@media (max-width: 560px) {
  .landing-top > div {
    min-height: 70px;
  }

  .landing-top nav {
    display: none;
  }

  .landing-phone {
    margin-left: auto;
    min-height: 39px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .landing-hero,
  .landing-hero__content {
    min-height: 730px;
  }

  .landing-hero__content {
    align-items: flex-end;
    padding-block: 120px 58px;
  }

  .landing-hero__media {
    background-image:
      linear-gradient(0deg, rgba(5,5,5,0.99), rgba(5,5,5,0.79) 55%, rgba(5,5,5,0.23)),
      url("../images/weltri-hero.webp");
    background-position: 65% center;
  }

  .landing-breadcrumb {
    margin-bottom: 30px;
  }

  .landing-hero h1 {
    font-size: 51px;
  }

  .landing-hero__lead {
    font-size: 13px;
  }

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

  .landing-actions a {
    justify-content: center;
  }

  .landing-benefits span {
    min-height: 52px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .landing-intro,
  .landing-cad,
  .landing-faq,
  .landing-places {
    padding-block: 75px;
  }

  .landing-intro h2,
  .landing-places h2,
  .landing-faq h2,
  .landing-cad h2 {
    font-size: 44px;
  }

  .landing-details {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .landing-details article {
    min-height: 235px;
    border-right: 1px solid var(--line-dark);
  }

  .landing-details h3 {
    margin-top: 55px;
  }

  .landing-cad img {
    height: 310px;
  }

  .landing-cta {
    padding-block: 83px;
  }

  .landing-cta h2 {
    font-size: 49px;
  }

  .landing-cta > div > div {
    flex-direction: column;
  }

  .landing-cta > div > div a {
    justify-content: center;
  }

  .landing-footer > div {
    grid-template-columns: 1fr auto;
  }

  .landing-footer p {
    display: none;
  }
}

/* Zaufanie i generator briefu */

.trust {
  background: #e9e6e0;
  color: var(--ink);
}

.trust__grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: 95px;
}

.trust__intro {
  position: sticky;
  top: 35px;
}

.trust__intro h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 720;
  letter-spacing: -0.064em;
  line-height: 0.94;
}

.trust__intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 26px;
  color: #686868;
  font-size: 14px;
  line-height: 1.78;
}

.trust__facts {
  border-top: 1px solid var(--line-dark);
}

.trust__facts article {
  min-height: 155px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line-dark);
}

.trust__facts article > span {
  padding-top: 5px;
  color: var(--orange-deep);
  font-family: var(--font-mono);
  font-size: 10px;
}

.trust__facts h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.trust__facts p {
  max-width: 620px;
  margin: 11px 0 0;
  color: #696969;
  font-size: 12px;
  line-height: 1.72;
}

.brief {
  position: relative;
  padding-block: 125px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(242,146,0,0.13), transparent 27%),
    #0b0b0b;
}

.brief::after {
  content: "BRIEF";
  position: absolute;
  right: -35px;
  bottom: -67px;
  color: rgba(255,255,255,0.025);
  font-size: 220px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brief__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 80px;
}

.brief__heading h2 {
  margin: 0;
  color: #f1f1f1;
  font-size: clamp(50px, 5.25vw, 76px);
  font-weight: 710;
  letter-spacing: -0.064em;
  line-height: 0.94;
}

.brief__heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.brief__heading > p {
  margin: 0 0 7px;
  color: #898989;
  font-size: 14px;
  line-height: 1.78;
}

.brief-builder {
  position: relative;
  z-index: 1;
  margin-top: 62px;
  border: 1px solid var(--line);
  background: rgba(19,19,19,0.96);
  box-shadow: 0 35px 90px rgba(0,0,0,0.25);
}

.brief-builder__progress {
  height: 3px;
  overflow: hidden;
  background: #252525;
}

.brief-builder__progress span {
  height: 100%;
  display: block;
  background: var(--orange);
  transition: width 0.3s ease;
}

.brief-builder__grid {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brief-builder label {
  display: grid;
  gap: 9px;
}

.brief-builder label > span {
  color: #929292;
  font-size: 10px;
  font-weight: 720;
}

.brief-builder input,
.brief-builder select,
.brief-builder textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  background: #090909;
  color: #e9e9e9;
  font: inherit;
  font-size: 12px;
  outline: none;
}

.brief-builder textarea {
  resize: vertical;
}

.brief-builder input:focus,
.brief-builder select:focus,
.brief-builder textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(242,146,0,0.12);
}

.brief-builder__wide {
  grid-column: span 2;
}

.brief-builder__footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  background: #0d0d0d;
}

.brief-builder__footer > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brief-builder__footer strong {
  color: var(--orange);
  font-size: 28px;
  letter-spacing: -0.05em;
}

.brief-builder__footer > div span {
  max-width: 120px;
  color: #6f6f6f;
  font-size: 9px;
  line-height: 1.45;
}

.brief-builder__footer > a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-inline: 20px;
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  font-weight: 820;
}

.brief-builder__footer > a.is-disabled {
  background: #252525;
  color: #666;
  cursor: not-allowed;
}

.brief-builder__footer > a span {
  font-size: 20px;
}

.brief-builder__note {
  margin: 0;
  padding: 0 32px 24px;
  color: #626262;
  font-size: 9px;
  line-height: 1.6;
}

/* Profile normowe i źródła kalkulatora */

.calc-fields__wide {
  grid-column: 1 / -1;
}

.calc-standard-note {
  color: #656565;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.55;
}

.tool-seo__source {
  display: inline-flex;
  margin-top: 4px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(10,10,10,0.25);
  color: #222;
  font-size: 10px;
  font-weight: 750;
}

.tool-seo__source:hover {
  border-color: var(--orange-deep);
  color: var(--orange-deep);
}

/* Polityka prywatności */

.legal-page {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

.legal-nav {
  border-bottom: 1px solid var(--line);
  background: #070707;
  color: #d5d5d5;
}

.legal-nav > div {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-nav > div > a:last-child {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  font-size: 10px;
  font-weight: 700;
}

.legal-hero {
  padding-block: 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(242,146,0,0.13), transparent 25%),
    #0a0a0a;
  color: var(--white);
}

.legal-hero h1 {
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.066em;
  line-height: 0.92;
}

.legal-hero > div > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  color: #999;
  font-size: 15px;
  line-height: 1.75;
}

.legal-hero small {
  display: block;
  margin-top: 26px;
  color: #666;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  padding-block: 110px;
}

.legal-content__grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: start;
  gap: 90px;
}

.legal-content aside {
  position: sticky;
  top: 30px;
  padding: 24px;
  border-top: 3px solid var(--orange);
  background: #e7e3dc;
}

.legal-content aside strong {
  font-size: 17px;
}

.legal-content aside p {
  margin: 15px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
  color: #676767;
  font-size: 10px;
  line-height: 1.6;
}

.legal-content article {
  padding: 0 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-content h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.045em;
}

.legal-content article p {
  margin: 17px 0 0;
  color: #5f5f5f;
  font-size: 13px;
  line-height: 1.83;
}

.legal-content article a {
  color: #222;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(242,146,0,0.7);
  text-underline-offset: 4px;
}

.legal-content__sources a {
  display: inline-flex;
  margin: 18px 22px 0 0;
  font-size: 10px;
}

.legal-footer {
  background: #050505;
  color: #777;
}

.legal-footer > div {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 10px;
}

.legal-footer > div a:first-of-type {
  margin-left: auto;
}

.landing-footer > div {
  grid-template-columns: 1fr auto auto auto;
}

@media (max-width: 820px) {
  .trust__grid,
  .brief__heading,
  .legal-content__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .trust__intro,
  .legal-content aside {
    position: static;
  }

  .brief-builder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-builder__wide {
    grid-column: 1 / -1;
  }

  .landing-footer > div {
    gap: 25px;
  }
}

@media (max-width: 560px) {
  .trust__intro h2,
  .brief__heading h2 {
    font-size: 45px;
  }

  .trust__facts article {
    grid-template-columns: 34px 1fr;
    gap: 13px;
  }

  .brief {
    padding-block: 78px;
  }

  .brief-builder {
    margin-top: 44px;
  }

  .brief-builder__grid {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .brief-builder__wide {
    grid-column: auto;
  }

  .brief-builder__footer {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .brief-builder__footer > a {
    width: 100%;
  }

  .brief-builder__note {
    padding: 0 20px 20px;
  }

  .legal-hero {
    padding-block: 78px;
  }

  .legal-hero h1 {
    font-size: 54px;
  }

  .legal-content {
    padding-block: 72px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 27px;
  }

  .legal-footer > div a:first-of-type {
    margin-left: 0;
  }

  .landing-footer > div {
    grid-template-columns: 1fr auto;
  }

  .landing-footer > div > a:nth-last-child(2) {
    display: none;
  }
}

@page {
  size: A4 portrait;
  margin: 13mm 14mm 14mm;
}

@media print {
  html,
  body {
    background: #fff !important;
    color: #111 !important;
  }

  body {
    -webkit-print-color-adjust: economy;
    print-color-adjust: economy;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .tool-topline,
  .tool-nav,
  .tool-hero,
  .tool-seo,
  .tool-cta,
  .tool-footer {
    display: none !important;
  }

  .metal-calculator > :not(.print-report) {
    display: none !important;
  }

  .tool-page,
  .tool-content,
  .metal-calculator {
    background: #fff !important;
    color: #111 !important;
  }

  .tool-page {
    min-width: 0;
    overflow: visible;
  }

  .tool-content {
    width: 100%;
    padding: 0;
  }

  .print-report {
    --print-accent: #b95e00;
    --print-ink: #171717;
    --print-muted: #666;
    --print-line: #c8c8c8;
    display: block !important;
    width: 100%;
    background: #fff !important;
    color: var(--print-ink);
    font-family: Arial, Helvetica, sans-serif;
  }

  .print-report__header {
    min-height: 17mm;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 4mm;
    border-bottom: 0.7mm solid var(--print-ink);
    background: #fff !important;
    color: var(--print-ink);
    break-inside: avoid;
  }

  .print-report__brand {
    display: flex;
    align-items: center;
    gap: 3mm;
  }

  .print-report__brand img {
    width: 10.5mm;
    height: auto;
    filter: grayscale(1) contrast(1.2);
  }

  .print-report__brand > div {
    display: grid;
    gap: 0.7mm;
  }

  .print-report__brand strong {
    color: var(--print-ink);
    font-size: 16pt;
    letter-spacing: -0.06em;
    line-height: 1;
  }

  .print-report__brand strong span {
    color: var(--print-accent);
  }

  .print-report__brand small {
    color: var(--print-muted);
    font-size: 5.7pt;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .print-report__document {
    display: grid;
    gap: 1.2mm;
    text-align: right;
  }

  .print-report__document span {
    color: var(--print-accent);
    font-size: 6pt;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .print-report__document strong {
    color: var(--print-ink);
    font-size: 8.5pt;
  }

  .print-report__intro {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 9mm;
    padding: 7mm 0 5.5mm;
    border-bottom: 0.25mm solid var(--print-line);
    break-inside: avoid;
  }

  .print-report__intro > div > p {
    margin: 0 0 2mm;
    color: var(--print-accent);
    font-size: 6.2pt;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .print-report__intro h1 {
    margin: 0;
    color: var(--print-ink);
    font-size: 19pt;
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .print-report__intro > div > span {
    display: block;
    max-width: 95mm;
    margin-top: 2.8mm;
    color: var(--print-muted);
    font-size: 7.3pt;
    line-height: 1.5;
  }

  .print-report__intro dl {
    margin: 0;
    border-top: 0.25mm solid var(--print-line);
  }

  .print-report__intro dl > div {
    min-height: 7.5mm;
    display: grid;
    grid-template-columns: 29mm 1fr;
    align-items: center;
    gap: 3mm;
    border-bottom: 0.2mm solid #d7d7d7;
  }

  .print-report__intro dt {
    color: var(--print-muted);
    font-size: 6pt;
    font-weight: 700;
    text-transform: uppercase;
  }

  .print-report__intro dd {
    margin: 0;
    color: var(--print-ink);
    font-size: 7.5pt;
    font-weight: 700;
    overflow-wrap: anywhere;
  }

  .print-report__totals {
    margin-top: 5.5mm;
    display: grid;
    grid-template-columns: 0.6fr 1fr 1.15fr;
    border-block: 0.35mm solid var(--print-ink);
    background: #fff !important;
    break-inside: avoid;
  }

  .print-report__totals > div {
    min-height: 15mm;
    display: grid;
    align-content: center;
    gap: 1.5mm;
    padding: 3mm 4mm;
    border-left: 0.2mm solid var(--print-line);
    background: #fff !important;
  }

  .print-report__totals > div:first-child {
    border-left: 0;
  }

  .print-report__totals span {
    color: var(--print-muted);
    font-size: 5.8pt;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .print-report__totals strong {
    color: var(--print-ink);
    font-size: 13.5pt;
    letter-spacing: -0.025em;
  }

  .print-report__totals > div:last-child strong {
    color: var(--print-accent);
  }

  .print-report__totals small {
    font-size: 7pt;
  }

  .print-report__table {
    width: 100%;
    margin-top: 5.5mm;
    table-layout: fixed;
    border-collapse: collapse;
    color: var(--print-ink);
    font-size: 7pt;
  }

  .print-report__table thead {
    display: table-header-group;
  }

  .print-report__table th {
    padding: 2.8mm 2mm;
    border-block: 0.35mm solid var(--print-ink);
    background: #fff !important;
    color: var(--print-ink);
    font-size: 5.7pt;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
  }

  .print-report__table th:first-child {
    width: 7mm;
  }

  .print-report__table th:nth-child(2) {
    width: 67mm;
  }

  .print-report__table th:nth-child(3) {
    width: 28mm;
  }

  .print-report__table th:nth-child(4) {
    width: 15mm;
  }

  .print-report__table th:nth-child(5) {
    width: 24mm;
  }

  .print-report__table th:nth-child(n + 4),
  .print-report__table td:nth-child(n + 4) {
    text-align: right;
  }

  .print-report__table td {
    padding: 3.2mm 2mm;
    border-bottom: 0.2mm solid #d2d2d2;
    background: #fff !important;
    vertical-align: top;
  }

  .print-report__table tr {
    break-inside: avoid;
  }

  .print-report__table td:first-child {
    color: var(--print-accent);
    font-weight: 800;
  }

  .print-report__table td strong,
  .print-report__table td span {
    display: block;
  }

  .print-report__table td strong {
    color: var(--print-ink);
    font-size: 7.5pt;
  }

  .print-report__table td span {
    margin-top: 1mm;
    color: var(--print-muted);
    font-size: 6.1pt;
    line-height: 1.35;
  }

  .print-report__notes {
    margin-top: 5.5mm;
    padding: 3.5mm 4mm;
    border: 0.2mm solid var(--print-line);
    border-left: 0.8mm solid var(--print-accent);
    background: #fff !important;
    break-inside: avoid;
  }

  .print-report__notes span {
    color: var(--print-accent);
    font-size: 5.8pt;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .print-report__notes p {
    margin: 2mm 0 0;
    color: var(--print-ink);
    font-size: 7pt;
    line-height: 1.45;
    white-space: pre-wrap;
  }

  .print-report__footer {
    margin-top: 7mm;
    padding-top: 4mm;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10mm;
    border-top: 0.25mm solid var(--print-line);
    break-inside: avoid;
  }

  .print-report__footer p {
    max-width: 110mm;
    margin: 0;
    color: var(--print-muted);
    font-size: 5.8pt;
    line-height: 1.5;
  }

  .print-report__footer > div {
    display: grid;
    gap: 0.7mm;
    color: #444;
    font-size: 6pt;
    text-align: right;
  }

  .print-report__footer strong {
    color: var(--print-accent);
    font-size: 7.5pt;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    display: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration and calculator runtime. */
:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
}

[hidden] {
  display: none !important;
}

.calc-dynamic-fields {
  display: contents;
}

.calc-dynamic-fields > label {
  display: grid;
  gap: 9px;
  color: #969696;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.calc-validation {
  min-height: 20px;
  margin: 16px 0 0;
  color: #efb75f;
  font-size: 11px;
  line-height: 1.45;
}

.contact-data {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-data p {
  margin: 0;
}

.contact-data strong,
.contact-data a {
  color: var(--ink);
}

.contact-data a {
  border-bottom: 1px solid rgba(10, 10, 10, 0.25);
}

.gallery__more {
  margin: 32px 0 0;
}

.floating-actions a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.landing-top a[aria-current="page"] {
  color: var(--orange);
}

@media (max-width: 720px) {
  .calc-dynamic-fields {
    display: contents;
  }
}

@media print {
  body > .skip-link,
  #wpadminbar {
    display: none !important;
  }

  .print-report__notes > strong,
  .print-report__notice > strong {
    display: block;
    color: var(--print-accent);
    font-size: 5.8pt;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .print-report__notice {
    margin-top: 3.5mm;
    padding: 3mm 4mm;
    border: 0.2mm solid var(--print-line);
    background: #fff !important;
    break-inside: avoid;
  }

  .print-report__notice p {
    margin: 1.5mm 0 0;
    color: var(--print-muted);
    font-size: 6pt;
    line-height: 1.45;
  }

  .print-report__footer > div {
    text-align: left;
  }

  .print-report__footer > div:last-child {
    text-align: right;
  }

  .print-report__footer span {
    display: block;
    color: var(--print-muted);
    font-size: 6pt;
    line-height: 1.35;
  }
}
