@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}

:root {
  --ink: #14232c;
  --ink-2: #253843;
  --muted: #64727a;
  --line: #dfe5e7;
  --paper: #ffffff;
  --paper-soft: #f5f7f6;
  --warm: #f5efe6;
  --orange: #ef7d2b;
  --orange-dark: #cf5f14;
  --orange-soft: #fff0e4;
  --yellow: #f5b53e;
  --green: #3f6950;
  --dark: #12242f;
  --dark-2: #1a303c;
  --dark-3: #27434f;
  --white-muted: rgba(255, 255, 255, .72);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(18, 36, 47, .08);
  --shadow: 0 20px 55px rgba(18, 36, 47, .13);
  --shadow-lg: 0 30px 80px rgba(18, 36, 47, .2);
  --container: 1180px;
  --header-height: 82px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  line-height: 1.18;
}

h1,
h2,
h3 {
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.2vw, 5.25rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  font-weight: 790;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 760;
}

::selection {
  color: #fff;
  background: var(--orange-dark);
}

:focus-visible {
  outline: 3px solid rgba(239, 125, 43, .45);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--orange-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.preview-notice {
  position: relative;
  z-index: 1001;
  color: #4d3503;
  background: #ffda7f;
  border-bottom: 1px solid rgba(77, 53, 3, .18);
  font-size: .875rem;
}

.preview-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  text-align: center;
}

.preview-notice code {
  padding: 2px 5px;
  background: rgba(255, 255, 255, .4);
  border-radius: 4px;
}

.icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.icon--small {
  width: 17px;
  height: 17px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #ffc78f;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(239, 125, 43, .14);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 12px 26px rgba(207, 95, 20, .24);
}

.button--primary:hover {
  box-shadow: 0 16px 32px rgba(207, 95, 20, .32);
}

.button--light {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button--dark {
  color: #fff;
  background: var(--dark);
  box-shadow: 0 14px 30px rgba(18, 36, 47, .18);
}

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

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

.button--large {
  min-height: 58px;
  padding-inline: 25px;
  border-radius: 14px;
}

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

.button[aria-disabled="true"],
.button:disabled {
  cursor: not-allowed;
  opacity: .62;
  transform: none;
}

/* Header */
.topbar {
  color: rgba(255, 255, 255, .82);
  background: #0c1c25;
  font-size: .8rem;
  font-weight: 650;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 24px;
}

.topbar__item,
.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__contact {
  margin-left: auto;
  color: #fff;
  font-weight: 760;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(18, 36, 47, .08);
  box-shadow: 0 10px 30px rgba(18, 36, 47, .08);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 26px;
}

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

.brand__mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(207, 95, 20, .2);
}

.brand__mark svg {
  width: 35px;
  height: 35px;
  stroke-width: 3.1;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 1.03rem;
  letter-spacing: -.02em;
}

.brand__text small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 730;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 12px 11px;
  color: var(--ink-2);
  font-size: .875rem;
  font-weight: 720;
  white-space: nowrap;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(239, 125, 43, .12), transparent 26%),
    linear-gradient(135deg, #10232e 0%, #17323f 58%, #0f232c 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(50px, 7vw, 100px);
  padding-block: 82px 98px;
}

.hero__content {
  max-width: 690px;
}

.hero h1 span {
  color: #ffb770;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, .8);
  font-size: .84rem;
  font-weight: 650;
}

.hero__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__benefits .icon {
  width: 18px;
  height: 18px;
  color: #ffb770;
  stroke-width: 2.8;
}

.hero__visual {
  position: relative;
  min-height: 480px;
}

.hero-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-card--main {
  top: 48px;
  right: 22px;
  width: min(100%, 420px);
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-radius: 26px;
  transform: rotate(1.5deg);
}

.hero-card__top {
  display: flex;
  min-height: 120px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 18px;
  overflow: hidden;
}

.hero-card__label {
  display: inline-flex;
  padding: 7px 10px;
  color: #fff;
  background: rgba(255, 255, 255, .17);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .69rem;
  font-weight: 820;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-card__truck {
  width: 150px;
  margin-top: 12px;
  opacity: .92;
  stroke-width: 2;
}

.hero-card--main h2 {
  margin-bottom: 13px;
  font-size: 1.75rem;
}

.hero-card--main p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .95rem;
}

.hero-card--main a {
  color: var(--orange-dark);
  font-size: .9rem;
  font-weight: 800;
}

.hero-card--mini {
  /* Extra breathing room on the right, where the label ends.
     Every width below adds the same amount back, so the text keeps its space. */
  --mini-gutter: 8px;
  /* Grid, not flex: the icon spans both rows and the title/subtitle stack in
     column two. As flex siblings they sat side by side and overflowed the card. */
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: calc(205px + var(--mini-gutter));
  align-items: center;
  column-gap: 12px;
  padding: 15px calc(15px + var(--mini-gutter)) 15px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-radius: 17px;
}

.hero-card--mini .mini-icon {
  grid-row: 1 / span 2;
}

.hero-card--mini strong {
  grid-column: 2;
  align-self: end;
}

.hero-card--mini small {
  grid-column: 2;
  align-self: start;
}

.hero-card--mini-one {
  z-index: 2;
  top: 4px;
  left: -5px;
  transform: rotate(-4deg);
}

.hero-card--mini-two {
  z-index: 2;
  right: -18px;
  bottom: 13px;
  transform: rotate(4deg);
}

.mini-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 13px;
}

.mini-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.8;
}

.hero-card--mini strong,
.hero-card--mini small {
  display: block;
}

.hero-card--mini strong {
  font-size: .92rem;
}

.hero-card--mini small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .75rem;
}

.hero-card--stat {
  bottom: 3px;
  left: 15px;
  display: grid;
  width: 160px;
  padding: 18px;
  color: #fff;
  background: rgba(20, 50, 63, .86);
  border-radius: 18px;
  transform: rotate(-2deg);
}

.hero-card--stat__value {
  color: #ffb770;
  font-size: 1.35rem;
  font-weight: 850;
}

.hero-card--stat__label {
  margin-top: 3px;
  color: rgba(255, 255, 255, .7);
  font-size: .73rem;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .26;
}

.hero__glow--one {
  top: 12%;
  right: 3%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--orange), transparent 68%);
}

