* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 28px 5%;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 20px;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 600;
}

.brand-text small {
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.65;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.58) 50%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-top {
  position: absolute;
  top: 28px;
  right: 5%;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-contact-button {
  min-width: 76px;
  height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
}

.hero-contact-button:hover {
  background: #fff;
  color: #111;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 170px 5% 100px;
}

.location-label {
  margin-bottom: 22px;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(50px, 7vw, 50px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.hero-content > p {
  max-width: 560px;
  margin-top: 30px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  font-weight: 300;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: 0.25s ease;
}

.button-light {
  background: #fff;
  color: #111;
}

.button-light:hover {
  background: #e8e8e8;
}

.button-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.button-outline:hover {
  background: rgba(255,255,255,0.08);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-section {
  padding: 130px 0;
  background: #121212;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.section-label {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.services-heading h2,
.about-content h2,
.why-heading h2 {
  margin-top: 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.services-heading h2 span,
.why-heading h2 span {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.services-description {
  padding-top: 48px;
}

.services-description p,
.about-content p {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-link span {
  font-size: 17px;
  transition: 0.25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.about-image {
  min-height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 10%;
  background: #191919;
}

.about-content h2 {
  color: #fff;
  margin-bottom: 30px;
}

.about-content h2 span {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.why-section {
  padding: 130px 0;
  background: #0d0d0d;
}

.why-heading {
  max-width: 700px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.why-item {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 25px;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition: 0.25s ease;
}

.why-item:hover .why-icon {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.why-item h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
}

.why-item p {
  max-width: 320px;
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  background: url("img101-landscape.jpg") center / cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.contact-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 760px;
  text-align: center;
}

.contact-content h2 {
  margin-top: 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-content p {
  max-width: 520px;
  margin: 25px auto 0;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
}

.contact-buttons {
  justify-content: center;
}

.contact-location {
  margin-top: 30px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer {
  background: #080808;
  padding: 32px 5%;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 13px;
  font-weight: 600;
}

.footer-brand span {
  color: #666;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: #555;
  font-size: 9px;
}

@media (max-width: 900px) {

  .site-nav {
    display: none;
  }

  .services-content,
  .about-section {
    grid-template-columns: 1fr;
  }

  .services-description {
    padding-top: 0;
  }

  .about-image {
    min-height: 450px;
  }

  .about-content {
    padding: 80px 8%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {

  .site-header {
    padding: 18px 5%;
  }

  .brand-text {
    display: none;
  }

  .hero-top {
    top: 18px;
    right: 5%;
  }

  .hero-contact-button {
    min-width: 65px;
    height: 38px;
    padding: 0 12px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .services-section,
  .why-section {
    padding: 90px 0;
  }

  .contact-section {
    min-height: 550px;
  }
}