:root {
  /* Твої оригінальні кольори повністю збережено */
  --ink: #080a0c;
  --panel: #111418;
  --panel-soft: #1c2026;
  --text: #f8fafc;
  --muted: #94a3b8;
  --paper: #0f1115;
  --paper-strong: #15181e;
  --dark-text: #f8fafc;
  --line: rgba(255, 255, 255, 0.08);
  --amber: #e11d48; /* Оригінальний червоно-рожевий колір */
  --orange: #9f1239;
  --steel: #334155;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* Сучасніший та чистіший системний шрифт замість Arial */
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark-text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

/* Елегантні мікро-заголовки (акценти) */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding: 10px max(20px, calc((100vw - 1200px) / 2));
  color: var(--text);
  background: rgba(8, 10, 12, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;

}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo small {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--amber);
}

.header-phone {
  padding: 12px 20px;
  font-weight: 700;
  color: #fff;
  background: var(--amber);
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-phone:hover {
  background: #f43f5e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--text);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("src/5312552796726959550.jpg");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.98) 0%, rgba(15, 17, 21, 0.88) 50%, rgba(15, 17, 21, 0.5) 100%),
    linear-gradient(180deg, rgba(15, 17, 21, 0.2), rgba(15, 17, 21, 0.98));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 60px;
}

h1 {
  max-width: 850px;
  margin: 0 0 20px;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.45);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(680px, 100%);
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding: 20px;
  background: rgba(17, 20, 24, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  color: var(--amber);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1;
  font-weight: 800;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

/* SECTIONS COMMONS */
.section {
  padding: clamp(60px, 7vw, 100px) 0;
}

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

.section-heading p:not(.eyebrow) {

  font-size: 1.05rem;
  margin: 10px 0 0;
}

.services-section {
  background: var(--paper-strong);
}

/* SERVICES GRID (Адаптовано під 5 елементів) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 29, 72, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(225, 29, 72, 0.1);
}

.card-photo {
  height: 160px;
  background-position: center;
  background-size: cover;
  transition: transform 0.4s ease;
}




.card-photo.rigging { background-image: url("src/Screenshot_20260220_205042_Gallery.png"); }
.card-photo.lifting { background-image: url("src/20251205_140718.png"); }
.card-photo.movers { background-image: url("src/file_000000007930724689df52556de6bf10.png"); }
.card-photo.freight { background-image: url("src/IMG_20260330_153957_228.png"); }
.card-photo.waste { background-image: url("https://images.unsplash.com/photo-1595246140625-573b715d11dc?auto=format&fit=crop&w=700&q=80"); }

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: -23px 20px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.3);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.service-card h3 {
  margin: 0 0 12px;
  padding: 0 20px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card ul {
  margin: 0 0 24px;
  padding: 0 20px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 5px 0 5px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--amber);
}

/* BENEFITS GRID */
.benefits-section,
.reviews-section,
.site-footer {
  background: var(--ink);
}

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

.benefit-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
}

.benefit-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.85rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* GALLERY */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 16px;
  color: var(--muted);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(100%);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 10, 12, 0.85));
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.3;
}

/* ABOUT SECTION */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 3;
  background: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1100&q=80") center/cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.about-points span {
  padding: 12px 16px;
  font-weight: 700;
  background: var(--panel);
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* REVIEWS SLIDER */
.review-slider {
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 100%;
  padding: clamp(24px, 4vw, 40px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.review-card p {
  color: var(--text);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.5;
  margin: 0 0 16px;
  font-style: italic;
}

.review-card strong {
  color: var(--amber);
  font-size: 0.95rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.25s ease;
}

.slider-dots button.active {
  width: 24px;
  background: var(--amber);
  border-radius: 4px;
}

/* CONTACTS SECTION */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contacts-card {
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
}

.contact-list a,
.contact-list address {
  font-style: normal;
  font-weight: 700;
  text-align: right;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--amber);
}

.map-wrap {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.05) brightness(95%);
}

/* FOOTER */
.site-footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}

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

.site-footer p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
}

.footer-nav,
.footer-contacts,
.socials {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-contacts a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: var(--amber);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--steel);
  border-radius: 8px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

.copyright {
  margin-top: 48px;
  padding: 20px;
  color: #475569;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

/* LIGHTBOX & TO TOP */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(8, 10, 12, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox p {
  margin: 16px 0 0;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.5rem;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--amber);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background: #f43f5e;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px;
    background: rgba(17, 20, 24, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about-layout,
  .contacts-layout,
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }

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

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

  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .contact-list address,
  .contact-list a {
    text-align: left;
  }
}