.hero__glow--two {
  bottom: 0;
  left: 35%;
  width: 360px;
  height: 220px;
  background: radial-gradient(circle, #3a7189, transparent 70%);
}

.hero__bottom {
  position: absolute;
  z-index: 1;
  right: -4%;
  bottom: -60px;
  left: -4%;
  height: 105px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -25px;
}

.quick-strip__grid {
  display: grid;
  background: #fff;
  border: 1px solid rgba(18, 36, 47, .08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.quick-strip__grid a {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  font-weight: 760;
  transition: color .2s ease, background .2s ease;
}

.quick-strip__grid a:last-child {
  border-right: 0;
}

.quick-strip__grid a:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.quick-strip__grid span {
  color: var(--orange-dark);
  font-size: .75rem;
  font-weight: 850;
}

/* Shared sections */
.section {
  padding-block: 110px;
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(239, 125, 43, .11), transparent 24%),
    linear-gradient(145deg, var(--dark), #1a3644);
}

.section--warm {
  background: var(--warm);
}

.section--process {
  color: #fff;
  background: var(--dark);
}

/* Soften the hard seam where a dark section meets a light one */
.section--dark,
.index-exact-page .index-transport,
.index-exact-page .index-terms,
.contact-section {
  position: relative;
  box-shadow:
    inset 0 70px 50px -50px rgba(0, 0, 0, .22),
    inset 0 -70px 50px -50px rgba(0, 0, 0, .22);
}

.site-footer {
  box-shadow: inset 0 70px 50px -50px rgba(0, 0, 0, .22);
}

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

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
}

.section-heading--split h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading--center {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--on-dark > p,
.section-heading--on-dark p {
  color: var(--white-muted);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 365px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 105px;
  height: 105px;
  background: var(--orange-soft);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(239, 125, 43, .35);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 23px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 16px;
}

.service-card__icon svg {
  width: 31px;
  height: 31px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
}

.service-card > p {
  position: relative;
  z-index: 1;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: .94rem;
}

.mini-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  color: var(--ink-2);
  font-size: .84rem;
  font-weight: 630;
}

.mini-list li {
  position: relative;
  padding-left: 17px;
}

.mini-list li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.need-box {
  display: grid;
  align-items: center;
  margin-top: 26px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(239, 125, 43, .22), transparent 26%),
    var(--dark);
  border-radius: var(--radius-lg);
  grid-template-columns: 1.1fr 1fr auto;
  gap: 35px;
  box-shadow: var(--shadow);
}

.need-box__intro {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.need-box__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--dark);
  background: #ffb770;
  border-radius: 15px;
  font-size: 1.55rem;
  font-weight: 900;
}

.need-box h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.need-box p {
  margin-bottom: 0;
  color: var(--white-muted);
  font-size: .9rem;
}

.need-box__checks {
  display: grid;
  gap: 8px;
  font-size: .82rem;
  font-weight: 650;
}

.need-box__checks span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.need-box__checks .icon {
  width: 17px;
  height: 17px;
  color: #ffb770;
  stroke-width: 2.6;
}

/* Transport */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vehicle-card {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 23px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.vehicle-card__visual {
  display: grid;
  min-height: 235px;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, .18), transparent 24%),
    linear-gradient(145deg, #ef8c47, #cf5f14);
  overflow: hidden;
}

.vehicle-card--accent .vehicle-card__visual {
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, .14), transparent 24%),
    linear-gradient(145deg, #355e6f, #17313e);
}

.vehicle-card__visual svg {
  width: 78%;
  max-height: 170px;
  opacity: .96;
  stroke-width: 3;
}

.vehicle-card__body {
  padding: 30px;
}

.vehicle-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 22px;
}

.vehicle-card__type {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vehicle-card h3 {
  margin-bottom: 0;
  font-size: 1.75rem;
}

.vehicle-card__badge {
  display: grid;
  min-width: 70px;
  min-height: 50px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 13px;
  font-weight: 850;
}

.spec-list {
  display: grid;
  margin-bottom: 20px;
}

.spec-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: .84rem;
}

.spec-list dd {
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
  text-align: right;
}

.vehicle-card__body > p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: .91rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--orange-dark);
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 820;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dumper-card {
  display: grid;
  align-items: center;
  margin-top: 24px;
  padding: 27px;
  color: var(--ink);
  background: #fff;
  border-radius: 22px;
  grid-template-columns: 170px 1fr auto auto;
  gap: 28px;
}

.dumper-card__visual {
  display: grid;
  min-height: 140px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 17px;
}

.dumper-card__visual svg {
  width: 130px;
  stroke-width: 2.4;
}

.dumper-card__content .eyebrow {
  margin-bottom: 8px;
  color: var(--orange-dark);
}

.dumper-card__content h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.dumper-card__content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.dumper-card__stats {
  display: flex;
  gap: 24px;
}

.dumper-card__stats > div {
  display: grid;
  min-width: 100px;
}

.dumper-card__stats strong {
  color: var(--orange-dark);
  font-size: 1.2rem;
}

.dumper-card__stats span {
  color: var(--muted);
  font-size: .78rem;
}

.transport-usecases {
  margin-top: 65px;
}

.transport-usecases h3 {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .92);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.transport-usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
  overflow: hidden;
}

.transport-usecases__grid span {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 14px;
  padding: 23px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  font-weight: 650;
}

.transport-usecases__grid .icon {
  width: 28px;
  height: 28px;
  color: #ffb770;
}

/* Moving */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 450px;
  flex-direction: column;
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.price-card--featured {
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(239, 125, 43, .28), transparent 25%),
    var(--dark);
  border-color: var(--dark);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price-card__label {
  position: absolute;
  top: -13px;
  right: 25px;
  padding: 7px 12px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(207, 95, 20, .25);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card__kicker {
  margin-bottom: 9px;
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card--featured .price-card__kicker {
  color: #ffb770;
}

.price-card h3 {
  min-height: 58px;
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.price-card > p {
  min-height: 72px;
  color: var(--muted);
  font-size: .9rem;
}

.price-card--featured > p {
  color: var(--white-muted);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card--featured .price-card__price {
  border-color: rgba(255, 255, 255, .13);
}

.price-card__price strong {
  color: var(--orange-dark);
  font-size: 2.15rem;
}

.price-card--featured .price-card__price strong {
  color: #ffb770;
}

.price-card__price span {
  color: var(--muted);
  font-weight: 650;
}

.price-card--featured .price-card__price span {
  color: var(--white-muted);
}

.price-card ul {
  display: grid;
  flex: 1;
  gap: 9px;
  padding: 22px 0 0;
  margin-bottom: 27px;
  list-style: none;
  color: var(--ink-2);
  font-size: .86rem;
}

.price-card--featured ul {
  color: rgba(255, 255, 255, .78);
}

.price-card li {
  position: relative;
  padding-left: 20px;
}

.price-card li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.moving-terms {
  display: grid;
  margin-top: 35px;
  padding: 26px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.moving-terms > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-inline: 23px;
  border-right: 1px solid var(--line);
}

.moving-terms > div:first-child {
  padding-left: 0;
}

.moving-terms > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.moving-terms .icon {
  width: 27px;
  height: 27px;
  color: var(--orange-dark);
}

.moving-terms p {
  display: grid;
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.moving-terms strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: .93rem;
}

/* Firewood */
.firewood-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
}

.firewood-intro {
  position: sticky;
  top: 130px;
}

.firewood-intro > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.03rem;
}

.wood-types {
  display: grid;
  gap: 13px;
  margin-bottom: 26px;
}

.wood-types > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(20, 35, 44, .08);
  border-radius: 13px;
}

.wood-types p {
  display: grid;
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.wood-types strong {
  color: var(--ink);
}

.wood-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .3);
}

