:root {
  --green: #263d2d;
  --deep: #122218;
  --sage: #eef4e8;
  --cream: #fbf8ef;
  --gold: #c69b63;
  --text: #203026;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 6vw;
  background: rgba(251, 248, 239, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38, 61, 45, 0.12);
}

.logo {
  width: 190px;
  display: block;
}

.nav nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;

  background: url("assets/hero.jpg") center/cover no-repeat;
  color: white;
  padding: 120px 7vw 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 20, 13, 0.78),
    rgba(10, 20, 13, 0.35),
    rgba(10, 20, 13, 0.1)
  );
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #d9f0c9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #6d7e48;
}

h1,
h2,
h3 {
  font-family: Marcellus, serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

h3 {
  font-size: 28px;
}

p {
  font-size: 17px;
  line-height: 1.75;
}

.hero p {
  max-width: 620px;
  color: #f2f5e9;
  font-size: 20px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
}

.primary {
  background: var(--green);
  color: white;
}

.secondary {
  background: white;
  color: var(--green);
}

.full {
  width: 100%;
  margin-top: 12px;
}

.intro,
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 110px 7vw;
}

.intro p {
  font-size: 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 7vw 110px;
}

.services article {
  background: white;
  border: 1px solid rgba(38, 61, 45, 0.12);
  border-radius: 28px;
  padding: 34px;
  min-height: 280px;
  box-shadow: 0 22px 70px rgba(20, 35, 23, 0.07);
}

.services span {
  color: var(--gold);
  font-weight: 900;
}

.services h3 {
  margin: 24px 0 12px;
}

.gallery-section {
  background: var(--sage);
  padding: 110px 7vw;
}

.section-head {
  margin-bottom: 38px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(18, 34, 24, 0.14);
}

.gallery .wide {
  grid-column: span 2;
}

.gallery .tall {
  grid-row: span 2;
}

.promise {
  position: relative;
  padding: 110px 7vw;
  background: url("assets/indoor-green.jpg") center/cover fixed;
}

.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 34, 24, 0.64);
}

.promise-card {
  position: relative;
  margin: auto;
  max-width: 980px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 36px;
  padding: 60px;
  text-align: center;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.checks p {
  background: var(--sage);
  border-radius: 18px;
  padding: 16px;
  margin: 0;
  font-weight: 700;
}

.contact-card {
  background: white;
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 22px 70px rgba(20, 35, 23, 0.1);
}

.contact-card a {
  text-decoration: underline;
}

footer {
  padding: 40px 7vw;
  text-align: center;
  background: white;
}

footer img {
  width: 180px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;

  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
  .nav nav {
    display: none;
  }

  .logo {
    width: 160px;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
    padding: 80px 6vw;
  }

  .services {
    grid-template-columns: 1fr;
    padding: 0 6vw 80px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .gallery .wide,
  .gallery .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .checks {
    grid-template-columns: 1fr;
  }

  .promise-card {
    padding: 36px 22px;
  }
}