:root {
  --black: #070707;
  --charcoal: #111111;
  --dark: #181818;
  --gray: #6d6d6d;
  --soft-gray: #f6f6f3;
  --white: #ffffff;
  --purple: #8f2cff;
  --border: rgba(255, 255, 255, 0.12);
  --dark-border: rgba(0, 0, 0, 0.1);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--soft-gray);
  color: var(--charcoal);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  background: var(--black);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand img {
  width: 138px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) contrast(1.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 6px;
  transition: 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s ease;
}

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

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.header-call {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 13px 24px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  transition: 0.3s ease;
}

.header-call:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}

.hero {
  min-height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 40px));
  margin-left: max(40px, 8vw);
  padding-top: 80px;
}

.eyebrow,
.section-label {
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  color: var(--white);
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  max-width: 720px;
  line-height: 0.98;
}

.hero-text {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  max-width: 500px;
  margin: 20px 0 30px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--purple);
  color: var(--white);
}

.btn-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.hero-info {
  position: absolute;
  z-index: 3;
  left: max(40px, 8vw);
  bottom: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(850px, calc(100% - 80px));
  border-top: 1px solid var(--border);
}

.hero-info div {
  padding: 22px 30px 0 0;
}

.hero-info span {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
  margin-bottom: 6px;
}

.hero-info strong {
  color: var(--white);
  font-size: 0.95rem;
}

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

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

.intro,
.services,
.about,
.gallery,
.reviews,
.contact {
  padding: 110px 0;
}

.intro-grid,
.about-grid,
.reviews-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.intro h2,
.about h2,
.contact h2,
.reviews h2,
.section-heading h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
}

.intro p,
.about p,
.contact p,
.reviews p {
  color: #555;
  font-size: 1rem;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.68);
}

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

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

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

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid var(--border);
  padding: 38px;
  min-height: 270px;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(143, 44, 255, 0.55);
}

.service-card span {
  color: var(--purple);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.service-card h3 {
  font-size: 1.35rem;
  margin: 28px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card p {
  font-size: 0.95rem;
}

.about-image {
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-image img {
  height: 600px;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.08) brightness(0.9);
}

.stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats div {
  background: var(--white);
  padding: 25px;
  border: 1px solid var(--dark-border);
}

.stats strong {
  font-family: "Bebas Neue", sans-serif;
  display: block;
  font-size: 2.7rem;
}

.stats span {
  color: var(--gray);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 42px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-grid div {
  border-left: 1px solid rgba(143, 44, 255, 0.55);
  padding-left: 24px;
}

.feature-grid h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.65);
}

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

.gallery-grid img {
  height: 260px;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.06) brightness(0.86);
  transition: 0.35s ease;
}

.gallery-grid img:hover {
  filter: grayscale(0%) contrast(1.08) brightness(0.95);
  transform: scale(1.02);
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 42px;
}

.stars {
  color: var(--purple);
  letter-spacing: 0.18em;
  margin-bottom: 22px;
}

.review-card p {
  font-size: 1.2rem;
  color: var(--white);
}

.review-card span {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.contact-details {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.contact-details a {
  font-size: 2rem;
  font-weight: 800;
}

.contact-details span {
  color: #555;
}

.contact-box {
  background: var(--white);
  padding: 60px;
  box-shadow: var(--shadow);
  border: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-call {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-email {
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 24px;
  word-break: break-word;
}

.contact-note {
  color: #666;
  line-height: 1.7;
}

.map {
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 0;
  height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.05);
}

.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.footer img {
  width: 190px;
  max-height: 85px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 22px;
  filter: saturate(0.75) contrast(1.08);
}

.footer p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.footer a {
  color: var(--purple);
  font-weight: 800;
}

@media (max-width: 950px) {
  .site-header {
    padding: 0 20px;
  }

  .brand img {
    width: 120px;
    height: 48px;
  }

  .nav {
    position: fixed;
    top: 86px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 86px);
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    transition: 0.35s ease;
  }

  .nav.active {
    right: 0;
  }

  .menu-btn {
    display: block;
  }

  .header-call {
    display: none;
  }

  .hero-content {
    margin-left: 20px;
  }

  .hero-info {
    left: 20px;
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-info div {
    padding: 10px 0;
  }

  .intro-grid,
  .about-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

  .about-image img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3.4rem;
  }

  .hero {
    min-height: 820px;
  }

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

  .contact-box {
    padding: 40px 28px;
  }

  .contact-call {
    font-size: 1.5rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 78px;
  }

  .brand {
    padding: 5px 7px;
  }

  .brand img {
    width: 105px;
    height: 42px;
  }

  .nav {
    top: 78px;
    height: calc(100vh - 78px);
  }

  .hero {
    min-height: 850px;
    background-position: center right;
  }

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

  h1 {
    font-size: 2.9rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

  .gallery-grid img {
    height: 300px;
  }

  .intro,
  .services,
  .about,
  .gallery,
  .reviews,
  .contact {
    padding: 80px 0;
  }

  .map {
    height: 330px;
  }
}