.wood-dot--hard {
  background: #6f4329;
}

.wood-dot--soft {
  background: #bb8553;
}

.firewood-capacity {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 27px;
  padding: 19px;
  color: #fff;
  background: var(--green);
  border-radius: 16px;
}

.firewood-capacity svg {
  width: 100px;
  flex: 0 0 auto;
  color: #ffd6a8;
  stroke-width: 2;
}

.firewood-capacity p {
  display: grid;
  margin: 0;
}

.firewood-capacity strong {
  margin-bottom: 4px;
  font-size: .95rem;
}

.firewood-capacity span {
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
}

.firewood-prices {
  display: grid;
  gap: 20px;
}

.wood-price-card {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(20, 35, 44, .09);
  border-radius: 21px;
  box-shadow: 0 15px 45px rgba(75, 55, 32, .08);
  overflow: hidden;
}

.wood-price-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 27px 20px;
}

.wood-price-card__header span:first-child {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-dark);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wood-price-card h3 {
  margin-bottom: 0;
  font-size: 1.36rem;
}

.wood-price-card__icon {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  background: #d3a071;
  border: 7px solid #ebc69f;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(75, 43, 25, .18);
}

.wood-price-card__icon::before,
.wood-price-card__icon::after {
  position: absolute;
  background: rgba(75, 43, 25, .3);
  content: "";
}

.wood-price-card__icon::before {
  top: 7px;
  bottom: 7px;
  left: 50%;
  width: 2px;
  transform: rotate(34deg);
}

.wood-price-card__icon::after {
  top: 50%;
  right: 7px;
  left: 7px;
  height: 2px;
  transform: rotate(-18deg);
}

.wood-price-card__icon--hard {
  background: #89583a;
  border-color: #b6815d;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.wood-price-card table th,
.wood-price-card table td {
  padding: 14px 27px;
  border-top: 1px solid rgba(20, 35, 44, .08);
  font-size: .86rem;
  text-align: left;
  white-space: nowrap;
}

.wood-price-card table th {
  color: var(--muted);
  background: rgba(20, 35, 44, .025);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wood-price-card table td:last-child {
  color: var(--orange-dark);
  font-weight: 820;
}

.unit-note {
  display: flex;
  gap: 28px;
  padding: 18px 21px;
  color: var(--muted);
  background: rgba(255, 255, 255, .5);
  border: 1px dashed rgba(20, 35, 44, .18);
  border-radius: 14px;
  font-size: .78rem;
}

.unit-note p {
  margin: 0;
}

.unit-note strong {
  color: var(--ink);
}

/* Rates and calculator */
.rate-grid {
  display: grid;
  max-width: 850px;
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rate-card {
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.rate-card--dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.rate-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rate-card__icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 15px;
}

.rate-card__icon svg {
  width: 29px;
  height: 29px;
}

.rate-card__header span:not(.rate-card__icon) {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rate-card--dark .rate-card__header span:not(.rate-card__icon) {
  color: var(--white-muted);
}

.rate-card h3 {
  margin: 3px 0 0;
  font-size: 1.55rem;
}

.rate-list {
  display: grid;
}

.rate-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 13px;
  border-top: 1px solid var(--line);
}

.rate-card--dark .rate-list > div {
  border-color: rgba(255, 255, 255, .12);
}

.rate-list span {
  color: var(--muted);
  font-size: .9rem;
}

.rate-card--dark .rate-list span {
  color: var(--white-muted);
}

.rate-list strong {
  color: var(--orange-dark);
  font-size: 1.07rem;
}

.rate-card--dark .rate-list strong {
  color: #ffb770;
}

.price-details-grid {
  display: grid;
  margin-top: 25px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card {
  position: relative;
  padding: 27px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.detail-card__number {
  position: absolute;
  top: 15px;
  right: 18px;
  color: rgba(239, 125, 43, .16);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
}

.detail-card h3 {
  position: relative;
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.detail-card > p {
  position: relative;
  min-height: 68px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .84rem;
}

.detail-card dl {
  position: relative;
  display: grid;
  margin-bottom: 0;
}

.detail-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  padding-block: 8px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
}

.detail-card dt {
  color: var(--muted);
}

.detail-card dd {
  margin: 0;
  font-weight: 790;
  text-align: right;
}

.calculator {
  display: grid;
  align-items: center;
  margin-top: 35px;
  padding: clamp(30px, 5vw, 55px);
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 125, 43, .18), transparent 28%),
    var(--dark);
  border-radius: 27px;
  grid-template-columns: .78fr 1.22fr;
  gap: 65px;
  box-shadow: var(--shadow);
}

.calculator__intro h3 {
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.calculator__intro > p {
  color: var(--white-muted);
}

.calculator__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 25px;
  padding: 14px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  font-size: .78rem;
}

.calculator__note .icon {
  color: #ffb770;
}

.calculator__form {
  padding: 27px;
  color: var(--ink);
  background: #fff;
  border-radius: 20px;
}

.form-row {
  display: grid;
  gap: 15px;
}

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

.calculator__form label,
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input,
select {
  min-height: 48px;
  padding: 10px 13px;
}

textarea {
  min-height: 135px;
  padding: 13px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #98a3a9;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(239, 125, 43, .12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #bc3b2f;
  box-shadow: 0 0 0 4px rgba(188, 59, 47, .1);
}

.calculator__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 5px;
  padding: 18px;
  background: var(--paper-soft);
  border-radius: 14px;
}

.calculator__result > div {
  display: grid;
}

.calculator__result span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.calculator__result strong {
  margin-top: 2px;
  color: var(--orange-dark);
  font-size: 1.75rem;
}

.calculator__breakdown {
  margin-top: 11px;
  color: var(--muted);
  font-size: .76rem;
  text-align: center;
}

.tax-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 900px;
  margin: 25px auto 0;
  padding: 18px 22px;
  color: #5b410b;
  background: #fff1c9;
  border: 1px solid #edd69a;
  border-radius: 14px;
}

.tax-note .icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.tax-note div {
  display: grid;
}

.tax-note strong {
  font-size: .93rem;
}

.tax-note span {
  margin-top: 3px;
  font-size: .8rem;
}

/* Process */
.process-grid {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 22px;
}

.process-grid::before {
  position: absolute;
  top: 29px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2) 10%, rgba(255, 255, 255, .2) 90%, transparent);
  content: "";
}

