:root {
  --orange: #ff6b00;
  --dark: #111;
  --muted: #666;
  --light: #f5f5f5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: #111;
  background: #fff;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 12, 12, 0.96);
  box-shadow: 0 4px 24px #0003;
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand img {
    max-height: 50px;
}
.brand-mark {
  color: var(--orange);
  font-size: 35px;
  line-height: 1;
  transform: rotate(-15deg);
  display: inline-block;
}
.brand strong {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  display: block;
}
.brand small {
  font-size: 11px;
  font-weight: 700;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff7900, #ff5b00);
  color: #fff !important;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  padding: 16px 24px;
  cursor: pointer;
}
.btn.small {
  padding: 15px 22px;
}
.btn.outline {
  background: transparent;
  border: 1px solid #fff;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
}
.hero {
  position: relative;
  min-height: 430px;
  background: #111;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      #111 0%,
      #111 31%,
      rgba(17, 17, 17, 0.35) 62%,
      rgba(17, 17, 17, 0.1)
    ),
    url("../images/hero-renovacija.jpg") center right/cover no-repeat;
}
.hero:after,
.process:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #fff1 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 68px 22px 55px;
  color: #fff;
  max-width: 1120px;
}
.hero h1 {
  text-transform: uppercase;
  font-size: 50px;
  line-height: 1.08;
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero h1 span {
  display: block;
  color: var(--orange);
}
.hero h2 {
  font-size: 22px;
  margin: 0 0 18px;
}
.hero p {
  max-width: 520px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 32px;
}
.section {
  padding: 48px 0;
}
.center {
  text-align: center;
}
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  margin: 0 0 10px;
}
.section h2,
.process h2 {
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.service-card {
  background: #fff;
  border-radius: 4px;
  padding: 26px 14px;
  box-shadow: 0 10px 28px #0002;
  border: 1px solid #eee;
}
.icon {
  color: var(--orange);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}
.btn i {
  margin-left: 8px;
}
.hero-actions .btn:first-child i {
  margin-left: 0;
  margin-right: 8px;
}
.benefits i {
  color: var(--orange);
  margin-right: 6px;
}
.contact-list i {
  width: 20px;
  color: #111;
}
.social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social i {
  font-size: 18px;
}
.service-card h3 {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.45;
}
.service-card span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--orange);
  margin: 14px auto 0;
}
.process {
  position: relative;
  background: #151515;
  color: #fff;
  padding: 34px 0 44px;
  overflow: hidden;
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 12px;
}
.steps .line {
  position: absolute;
  top: 20px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--orange);
  opacity: 0.8;
}
.steps article {
  position: relative;
  z-index: 1;
}
.steps b {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.round {
  width: 56px;
  height: 56px;
  border: 1px solid #fff8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 9px auto 12px;
  font-size: 28px;
}
.steps h3 {
  font-size: 15px;
}
.steps p {
  font-size: 13px;
  line-height: 1.5;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.why h2 {
  text-transform: none;
  font-size: 30px;
  margin-bottom: 20px;
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.benefits p {
  line-height: 1.45;
  font-size: 14px;
}
.benefits b {
  font-size: 15px;
}
.why img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 8px 24px #0002;
}
.gallery-strip {
  background: #151515;
  padding: 24px 0 34px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.contact {
  background: #f6f6f6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 70px;
}
.contact h2 {
  text-transform: none;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2;
}
.contact-list a {
  color: #111;
  text-decoration: none;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  padding: 12px 14px;
  font-family: inherit;
  margin-bottom: 10px;
}
.contact-form textarea {
  min-height: 92px;
  resize: vertical;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form .btn {
  width: 100%;
}
.form-msg {
  font-weight: 700;
}
.footer {
  background: #111;
  color: #fff;
  padding: 18px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mini strong {
  font-size: 18px;
}
.mini .brand-mark {
  font-size: 24px;
}
.footer p {
  font-size: 12px;
  color: #ddd;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #111;
    padding: 16px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav.open {
    display: flex;
  }
  .hero h1 {
    font-size: 40px;
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps .line {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    gap: 25px;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand small {
    font-size: 8px;
  }
  .nav-wrap {
    height: 68px;
  }
  .main-nav {
    top: 68px;
  }
  .hero {
    min-height: 520px;
  }
  .hero-bg {
    background: linear-gradient(
        180deg,
        #111 0%,
        rgba(17, 17, 17, 0.88) 45%,
        rgba(17, 17, 17, 0.55)
      ),
      url("../images/hero-renovacija.jpg") center/cover no-repeat;
  }
  .hero-content {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}
