:root {
  --dark: #071018;
  --dark-2: #101b25;
  --dark-3: #172431;
  --ink: #111827;
  --muted: #5f6b79;
  --line: #dce2e8;
  --soft: #f4f6f8;
  --white: #ffffff;
  --orange: #ff9f1c;
  --orange-dark: #9b4d00;
  --yellow: #ffc400;
  --shadow: 0 14px 36px rgba(7, 16, 24, .09);
  --container: 1280px;
  --display: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  --body: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
}

/* Единая типографическая система заголовков на всех страницах. */
h1 {
  color: var(--white);
  font-size: clamp(42px, 4.5vw, 58px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

main h2,
.section-title,
.text-card h2,
.contact-card h2,
.cta-box h2 {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.section-dark h2,
.pickup-block h2,
.cta-box h2 {
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(7, 16, 24, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

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

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.logo img {
  width: 106px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .76);
}

.main-nav a {
  position: relative;
  padding: 26px 0 23px;
  transition: color .18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transition: right .18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.nav-mobile-action {
  display: none;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header-phone {
  display: block;
  min-width: 150px;
  text-align: right;
  white-space: nowrap;
}

.header-phone strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.header-phone span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 5px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

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

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

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

.btn {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #17120a;
  background: var(--orange);
  box-shadow: 0 8px 22px rgba(255, 159, 28, .18);
}

.btn-primary:hover {
  background: var(--yellow);
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .58);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

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

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(7, 16, 24, .98) 0%, rgba(7, 16, 24, .9) 41%, rgba(7, 16, 24, .16) 76%, rgba(7, 16, 24, .26) 100%),
    url("../img/hero-quarry.jpg");
  background-position: center 48%;
  background-size: cover;
}

@supports (background-image: url("../img/hero-quarry.webp")) {
  .hero {
    background-image:
      linear-gradient(90deg, rgba(7, 16, 24, .98) 0%, rgba(7, 16, 24, .9) 41%, rgba(7, 16, 24, .16) 76%, rgba(7, 16, 24, .26) 100%),
      url("../img/hero-quarry.webp");
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 48px 0 28px;
}

.eyebrow {
  margin-bottom: 13px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

.hero .eyebrow,
.section-dark .eyebrow,
.pickup-block .eyebrow {
  color: var(--yellow);
}

h1 {
  max-width: 690px;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  hyphens: none;
}

.hero h1 .h1-line {
  display: block;
}

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

.hero-lead {
  max-width: 530px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-facts {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-fact {
  min-width: 0;
  padding: 12px 14px 0 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: start;
}

.hero-fact img {
  width: 31px;
  height: 31px;
}

.hero-fact b {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.2;
}

.hero-fact span {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1.4;
}

.section {
  padding: 58px 0;
}

.section-compact-top {
  padding-top: 0;
}

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

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

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

.section-title {
  max-width: 760px;
  margin-bottom: 0;
}

.section-desc {
  max-width: 650px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-dark .section-desc,
.pickup-block .section-desc {
  color: rgba(255, 255, 255, .7);
}

.more-link,
.card-link {
  color: var(--orange-dark);
  font-weight: 800;
}

.more-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.product-grid--confirmed .product-card picture {
  height: 176px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 16, 24, .055);
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card picture {
  width: 100%;
  height: 124px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  flex: 1 1 auto;
  padding: 14px 16px 15px;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.1;
}

.product-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.card-link {
  margin-top: auto;
  font-size: 12px;
}

#products.section {
  padding: 34px 0 38px;
}

.pickup-block {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(7, 16, 24, .99) 0%, rgba(7, 16, 24, .91) 38%, rgba(7, 16, 24, .22) 72%, rgba(7, 16, 24, .46) 100%),
    url("../img/self-pickup.jpg");
  background-position: center 54%;
  background-size: cover;
}

@supports (background-image: url("../img/self-pickup.webp")) {
  .pickup-block {
    background-image:
      linear-gradient(90deg, rgba(7, 16, 24, .99) 0%, rgba(7, 16, 24, .91) 38%, rgba(7, 16, 24, .22) 72%, rgba(7, 16, 24, .46) 100%),
      url("../img/self-pickup.webp");
  }
}

.pickup-layout {
  display: grid;
  min-height: 300px;
  grid-template-columns: minmax(0, .8fr) minmax(390px, 1.2fr);
  gap: 48px;
  align-items: end;
}

#pickup.section {
  padding: 34px 0 30px;
}

.pickup-copy .section-desc {
  margin-top: 8px;
  font-size: 14px;
}

.pickup-copy > .btn {
  margin-top: 17px;
}

.pickup-features {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pickup-features > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pickup-features img {
  width: 29px;
  height: 29px;
}

.pickup-features span {
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.25;
}

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

.step {
  min-width: 0;
  padding: 2px 0 2px 18px;
  border-left: 2px solid var(--orange);
}

.step b {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .08em;
}

.step strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 17px;
}

.step span {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-self: end;
}

.stat {
  min-width: 0;
  padding-top: 0;
  text-align: center;
}

.stat b {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
}

.stat span {
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.about-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  border-radius: 6px;
  background: #d9dee3;
}

.home-about {
  padding: 34px 0 24px;
}

.home-about .section-desc {
  margin-top: 10px;
  font-size: 14px;
}

.about-action {
  margin-top: 18px;
}

.about-photo picture,
.about-photo img {
  width: 100%;
  height: 100%;
}

.about-photo img {
  object-fit: cover;
}

.about-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 58%;
  bottom: 0;
  height: 4px;
  background: var(--orange);
}

.check-list {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #344050;
}

.check-item::before {
  content: "✓";
  flex: 0 0 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--orange);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.cta-box {
  padding: 18px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-left: 4px solid var(--orange);
  border-radius: 5px;
  color: var(--white);
  background: var(--dark-2);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-bottom: 6px;
  font-size: clamp(25px, 2.4vw, 31px);
}

.home-cta {
  padding-bottom: 28px;
}

.cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.page-hero {
  min-height: 310px;
  padding: 72px 0 56px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(7, 16, 24, .98) 0%, rgba(7, 16, 24, .84) 50%, rgba(7, 16, 24, .48) 100%),
    url("../img/hero-quarry.jpg");
  background-position: center 58%;
  background-size: cover;
}

@supports (background-image: url("../img/hero-quarry.webp")) {
  .page-hero {
    background-image:
      linear-gradient(90deg, rgba(7, 16, 24, .98) 0%, rgba(7, 16, 24, .84) 50%, rgba(7, 16, 24, .48) 100%),
      url("../img/hero-quarry.webp");
  }
}

.page-hero h1 {
  max-width: 1050px;
  margin-bottom: 13px;
}

.page-hero .hero-lead {
  margin-bottom: 0;
  font-size: 17px;
}

.breadcrumbs {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .82);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

.text-card,
.side-card,
.contact-card,
.form-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(7, 16, 24, .055);
}

.text-card,
.side-card {
  padding: 28px;
}

.text-card h2,
.text-card h3,
.side-card h3 {
  letter-spacing: -.025em;
}

.text-card h2 {
  margin-bottom: 14px;
}

.text-card h3 {
  margin: 24px 0 9px;
  font-size: 22px;
}

.text-card p:last-child,
.side-card p:last-child {
  margin-bottom: 0;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  scrollbar-color: var(--orange) #e9edf1;
  scrollbar-width: thin;
}

.table-wrap::-webkit-scrollbar {
  height: 9px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: var(--orange);
}

.price-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  color: var(--white);
  background: var(--dark-2);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .02em;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th:first-child,
.price-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

.price-table th:first-child {
  background: var(--dark-2);
}

.price-table td:first-child {
  background: var(--white);
  font-weight: 700;
}

.price-table td:nth-child(n + 3) {
  color: var(--orange-dark);
  font-weight: 800;
  white-space: nowrap;
}

.table-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.scroll-hint {
  display: none;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 30px;
}

.contact-card h2,
.form-card h2 {
  margin-bottom: 8px;
}

.contact-card {
  max-width: none;
}

.contact-call {
  margin-top: 24px;
}

.card-intro {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.contact-item {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-of-type {
  padding-top: 0;
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.contact-item strong {
  overflow-wrap: anywhere;
}

.contact-item strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-placeholder {
  color: #465261;
  font-weight: 700;
}

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

.form-card .btn {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.field > span {
  color: #303b49;
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cbd3dc;
  border-radius: 4px;
  color: var(--ink);
  background: #fbfcfd;
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, .17);
  background: var(--white);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange-dark);
}

.consent a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.form-note {
  min-height: 21px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-info {
  color: #334155;
}

.map {
  overflow: hidden;
  margin-top: 30px;
  aspect-ratio: 16 / 6.2;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.map picture,
.map img {
  width: 100%;
  height: 100%;
}

.map img {
  object-fit: cover;
}

.map-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.process-list {
  display: grid;
  gap: 0;
  counter-reset: process;
}

.process-item {
  position: relative;
  padding: 0 0 24px 58px;
  counter-increment: process;
}

.process-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.process-item::after {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: #17120a;
  background: var(--orange);
  font-family: var(--display);
  font-weight: 900;
}

.process-item h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  padding: 25px;
  border-top: 3px solid var(--orange);
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  padding: 30px 0 16px;
  color: rgba(255, 255, 255, .72);
  background: var(--dark);
}

.footer-grid {
  padding-bottom: 22px;
  display: grid;
  grid-template-columns: 1.3fr .75fr .8fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.footer .logo {
  margin-bottom: 9px;
}

.footer .logo img {
  width: 112px;
}

.footer h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.footer a {
  display: block;
  margin: 5px 0;
}

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

.footer-placeholder {
  margin: 7px 0;
}

.footer-bottom {
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

.footer-credits {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-bottom a {
  display: inline;
  margin: 0;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 159, 28, .09), transparent 31%),
    #050b11;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .38s ease, visibility .38s ease;
}

.page-loader-content {
  width: min(260px, calc(100% - 48px));
  display: grid;
  justify-items: center;
}

.page-loader-logo {
  position: relative;
  width: 154px;
  overflow: hidden;
  animation: loader-logo-pulse 1.5s ease-in-out infinite;
}

.page-loader-logo img {
  width: 100%;
  height: auto;
}

.page-loader-logo::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -55%;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 159, 28, .78), transparent);
  filter: blur(3px);
  transform: skewX(-20deg);
  animation: loader-shine 1.5s ease-in-out infinite;
}

.page-loader-line {
  position: relative;
  width: 170px;
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.page-loader-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 159, 28, .72);
  animation: loader-line 1.1s cubic-bezier(.65, 0, .35, 1) infinite;
}

.page-loader-text {
  margin-top: 11px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-leaving .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(1.5px);
  transform: translateY(24px);
  transition:
    opacity .65s ease var(--reveal-delay, 0ms),
    transform .65s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms),
    filter .65s ease var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  filter: none;
  transform: none;
}

.product-card.reveal-on-scroll.is-revealed:hover {
  transform: translateY(-3px);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: rgba(255, 255, 255, .82);
  background: rgba(7, 16, 24, .78);
  box-shadow: 0 8px 22px rgba(7, 16, 24, .16);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .22s ease;
}

.scroll-top span {
  margin-top: -2px;
  font-size: 20px;
  line-height: 1;
}

.scroll-top:hover {
  color: var(--white);
  background: rgba(155, 77, 0, .9);
}

.scroll-top.is-visible {
  opacity: .82;
  visibility: visible;
  transform: none;
}

.privacy-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  width: min(1080px, calc(100% - 36px));
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(110deg, rgba(7, 16, 24, .97), rgba(16, 27, 37, .95));
  box-shadow: 0 20px 54px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.privacy-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 48px;
  right: 72%;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.privacy-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.privacy-notice-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 159, 28, .6);
  color: var(--orange);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  transform: skewX(-6deg);
}