.process-grid li {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.process-grid__number {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--dark);
  background: #ffb770;
  border: 8px solid var(--dark);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .15);
  font-weight: 880;
}

.process-grid h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--white-muted);
  font-size: .84rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .75fr 1.25fr;
  gap: 75px;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro p {
  margin-bottom: 25px;
  color: var(--muted);
}

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

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

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 760;
  text-align: left;
}

.accordion__item button span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background: var(--orange-soft);
  border-radius: 50%;
}

.accordion__item button span::before,
.accordion__item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--orange-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.accordion__item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__panel {
  padding: 0 55px 23px 0;
  color: var(--muted);
  font-size: .93rem;
}

.accordion__panel p {
  margin: 0;
}

/* Contact */
.contact-section {
  position: relative;
  padding-block: 110px;
  color: #fff;
  background: linear-gradient(135deg, #152e3a, #0f222c);
  overflow: hidden;
}

.contact-section__pattern {
  position: absolute;
  inset: 0;
  opacity: .13;
  background:
    radial-gradient(circle at 10% 20%, var(--orange) 0 2px, transparent 3px) 0 0 / 38px 38px,
    radial-gradient(circle at 90% 80%, #fff 0 1px, transparent 2px) 0 0 / 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: .8fr 1.2fr;
  gap: 75px;
}

.contact-info h2 {
  max-width: 550px;
}

.contact-info > p {
  max-width: 560px;
  color: var(--white-muted);
  font-size: 1.02rem;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin-block: 30px;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list__icon {
  display: grid;
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  place-items: center;
  color: #ffb770;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 14px;
}

.contact-list__icon svg {
  width: 24px;
  height: 24px;
}

.contact-list > * > span:last-child {
  display: grid;
}

.contact-list small {
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 2px;
  font-size: 1rem;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  font-weight: 650;
}

.contact-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-trust .icon {
  width: 16px;
  height: 16px;
  color: #ffb770;
  stroke-width: 2.8;
}

.contact-form {
  padding: clamp(27px, 4vw, 42px);
  color: var(--ink);
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.contact-form__header {
  margin-bottom: 25px;
}

.contact-form__header span {
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-form__header h3 {
  margin: 5px 0 0;
  font-size: 1.8rem;
}

.contact-form label > span[aria-hidden="true"] {
  color: #bd3b30;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: 20px 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: .75rem !important;
  font-weight: 500 !important;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--orange-dark);
}

.checkbox-label a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: .82rem;
  font-weight: 650;
  text-align: center;
}

.form-status.is-success {
  color: #28704a;
}

.form-status.is-error {
  color: #b0362e;
}

.contact-form__fineprint {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, .74);
  background: #091820;
}

.footer-main {
  display: grid;
  padding-block: 65px 48px;
  grid-template-columns: 1.5fr .8fr .8fr .8fr;
  gap: 50px;
}

.brand--footer .brand__text strong {
  color: #fff;
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, .55);
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  font-size: .84rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-contact small {
  font-size: .8rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffb770;
}

.footer-contact small {
  margin-top: 8px;
  color: #ffb770;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-identity:empty {
  display: none;
}

.mobile-call {
  position: fixed;
  z-index: 900;
  right: 17px;
  bottom: 17px;
  display: none;
  min-height: 53px;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(207, 95, 20, .38);
  font-weight: 800;
}

.mobile-call svg {
  width: 23px;
  height: 23px;
}

.noscript-message {
  position: fixed;
  z-index: 10000;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 13px;
  color: #fff;
  background: #9a312a;
  border-radius: 10px;
  text-align: center;
}

/* Privacy page */
.legal-page {
  min-height: 100vh;
  background: var(--paper-soft);
}

.legal-hero {
  padding-block: 80px;
  color: #fff;
  background: var(--dark);
}

.legal-content {
  max-width: 850px;
  margin: -35px auto 80px;
  padding: 45px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 35px;
  font-size: 1.45rem;
}

.legal-content h3 {
  margin-top: 25px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-placeholder {
  padding: 17px;
  color: #5b410b;
  background: #fff1c9;
  border: 1px solid #edd69a;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed;
    z-index: 1002;
    top: var(--mobile-nav-top, calc(34px + var(--header-height)));
    right: 0;
    bottom: 0;
    display: grid;
    width: min(390px, 88vw);
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 25px;
    margin: 0;
    background: #fff;
    box-shadow: -20px 30px 60px rgba(18, 36, 47, .18);
    transform: translateX(105%);
    transition: transform .25s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 16px 7px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 3;
    margin-left: auto;
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle + .main-nav {
    order: 4;
  }

  .hero__grid {
    grid-template-columns: 1fr 430px;
    gap: 40px;
  }

  .hero-card--mini-one {
    left: -10px;
  }

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

  .need-box {
    grid-template-columns: 1fr 1fr;
  }

  .need-box > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .dumper-card {
    grid-template-columns: 150px 1fr auto;
  }

  .dumper-card > .button {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .firewood-layout {
    gap: 45px;
  }

  .calculator {
    gap: 40px;
  }

  .contact-layout {
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, .8fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 85px;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 70px 110px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 590px);
    min-height: 475px;
    margin-inline: auto;
  }

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

  .quick-strip__grid a:nth-child(2) {
    border-right: 0;
  }

  .quick-strip__grid a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .transport-grid,
  .pricing-cards,
  .price-details-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .price-card h3,
  .price-card > p {
    min-height: 0;
  }

  .price-card--featured {
    transform: none;
  }

  .moving-terms {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .moving-terms > div,
  .moving-terms > div:first-child,
  .moving-terms > div:last-child {
    padding: 0 0 17px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .moving-terms > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .firewood-layout {
    grid-template-columns: 1fr;
  }

  .firewood-intro,
  .faq-intro {
    position: static;
  }

  .firewood-intro {
    max-width: 680px;
  }

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

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .process-grid::before {
    display: none;
  }

  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 45px;
  }

  .contact-info {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .preview-notice__inner {
    display: grid;
    gap: 0;
    padding-block: 7px;
    line-height: 1.3;
  }

  .preview-notice code {
    display: none;
  }

  .topbar__item--desktop {
    display: none;
  }

  .topbar__inner {
    justify-content: space-between;
    gap: 10px;
  }

  .topbar__contact {
    margin-left: 0;
  }

  .nav-wrap {
    gap: 9px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .brand__mark svg {
    width: 31px;
    height: 31px;
  }

  .brand__text strong {
    font-size: .91rem;
  }

  .brand__text small {
    font-size: .64rem;
  }

  .header-cta {
    display: none;
  }

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

  .main-nav {
    top: var(--mobile-nav-top, calc(34px + var(--header-height)));
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .hero__grid {
    padding-block: 55px 105px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__benefits {
    display: grid;
  }

  .hero__visual {
    min-height: 445px;
  }

  .hero-card--main {
    top: 45px;
    right: 0;
    left: 0;
    width: auto;
    padding: 22px 22px 80px;
  }

  .hero-card__top {
    min-height: 105px;
  }

  .hero-card__truck {
    width: 120px;
  }

  .hero-card--main h2 {
    font-size: 1.48rem;
  }

  .hero-card--mini {
    width: calc(185px + var(--mini-gutter));
  }

  .hero-card--mini-one {
    top: 3px;
    left: -3px;
  }

  .hero-card--mini-two {
    right: -2px;
    bottom: 0;
  }

  .hero-card--stat {
    bottom: 0;
    left: 0;
    width: 145px;
  }

  .quick-strip__grid {
    grid-template-columns: 1fr;
  }

  .quick-strip__grid a,
  .quick-strip__grid a:nth-child(2),
  .quick-strip__grid a:nth-child(-n+2) {
    min-height: 65px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip__grid a:last-child {
    border-bottom: 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .need-box {
    padding: 25px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .need-box__intro {
    display: grid;
  }

  .need-box > .button {
    grid-column: auto;
    width: 100%;
  }

  .vehicle-card__visual {
    min-height: 190px;
  }

  .vehicle-card__body {
    padding: 24px;
  }

  .dumper-card {
    grid-template-columns: 1fr;
  }

  .dumper-card__visual {
    min-height: 125px;
  }

  .dumper-card__stats {
    justify-content: flex-start;
  }

  .dumper-card > .button {
    grid-column: auto;
    width: 100%;
  }

  .transport-usecases__grid {
    grid-template-columns: 1fr;
  }

  .transport-usecases__grid span {
    min-height: 85px;
  }

  .pricing-cards {
    gap: 24px;
  }

  .price-card {
    padding: 26px;
  }

  .unit-note {
    display: grid;
    gap: 8px;
  }

  .wood-price-card table th,
  .wood-price-card table td {
    padding-inline: 18px;
  }

  .price-details-grid {
    gap: 13px;
  }

  .calculator {
    padding: 25px;
    border-radius: 20px;
  }

  .calculator__form {
    padding: 20px;
  }

  .form-row--two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .calculator__result {
    display: grid;
  }

  .calculator__result .button {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-grid li {
    padding: 0 10px;
  }

  .contact-section {
    padding-block: 85px;
  }

  .contact-form {
    padding: 24px;
    border-radius: 19px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
    padding-block: 18px 85px;
  }

  .mobile-call {
    display: inline-flex;
  }

  .legal-content {
    padding: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 420px) {
  .brand__text small {
    display: none;
  }

  .hero-card--mini {
    width: calc(165px + var(--mini-gutter));
    padding: 12px calc(12px + var(--mini-gutter)) 12px 12px;
  }

  .mini-icon {
    width: 41px;
    height: 41px;
  }

  .hero-card--stat {
    width: 135px;
    padding: 14px;
  }

  .spec-list > div {
    align-items: flex-start;
  }

  .dumper-card__stats {
    display: grid;
  }

  .firewood-capacity {
    align-items: flex-start;
  }

  .firewood-capacity svg {
    width: 75px;
  }
}

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


/* --- Fotografie realizací --- */
.card-photo,
.price-card__media,
.wood-price-card__media,
.vehicle-card__photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.65);
}
.card-photo img,
.price-card__media img,
.wood-price-card__media img,
.vehicle-card__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.index-exact-page .index-service-card:hover .card-photo img,
.price-card:hover .price-card__media img,
.wood-price-card:hover .wood-price-card__media img,
.vehicle-card:hover .vehicle-card__photo img {
  transform: scale(1.06);
}
.service-card .service-card__icon {
  margin-top: 0.25rem;
}
.vehicle-card__visual {
  display: none;
}
.vehicle-card__photo {
  margin: 1rem 1rem 0;
  border-radius: 20px;
}
.price-card__media {
  border-radius: 16px;
}
.wood-price-card__media {
  border-radius: 18px 18px 12px 12px;
  margin-bottom: 1.25rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(19,36,47,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(19,36,47,0.14);
}
.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item__caption {
  display: block;
  padding: 0.75rem 0.95rem 0.95rem;
  font-size: 0.92rem;
  color: #54616a;
}
.gallery-note {
  margin-top: 1.1rem;
  color: #54616a;
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gallery-item__caption {
    padding: 0.65rem 0.75rem 0.8rem;
    font-size: 0.84rem;
  }
}


/* Upravený úvod stránky autodopravy */
.transport-usecases--intro {
  margin-top: 0;
  margin-bottom: 65px;
}
.transport-usecases--intro strong {
  color: #fff;
}


/* Přesné oddělení čtyř samostatných stránek */
.section--soft {
  background: linear-gradient(180deg, #f7f8f7 0%, #ffffff 100%);
}
.need-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.need-panel {
  padding: clamp(28px, 4vw, 50px);
  background: #fff;
  border: 1px solid rgba(19, 36, 47, .09);
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(19, 36, 47, .08);
}
.need-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(19, 36, 47, .10);
}
.need-panel__head h2 {
  margin: 6px 0 0;
}
.need-panel__head p {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--muted);
}
.need-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.need-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  color: #334650;
  line-height: 1.55;
}
.need-list .icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--orange);
  stroke-width: 2.7;
}
.transport-summary {
  max-width: 880px;
  margin: -18px auto 44px;
  padding: 22px 28px;
  color: var(--white-muted);
  text-align: center;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
}
.transport-summary p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.7;
}
#doprava .section-heading--center {
  margin-bottom: 36px;
}
#doprava .section-heading--center h2 {
  color: #fff;
}
#doprava .section-heading--center > p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}
#sluzby .service-card > p {
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .need-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .need-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* === INDEX: přesně dodaný obsah === */
.index-exact-page .index-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0 clamp(76px, 8vw, 116px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(239,125,43,.22), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(245,181,62,.10), transparent 27%),
    linear-gradient(135deg, #10232e 0%, #16303d 62%, #10242f 100%);
}
.index-exact-page .index-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -48% 44%;
  height: 500px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}
.index-exact-page .index-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}
.index-exact-page .index-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.1vw, 6rem);
}
.index-exact-page .index-hero h1 span {
  display: block;
  color: #ffb16f;
}
.index-exact-page .index-hero h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #ffd0a8;
  font-size: clamp(.82rem, 1.25vw, 1rem);
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.5;
}
.index-exact-page .index-hero__lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.80);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}
.index-exact-page .index-announcement {
  max-width: 750px;
  margin-bottom: 30px;
  padding: 24px 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.index-exact-page .index-announcement strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: .93rem;
  letter-spacing: .035em;
}
.index-exact-page .index-announcement p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.index-exact-page .index-announcement p:last-child {
  margin-bottom: 0;
}
.index-exact-page .index-announcement a {
  color: #ffb16f;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.index-exact-page .index-contact-button {
  min-width: 218px;
  min-height: 54px;
}
.index-exact-page .index-hero__media {
  position: relative;
  min-height: 590px;
}
.index-exact-page .index-hero__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 9px solid rgba(255,255,255,.96);
  border-radius: 30px;
  box-shadow: 0 35px 85px rgba(0,0,0,.30);
}
.index-exact-page .index-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-exact-page .index-hero__photo--main {
  inset: 0 0 76px 28px;
  transform: rotate(2.2deg);
}
.index-exact-page .index-hero__photo--secondary {
  z-index: 2;
  right: 57%;
  bottom: 0;
  width: 48%;
  height: 240px;
  transform: rotate(-3.5deg);
}
.index-exact-page .index-section-heading {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.index-exact-page .index-section-heading h2 {
  margin: 0;
}
.index-exact-page .index-needs {
  padding-top: clamp(72px, 8vw, 108px);
  padding-bottom: clamp(72px, 8vw, 108px);
}
.index-exact-page .index-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.index-exact-page .index-checklist li {
  position: relative;
  min-height: 48px;
  padding: 11px 16px 11px 45px;
  color: #31444e;
  background: #fff;
  border: 1px solid rgba(19,36,47,.08);
  border-radius: 13px;
  box-shadow: 0 8px 23px rgba(18,36,47,.045);
}
.index-exact-page .index-checklist li::before {
  content: "✓";
  position: absolute;
  top: 11px;
  left: 16px;
  color: var(--orange-dark);
  font-weight: 900;
}
.index-exact-page .index-checklist__important {
  color: var(--ink) !important;
  background: var(--orange-soft) !important;
  border-color: rgba(239,125,43,.22) !important;
}
.index-exact-page .index-checklist__important--full {
  grid-column: 1 / -1;
}
.index-exact-page .index-services {
  padding-top: clamp(78px, 9vw, 122px);
  padding-bottom: clamp(78px, 9vw, 122px);
}
.index-exact-page .index-service-grid {
  align-items: stretch;
}
.index-exact-page .index-service-card {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 26px;
}
.index-exact-page .index-service-card::after {
  display: none;
}
.index-exact-page .index-service-card .card-photo {
  margin: 0 0 22px;
  border-radius: 16px;
}
.index-exact-page .index-service-card .card-photo img {
  aspect-ratio: 16 / 10;
}
.index-exact-page .index-service-card h3 {
  margin-right: 4px;
  margin-left: 4px;
}
.index-exact-page .index-service-card > p {
  margin: 0 4px;
  color: var(--muted);
}
.index-exact-page .index-transport {
  padding-top: clamp(78px, 9vw, 122px);
  padding-bottom: clamp(78px, 9vw, 122px);
}
.index-exact-page .index-section-heading--dark {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: 46px;
}
.index-exact-page .index-section-heading--dark h2 {
  color: #fff;
}
.index-exact-page .index-transport-intro {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}
.index-exact-page .index-transport-intro p:last-child {
  margin-bottom: 0;
}
.index-exact-page .index-vehicle-grid {
  margin-top: 48px;
}
.index-exact-page .index-vehicle-card {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
}
.index-exact-page .index-vehicle-card .vehicle-card__photo {
  margin: 0;
  border-radius: 0;
}
.index-exact-page .index-vehicle-card .vehicle-card__photo img {
  aspect-ratio: 16 / 9;
}
.index-exact-page .index-vehicle-card .vehicle-card__body {
  padding: 28px 30px 31px;
}
.index-exact-page .index-vehicle-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
}
.index-exact-page .index-vehicle-card p {
  margin: 0;
  color: #40515a;
  line-height: 1.8;
}
.index-exact-page .index-pricing {
  padding-top: clamp(78px, 9vw, 122px);
  padding-bottom: clamp(78px, 9vw, 122px);
}
.index-exact-page .index-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.index-exact-page .index-price-card {
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid rgba(19,36,47,.10);
  border-radius: 25px;
  box-shadow: var(--shadow-sm);
}
.index-exact-page .index-price-card--accent {
  border-top: 5px solid var(--orange);
  box-shadow: var(--shadow);
}
.index-exact-page .index-price-card h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}
.index-exact-page .index-price-card dl {
  margin: 28px 0;
}
.index-exact-page .index-price-card dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.index-exact-page .index-price-card dt {
  color: var(--muted);
}
.index-exact-page .index-price-card dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 850;
}
.index-exact-page .index-price-card p:last-child {
  margin-bottom: 0;
}
.index-exact-page .index-extras {
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
}
.index-exact-page .index-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.index-exact-page .index-extra-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  background: #fff;
  border: 1px solid rgba(19,36,47,.09);
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(18,36,47,.08);
}
.index-exact-page .index-extra-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.index-exact-page .index-extra-card h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}
.index-exact-page .index-extra-card__price {
  margin-bottom: 0;
  color: var(--orange-dark);
  font-size: 1.18rem;
}
.index-exact-page .index-terms {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(135deg, #132a36, #0f2029);
}
.index-exact-page .index-terms__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(170px, .55fr) minmax(240px, .75fr);
  align-items: center;
  gap: 34px;
}
.index-exact-page .index-terms p {
  margin: 0;
  color: rgba(255,255,255,.77);
}
.index-exact-page .index-terms strong {
  color: #fff;
}
.index-exact-page .index-footer-main {
  grid-template-columns: 1fr 1.35fr .9fr;
}
.index-exact-page .index-footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}
.index-exact-page .index-footer-nav a {
  color: rgba(255,255,255,.68);
}
.index-exact-page .index-footer-nav a:hover {
  color: #fff;
}
.index-exact-page .footer-bottom a {
  color: rgba(255,255,255,.65);
}

