* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #071511;
  --dark-2: #0b1f19;
  --green: #0b3d2e;
  --green-soft: #14533f;
  --stone: #d8c3a5;
  --cream: #f4efe7;
  --muted: #b9c5be;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(216, 195, 165, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--cream);
  background: var(--dark);
}

section {
  scroll-margin-top: 120px;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;

  background:
    linear-gradient(
      180deg,
      rgba(11, 61, 46, 0.96),
      rgba(7, 21, 17, 0.92)
    );

  backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(216, 195, 165, 0.18);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.28);
}

.nav-wrapper {
  height: 120px;;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  transform: translateY(4px);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #f4efe7;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d8c3a5;
}

.nav-call {
  background: #e4cfb2;
  color: #071511;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.nav-call:hover {
  transform: translateY(-2px);
}

/* Hero */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 21, 17, 0.92), rgba(7, 21, 17, 0.45)),
    linear-gradient(0deg, rgba(7, 21, 17, 0.85), rgba(7, 21, 17, 0.1)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 130px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: var(--dark);
  clip-path: ellipse(70% 100% at 50% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: 90px;
  padding-top: 30px;
}

.eyebrow {
  color: var(--stone);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
  max-width: 700px;
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.75;
  max-width: 650px;
  color: rgba(244, 239, 231, 0.84);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--stone);
  color: var(--dark);
}

.btn-secondary {
  border: 1px solid rgba(216, 195, 165, 0.7);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

/* Shared section heading */

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading p {
  color: var(--stone);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

/* Services */

.services {
  padding: 140px 0 115px;
  background:
    radial-gradient(circle at top right, rgba(216, 195, 165, 0.12), transparent 38%),
    linear-gradient(180deg, var(--dark), var(--green));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--stone);
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--stone);
}

.service-card p {
  line-height: 1.75;
  color: rgba(244, 239, 231, 0.78);
}

/* About */

.about {
  padding: 115px 0;
  background: var(--cream);
  color: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-heading {
  text-align: left;
  margin-bottom: 30px;
}

.about .section-heading p {
  color: var(--green);
}

.about .section-heading h2 {
  color: var(--dark);
}

.about-text p {
  line-height: 1.9;
  color: #43524c;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

/* Projects */

.projects {
  padding: 115px 0;
  background:
    radial-gradient(circle at top left, rgba(216, 195, 165, 0.1), transparent 35%),
    var(--dark-2);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 390px;
  cursor: pointer;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  image-rendering: auto;
  backface-visibility: hidden;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.06));
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.project-overlay h3 {
  color: white;
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Areas */

.areas {
  padding: 115px 0;
  background: var(--cream);
  color: var(--dark);
}

.areas .section-heading p {
  color: var(--green);
}

.areas .section-heading h2 {
  color: var(--dark);
}

.areas-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.areas-wrapper span {
  background: white;
  color: var(--green);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.areas-wrapper span:hover {
  background: var(--green);
  color: white;
  transform: translateY(-4px);
}

/* Testimonials */

.testimonials {
  padding: 115px 0;
  background:
    radial-gradient(circle at bottom right, rgba(216, 195, 165, 0.12), transparent 36%),
    linear-gradient(180deg, var(--green), var(--dark));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--stone);
  padding: 38px 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.review {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(244, 239, 231, 0.8);
  margin-bottom: 26px;
}

.testimonial-card h4 {
  color: var(--stone);
  font-size: 1.05rem;
}

/* Map */

.map-section {
  padding: 115px 0;
  background: var(--dark);
}

.map-wrapper {
  width: min(1200px, 92%);
  margin: 50px auto 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}

.map-wrapper iframe {
  display: block;
}

/* Contact */

.contact {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background:
    radial-gradient(circle at top right, rgba(216, 195, 165, 0.14), transparent 38%),
    var(--green);
  color: white;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .section-heading h2,
.contact .section-heading p,
.contact-info h3,
.contact-info p,
.contact-details p {
  color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.contact-details p {
  margin-bottom: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(216, 195, 165, 0.25);
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: var(--stone);
  color: var(--dark);
  border: none;
  padding: 18px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #ead8bd;
  transform: translateY(-3px);
}

/* Footer */

.footer {
  background: #050d0a;
  color: rgba(244, 239, 231, 0.8);
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--stone);
}

/* Mobile */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
  padding-top: 120px;
}

  .logo {
  width: 72px;
}

  .nav-call {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 92vh;
    text-align: left;
    background-position: center;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-buttons {
    margin-bottom: 30px;
  }

  .services,
  .about,
  .projects,
  .areas,
  .testimonials,
  .map-section,
  .contact {
    padding: 90px 0;
  }

  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 340px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .hero h1 {
  font-size: 3.2rem;
  line-height: 0.92;
}

.hero-buttons {
  flex-direction: column;
  align-items: flex-start;
}

.hero-buttons .btn {
  width: 100%;
  text-align: center;
}
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 768px) {

  section {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .services-grid,
  .projects-grid,
  .reviews-grid {
    gap: 22px;
  }

  .service-card,
  .review-card {
    padding: 28px;
  }

  .service-card h3,
  .review-card h3 {
    font-size: 1.2rem;
  }

  .service-card p,
  .review-card p,
  .about-text p,
  .contact-info p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .areas-covered h2,
  .map-section h2,
  .reviews h2,
  .projects h2 {
    font-size: 2.3rem;
    line-height: 1.1;
    text-align: center;
  }

  .areas-tags {
    gap: 12px;
  }

  .area-tag {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .map-wrapper {
  margin-top: 40px;
  overflow: hidden;
  border-radius: 24px;
  height: 320px;
}

  .map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

  .contact-wrapper {
    gap: 40px;
  }

  footer {
    text-align: center;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {

  h2 {
    font-size: 2.2rem !important;
    line-height: 1.1;
  }

}
