    :root {
      --yellow: #f4bf13;
      --yellow-dark: #d8a500;
      --black: #070707;
      --charcoal: #111111;
      --charcoal-2: #1a1a1a;
      --white: #ffffff;
      --offwhite: #f3f3f3;
      --gray: #d7d7d7;
      --text: #222222;
      --muted: #666666;
      --max: 1200px;
      --shadow: 0 20px 40px rgba(0,0,0,0.12);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #efefef;
      line-height: 1.55;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(0,0,0,0.96);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 82px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      color: var(--white);
    }

    .brand-mark {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
      color: var(--yellow);
      letter-spacing: -0.06em;
      font-style: italic;
    }

    .brand-copy strong {
      display: block;
      font-size: 1.85rem;
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -0.03em;
    }

    .brand-copy span {
      display: block;
      font-size: 0.92rem;
      color: #d2d2d2;
      margin-top: 0.15rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      color: var(--white);
      font-weight: 800;
      font-size: 0.92rem;
      text-transform: uppercase;
    }

    .nav-links a {
      position: relative;
      padding: 0.4rem 0;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--yellow);
    }

    .nav-links a.active::after,
    .nav-links a:hover::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -0.45rem;
      height: 3px;
      background: var(--yellow);
      border-radius: 999px;
    }

    .phone-btn {
      background: var(--yellow);
      color: #111;
      padding: 1rem 1.3rem;
      border-radius: 10px;
      font-weight: 900;
      white-space: nowrap;
      box-shadow: var(--shadow);
    }

    .hero {
      position: relative;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.78) 45%, rgba(0,0,0,0.35) 100%),
        url('img/halogo.png') center top no-repeat;

      background-size: auto 620px;

      min-height: 660px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-content {
      max-width: 650px;
      padding: 4rem 0 9rem;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(3rem, 6vw, 5.6rem);
      line-height: 0.95;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.05em;
    }

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

    .hero-subtitle {
      font-size: 1.7rem;
      font-weight: 800;
      margin-top: 1rem;
      color: #f2f2f2;
    }

    .hero-services {
      margin-top: 1.25rem;
      font-size: 1.2rem;
      font-weight: 700;
      color: #f1f1f1;
    }

    .hero-services span {
      margin-right: 0.6rem;
      white-space: nowrap;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1.6rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      border-radius: 8px;
      padding: 1rem 1.5rem;
      text-transform: uppercase;
      transition: 0.2s ease;
      border: 2px solid transparent;
    }

    .btn-primary {
      background: var(--yellow);
      color: #111;
    }

    .btn-primary:hover {
      background: var(--yellow-dark);
      color: #fff;
    }

    .btn-outline {
      border-color: var(--yellow);
      color: #fff;
      background: rgba(0,0,0,0.35);
    }

    .btn-outline:hover {
      background: var(--yellow);
      color: #111;
    }

    .trust-strip-wrap {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 18px;
    }

    .trust-strip {
      background: rgba(8,8,8,0.72);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      display: grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      overflow: hidden;
      backdrop-filter: blur(6px);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.15rem 1rem;
      color: #fff;
      font-weight: 800;
      text-transform: uppercase;
      border-right: 1px solid rgba(255,255,255,0.08);
      min-height: 88px;
    }

    .trust-item:last-child { border-right: none; }
    .trust-icon {
      width: 42px;
      height: 42px;
      border: 2px solid var(--yellow);
      color: var(--yellow);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      font-weight: 900;
      flex-shrink: 0;
    }

    .trust-item span {
      font-size: 0.98rem;
      line-height: 1.15;
    }

    section {
      padding: 4.2rem 0;
    }

    .section-tag {
      color: var(--yellow-dark);
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .section-title {
      text-align: center;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.05;
      margin: 0 0 2rem;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .services {
      background: #f3f3f3;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0,1fr));
      gap: 0.9rem;
    }

    .service-card {
      background: #fff;
      border: 1px solid #dddddd;
      border-radius: 8px;
      padding: 1.6rem 1rem;
      text-align: center;
      box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    }

    .service-icon {
      width: 68px;
      height: 68px;
      margin: 0 auto 0.85rem;
      border: 2px solid #222;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: var(--yellow-dark);
      font-size: 1.8rem;
    }

    .service-card h3 {
      margin: 0 0 0.45rem;
      font-size: 1.05rem;
      font-weight: 900;
      line-height: 1.15;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .about-band {
      background:
        linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(244,191,19,0.08), transparent 55%);
      color: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.2fr 0.8fr;
      gap: 1.6rem;
      align-items: stretch;
    }

    .about-photo {
      min-height: 360px;
      border-radius: 6px;
      background: linear-gradient(135deg, #555, #222);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-text h2 {
      margin: 0;
      font-size: clamp(2rem, 3vw, 3.1rem);
      text-transform: uppercase;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .about-highlight {
      margin-top: 0.7rem;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--yellow);
    }

    .about-text p {
      color: #eeeeee;
      margin: 1rem 0 0;
      font-size: 1.02rem;
    }

    .about-box {
      border: 2px solid rgba(244,191,19,0.8);
      border-radius: 12px;
      padding: 1.3rem 1.4rem;
      align-self: center;
    }

    .about-box ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .about-box li {
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      font-weight: 700;
    }

    .about-box li:last-child { border-bottom: none; }
    .about-box li::before {
      content: '✓';
      color: var(--yellow);
      font-weight: 900;
      margin-right: 0.8rem;
    }

    .work {
      background: #f3f3f3;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0,1fr));
      gap: 0.7rem;
    }

    .gallery-item {
      aspect-ratio: 1 / 0.92;
      border-radius: 4px;
      overflow: hidden;
      background: linear-gradient(135deg, #ddd, #bbb);
      box-shadow: 0 6px 16px rgba(0,0,0,0.05);
      position: relative;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      color: #333;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 0.9rem;
      text-align: center;
      padding: 0.5rem;
      background: linear-gradient(135deg, #ddd, #c4c4c4);
    }

    .center-btn {
      text-align: center;
      margin-top: 1rem;
    }

    .reviews {
      background: #e9e9e9;
    }

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

    .review-card {
      background: #fff;
      border-radius: 6px;
      padding: 1.35rem;
      box-shadow: 0 6px 16px rgba(0,0,0,0.05);
      min-height: 190px;
    }

    .stars {
      color: var(--yellow-dark);
      font-size: 1.1rem;
      margin-bottom: 0.7rem;
      letter-spacing: 0.04em;
    }

    .review-card p {
      margin: 0 0 0.85rem;
      color: #444;
    }

    .review-card strong {
      display: block;
      font-weight: 900;
    }

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

    .contact {
      background: linear-gradient(180deg, #0b0b0b, #050505);
      color: #fff;
      padding-bottom: 2rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1fr 0.95fr;
      gap: 1.25rem;
      align-items: start;
    }

    .contact-col h3 {
      color: var(--yellow);
      margin: 0 0 1rem;
      font-size: 1.4rem;
      text-transform: uppercase;
      font-weight: 900;
    }

    .contact-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .contact-list li {
      margin-bottom: 1rem;
      color: #f1f1f1;
      font-weight: 700;
    }

    .contact-list span {
      display: block;
      color: #cfcfcf;
      font-weight: 600;
    }

    form {
      display: grid;
      gap: 0.7rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem;
    }

    input, textarea, select {
      width: 100%;
      padding: 0.9rem 0.95rem;
      border: none;
      border-radius: 4px;
      font: inherit;
      background: #fff;
      color: #111;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .map-box {
      background: #efefef;
      border-radius: 6px;
      overflow: hidden;
      color: #111;
      min-height: 275px;
      position: relative;
    }

    .map-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .map-overlay {
      position: absolute;
      right: 1rem;
      bottom: 1rem;
      background: rgba(39,39,42,0.9);
      color: #fff;
      padding: 1rem;
      border-radius: 10px;
      font-weight: 800;
      max-width: 270px;
      text-align: center;
    }

    footer {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 1rem;
      font-weight: 700;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-call {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 90;
      display: none;
    }
    
    .hero {
  background-size: auto 620px;
  background-position: center top;
}

@media (min-width: 1800px) {
  .hero {
    background-size: auto 600px;
    background-position: center top;
  }
}

@media (max-width: 1180px) {
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .about-grid,
  .contact-grid,
  .reviews-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 1.2rem;
  }

  .hero {
    min-height: auto;
    background-size: auto 520px;
    background-position: center top;
  }

  .hero-content {
    padding: 3rem 0 15rem;
  }
}

@media (max-width: 700px) {
  .services-grid,
  .gallery-grid,
  .reviews-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .hero {
    background-size: auto 430px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .phone-btn {
    width: 100%;
    text-align: center;
  }

  .mobile-call {
    display: block;
  }

  body {
    padding-bottom: 5.6rem;
  }
}
    
    
    
    
   