@media (max-width: 980px) {
  .index-exact-page .index-hero__grid {
    grid-template-columns: 1fr;
  }
  .index-exact-page .index-hero__media {
    min-height: 470px;
    width: min(100%, 720px);
  }
  .index-exact-page .index-hero__photo--main {
    inset: 0 6% 55px 10%;
  }
  .index-exact-page .index-hero__photo--secondary {
    right: auto;
    left: 0;
    width: 42%;
    height: 190px;
  }
  .index-exact-page .index-section-heading--dark,
  .index-exact-page .index-terms__inner {
    grid-template-columns: 1fr;
  }
  .index-exact-page .index-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .index-exact-page .index-hero {
    padding-top: 58px;
  }
  .index-exact-page .index-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }
  .index-exact-page .index-hero__media {
    min-height: 360px;
  }
  .index-exact-page .index-hero__photo {
    border-width: 6px;
    border-radius: 22px;
  }
  .index-exact-page .index-hero__photo--main {
    inset: 0 0 42px 7%;
  }
  .index-exact-page .index-hero__photo--secondary {
    width: 48%;
    height: 145px;
  }
  .index-exact-page .index-checklist,
  .index-exact-page .index-price-grid,
  .index-exact-page .index-extra-grid {
    grid-template-columns: 1fr;
  }
  .index-exact-page .index-section-heading--dark {
    gap: 14px;
  }
  .index-exact-page .index-vehicle-card .vehicle-card__body {
    padding: 24px 22px 27px;
  }
  .index-exact-page .index-footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .index-exact-page .index-announcement {
    padding: 20px;
  }
  .index-exact-page .index-contact-button {
    width: 100%;
  }
  .index-exact-page .index-hero__media {
    min-height: 300px;
  }
  .index-exact-page .index-hero__photo--main {
    inset: 0 0 35px 4%;
  }
  .index-exact-page .index-hero__photo--secondary {
    width: 51%;
    height: 118px;
  }
  .index-exact-page .index-checklist li {
    padding-right: 13px;
  }
}