.privacy-notice-copy strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.15;
}

.privacy-notice-copy p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-notice-copy a {
  display: inline-block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.privacy-notice-copy a:hover {
  color: var(--yellow);
}

.privacy-notice-button {
  min-width: 104px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  color: #17120a;
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.privacy-notice-button:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  transform: translateY(-1px);
}

body.privacy-notice-open .scroll-top {
  bottom: 132px;
}

@keyframes loader-line {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(245%); }
}

@keyframes loader-shine {
  0%, 16% { transform: translateX(0) skewX(-20deg); opacity: 0; }
  48% { opacity: 1; }
  78%, 100% { transform: translateX(760%) skewX(-20deg); opacity: 0; }
}

@keyframes loader-logo-pulse {
  0%, 100% { transform: scale(1); opacity: .88; }
  50% { transform: scale(1.025); opacity: 1; }
}

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

  .page-loader-logo,
  .page-loader-logo::after,
  .page-loader-line span {
    animation: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-revealed {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 19px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    color: rgba(255, 255, 255, .82);
    background: rgba(7, 16, 24, .995);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

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

  .nav-mobile-action {
    display: block;
    margin-top: 10px;
    color: var(--orange) !important;
    border-bottom: 0 !important;
  }

  .burger {
    display: block;
  }

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

  .pickup-layout,
  .about-layout,
  .content-grid,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .pickup-layout,
  .about-layout {
    gap: 28px;
  }

  .pickup-layout {
    min-height: 0;
  }

  .pickup-features {
    max-width: 620px;
  }

  .stats {
    max-width: 680px;
  }

  .content-grid .side-card {
    max-width: 560px;
  }

  .contacts-layout {
    align-items: stretch;
  }

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

@media (max-width: 780px) {
  html {
    scroll-padding-top: 72px;
  }

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

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

  .logo img {
    width: 96px;
  }

  .site-header .btn {
    display: none;
  }

  .main-nav {
    top: 72px;
    max-height: calc(100vh - 72px);
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    background-position: 70% center;
  }

  .hero-content {
    padding: 42px 0 30px;
  }

  h1 {
    font-size: clamp(38px, 9vw, 50px);
    line-height: .98;
    letter-spacing: -.035em;
  }

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

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hero-fact {
    padding-top: 17px;
  }

  .section {
    padding: 44px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .more-link {
    display: inline-block;
    margin-top: 17px;
  }

  .pickup-block {
    background-position: 73% center;
  }

  .about-photo img {
    object-position: center;
  }

  .about-photo {
    aspect-ratio: 16 / 9;
  }

  .map {
    aspect-ratio: 1659 / 948;
  }

  .map img {
    object-fit: contain;
  }

  .page-hero {
    min-height: 285px;
    padding: 62px 0 48px;
    background-position: 66% center;
  }

  .h1-line {
    display: block;
    white-space: nowrap;
  }

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

  .scroll-hint {
    display: block;
  }

  .price-table {
    min-width: 680px;
  }

  .price-table th,
  .price-table td {
    padding: 14px 15px;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    position: static;
  }

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

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

@media (max-width: 620px) {
  .product-grid,
  .form-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stat b {
    font-size: 32px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-card img {
    object-position: center;
  }

  .product-card picture {
    height: 158px;
  }

  .product-grid--confirmed .product-card picture {
    height: 158px;
  }

  .contact-card,
  .form-card,
  .text-card,
  .side-card,
  .info-card {
    padding: 22px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .footer-bottom .footer-credits {
    display: flex;
    justify-content: flex-start;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
  }

  .privacy-notice {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 15px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
  }

  .privacy-notice-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .privacy-notice-copy strong {
    font-size: 15px;
  }

  .privacy-notice-copy p {
    font-size: 11px;
  }

  .privacy-notice-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.privacy-notice-open .scroll-top {
    bottom: 218px;
  }
}

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

  .hero-content {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .hero h1 .accent {
    font-size: .92em;
  }

  .hero-facts {
    gap: 17px 10px;
  }

  .hero-fact {
    grid-template-columns: 32px 1fr;
    gap: 9px;
    padding-right: 0;
  }

  .hero-fact img {
    width: 31px;
    height: 31px;
  }

  .hero-fact b {
    font-size: 13px;
  }

  .hero-fact span {
    font-size: 11px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .page-hero {
    min-height: 270px;
    padding: 54px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(27px, 8.6vw, 38px);
    overflow-wrap: anywhere;
  }

  .text-card h2 {
    font-size: 26px;
  }

  .breadcrumbs {
    margin-bottom: 13px;
  }

  .cta-box {
    padding: 24px 22px;
  }

  .process-item {
    padding-left: 52px;
  }
}

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