/* Reálné fotografie v hlavních vizuálech */
.hero-card__top--photo {
  position: relative;
  display: block;
  min-height: 184px;
  padding: 0;
  overflow: hidden;
  background: #233844;
  isolation: isolate;
}

.hero-card__top--photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 24, 32, .34), transparent 58%);
  content: "";
  pointer-events: none;
}

.hero-card__top--photo .hero-card__label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(19, 36, 47, .76);
  border-color: rgba(255, 255, 255, .38);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  backdrop-filter: blur(7px);
}

.hero-card__photo-real {
  display: block;
  width: 100%;
  height: 184px;
  object-fit: cover;
  object-position: center;
}

.mini-icon--photo {
  overflow: hidden;
  padding: 0;
  background: #dde5e8;
}

.mini-icon--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.firewood-capacity__photo {
  display: block;
  width: 164px;
  height: 112px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, .22);
  border-radius: 13px;
  box-shadow: 0 10px 25px rgba(17, 45, 34, .22);
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  .hero-card__top--photo,
  .hero-card__photo-real {
    height: 158px;
    min-height: 158px;
  }

  .firewood-capacity {
    gap: 14px;
  }

  .firewood-capacity__photo {
    width: 132px;
    height: 98px;
  }
}

@media (max-width: 420px) {
  .firewood-capacity {
    display: grid;
  }

  .firewood-capacity__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}


/* Plovoucí malé karty na stránce autodopravy.
   Zachovávají původní překryvný vzhled. Spodní karty jsou zavěšené
   přes spodní hranu hlavní karty, ale už neleží přes nadpis ani popis. */
.hero--transport .hero__visual {
  position: relative;
  display: block;
  min-height: 0;
  padding: 48px 0 92px;
}

.hero--transport .hero-card--main {
  position: relative;
  inset: auto;
  width: min(100%, 450px);
  padding: 30px 30px 85px;
  margin-left: auto;
  transform: rotate(1.15deg);
}

.hero--transport .hero-card--mini,
.hero--transport .hero-card--stat {
  position: absolute;
  z-index: 4;
}

.hero--transport .hero-card--mini {
  width: calc(205px + var(--mini-gutter));
}

.hero--transport .hero-card--mini-one {
  top: 4px;
  left: -5px;
  transform: rotate(-4deg);
}

.hero--transport .hero-card--mini-two {
  right: -18px;
  bottom: 20px;
  transform: rotate(4deg);
}

.hero--transport .hero-card--stat {
  bottom: 20px;
  left: 15px;
  width: 160px;
  transform: rotate(-2deg);
}

@media (max-width: 1100px) {
  .hero--transport .hero__visual {
    padding-bottom: 96px;
  }

  .hero--transport .hero-card--main {
    width: min(100%, 430px);
  }

  .hero--transport .hero-card--mini-one {
    left: -10px;
  }

  .hero--transport .hero-card--mini-two {
    right: -8px;
  }
}

@media (max-width: 900px) {
  .hero--transport .hero-card--main {
    width: calc(100% - 10%);
    margin-inline: auto;
  }

  .hero--transport .hero-card--mini-one {
    left: 0;
  }

  .hero--transport .hero-card--mini-two {
    right: 0;
  }
}

@media (max-width: 700px) {
  .hero--transport .hero__visual {
    padding: 38px 0 94px;
  }

  .hero--transport .hero-card--main {
    width: 100%;
    padding: 22px 22px 80px;
  }

  .hero--transport .hero-card--mini {
    width: calc(185px + var(--mini-gutter));
  }

  .hero--transport .hero-card--mini-one {
    top: 2px;
    left: -3px;
  }

  .hero--transport .hero-card--mini-two {
    right: -2px;
    bottom: 15px;
  }

  .hero--transport .hero-card--stat {
    bottom: 15px;
    left: 0;
    width: 145px;
  }
}

@media (max-width: 420px) {
  .hero--transport .hero__visual {
    padding-bottom: 102px;
  }

  .hero--transport .hero-card--mini-two {
    right: -8px;
  }

  .hero--transport .hero-card--stat {
    left: -5px;
  }
}


/* Logo webu */
.brand__mark {
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Plovoucí karty s fotkami bez překrytí textu */
.hero--showcase .hero__visual {
  position: relative;
  display: block;
  min-height: 0;
  padding: 42px 0 92px;
}
.hero--showcase .hero-card--main {
  position: relative;
  inset: auto;
  width: min(100%, 455px);
  margin-left: auto;
  padding: 30px 30px 84px;
  transform: rotate(1.1deg);
}
.hero--showcase .hero-card--mini,
.hero--showcase .hero-card--stat {
  position: absolute;
  z-index: 4;
}
.hero--showcase .hero-card--mini {
  /* Same width as everywhere else: once the label sits under the title the card
     no longer needs the extra room the side-by-side layout used to take. */
  width: calc(205px + var(--mini-gutter));
}
.hero--showcase .hero-card--mini-one {
  top: 6px;
  left: -6px;
  transform: rotate(-4deg);
}
.hero--showcase .hero-card--mini-two {
  right: -8px;
  bottom: 18px;
  transform: rotate(4deg);
}
.hero--showcase .hero-card--stat {
  bottom: 8px;
  left: 8px;
  transform: rotate(-2deg);
}
.hero--gallery .hero-card--main {
  width: min(100%, 470px);
}
.hero--gallery .hero-card__top--photo,
.hero--gallery .hero-card__photo-real {
  min-height: 188px;
  height: 188px;
}
.hero--gallery .hero-card__label {
  background: rgba(244, 143, 48, 0.86);
  border-color: rgba(255,255,255,0.34);
}
@media (max-width: 980px) {
  .hero--showcase .hero__visual {
    padding: 26px 0 82px;
  }
}
@media (max-width: 640px) {
  .brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .hero--showcase .hero__visual {
    padding: 18px 0 76px;
  }
  .hero--showcase .hero-card--main {
    width: calc(100% - 18px);
    padding: 24px 24px 84px;
    margin-left: 10px;
  }
  .hero--showcase .hero-card--mini {
    width: min(calc(205px + var(--mini-gutter)), 70vw);
  }
  .hero--showcase .hero-card--mini-one {
    left: -2px;
    top: 0;
  }
  .hero--showcase .hero-card--mini-two {
    right: -2px;
    bottom: 8px;
  }
  .hero--showcase .hero-card--stat {
    left: 0;
    bottom: 0;
  }
}


/* === Finální úpravy: logo, úvod a nadpis autodopravy === */
.brand { gap: 10px; }
.brand__mark {
  display: block;
  width: 54px;
  height: 54px;
  overflow: visible;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(18,36,47,.14));
}
.brand__text strong { font-size: 1.06rem; }
.brand__text small { margin-top: 5px; }

.hero--transport .hero__grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(430px, .72fr);
  gap: clamp(34px, 4vw, 68px);
}
.hero--transport .hero__content { max-width: 790px; }
.hero--transport .transport-title {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 3.15vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.hero--transport .transport-title__line {
  display: block;
  color: #fff;
  white-space: nowrap;
}
.hero--transport .transport-title__line--accent { color: #ffb770; }
.hero--transport .hero__lead { max-width: 690px; }

@media (max-width: 1120px) {
  .brand__mark { width: 50px; height: 50px; }
  .hero--transport .hero__grid {
    grid-template-columns: minmax(0,1fr) 430px;
    gap: 34px;
  }
  .hero--transport .transport-title {
    font-size: clamp(2.45rem, 4.2vw, 3.35rem);
  }
}
@media (max-width: 900px) {
  .hero--transport .hero__grid { grid-template-columns: 1fr; }
  .hero--transport .transport-title {
    max-width: 760px;
    font-size: clamp(2.6rem, 7vw, 4rem);
  }
}
@media (max-width: 700px) {
  .brand__mark { width: 44px; height: 44px; }
  .brand__text strong { font-size: .96rem; }
  .brand__text small { font-size: .66rem; }
  .hero--transport .transport-title {
    font-size: clamp(2.2rem, 10vw, 3.05rem);
  }
  .hero--transport .transport-title__line { white-space: normal; }
}


/* Logo v patičce */
.brand--footer .brand__mark {
  width: 64px;
  height: 64px;
  padding: 7px;
  overflow: hidden;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}
.brand--footer .brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 640px) {
  .brand--footer .brand__mark {
    width: 56px;
    height: 56px;
    padding: 6px;
    border-radius: 15px;
  }
}


/* Skutečné logo také v patičce */
.brand--footer .brand__mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}
.brand--footer .brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  filter: none;
}
@media (max-width: 640px) {
  .brand--footer .brand__mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}


/* Kontaktní sekce bez formuláře */
.contact-layout--without-form {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 0;
}
.contact-layout--without-form .contact-info {
  width: 100%;
}
.contact-layout--without-form .contact-info h2,
.contact-layout--without-form .contact-info > p {
  max-width: 760px;
}
@media (max-width: 760px) {
  .contact-layout--without-form {
    grid-template-columns: 1fr;
  }
}


/* Kontaktní formulář je schovaný, kontaktní údaje zůstávají viditelné. */
.contact-form--hidden,
.contact-form[hidden] {
  display: none !important;
}
.contact-section--form-hidden .contact-layout {
  grid-template-columns: 1fr;
  gap: 0;
}
.contact-section--form-hidden .contact-info {
  width: min(100%, 760px);
  max-width: 760px;
}


/* Skrytý kontaktní formulář */
.contact-form[data-form-hidden="true"] {
  display: none !important;
}
.contact-layout--no-form {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.contact-layout--no-form .contact-info {
  width: 100%;
}
.contact-layout--no-form .contact-info h2,
.contact-layout--no-form .contact-info > p {
  max-width: 700px;
}

/* --- Lightbox pro galerii realizací --- */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  align-items: center;
  justify-content: center;
  background: rgba(9, 15, 19, .93);
  padding: 40px;
}
.lightbox:not([hidden]) {
  display: flex;
  animation: lightbox-fade .2s ease;
}

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  object-fit: contain;
  background: #0f1c22;
}

.lightbox__caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  text-align: center;
}

.lightbox__count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, .18);
}

.lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.8rem;
}
.lightbox__nav--prev {
  left: 20px;
}
.lightbox__nav--next {
  right: 20px;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
  .lightbox__nav--prev {
    left: 6px;
  }
  .lightbox__nav--next {
    right: 6px;
  }
}
