:root {
  --green-950: #062b22;
  --green-900: #0b3d31;
  --green-800: #115243;
  --green-700: #156a55;
  --green-600: #1d8368;
  --green-100: #dff5ec;
  --green-50: #f1fbf6;
  --mint: #9de7bd;
  --cream: #fbfff9;
  --ink: #17312b;
  --muted: #60756e;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 43, 34, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green-700);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--green-900);
}

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

.section-pad {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 255, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 106, 85, 0.12);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green-950);
  letter-spacing: -0.02em;
  margin-right: auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(21, 106, 85, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--green-900);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call:hover,
.header-call:focus {
  color: var(--white);
  background: var(--green-900);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--green-100);
  color: var(--green-950);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(157, 231, 189, 0.55), transparent 32%),
    linear-gradient(135deg, #f6fff8 0%, #e0f6eb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(29, 131, 104, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--green-950);
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 14px;
  color: var(--green-950);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1.2rem;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 12px 25px rgba(21, 106, 85, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--white);
  background: var(--green-900);
}

.btn-secondary {
  color: var(--green-900);
  background: var(--white);
  border-color: rgba(21, 106, 85, 0.22);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 106, 85, 0.14);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-media img,
.rounded-img,
.renovation-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 24px -16px -16px 24px;
  background: var(--green-600);
  border-radius: var(--radius);
  opacity: 0.18;
}

.hero-media img {
  position: relative;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(21, 106, 85, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(6, 43, 34, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--green-950);
  background: var(--green-100);
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 900;
}

.service-card p,
.feature-copy p,
.renovation-grid p,
.contact-section p,
.faq-list p {
  color: var(--muted);
}

.feature-section {
  background: linear-gradient(180deg, var(--cream), var(--green-50));
}

.feature-grid,
.location-grid,
.contact-grid,
.renovation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 52px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.82rem;
}

.renovation-band {
  background: var(--green-900);
  color: var(--white);
}

.renovation-band h2,
.renovation-band .eyebrow {
  color: var(--white);
}

.renovation-band p {
  color: rgba(255, 255, 255, 0.82);
}

.renovation-grid img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.location-section {
  background: var(--green-50);
}

address {
  margin: 18px 0;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.contact-line {
  margin-bottom: 8px;
}

.map-wrap {
  overflow: hidden;
  min-height: 380px;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  background: var(--white);
  border: 1px solid rgba(21, 106, 85, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(6, 43, 34, 0.05);
}

summary {
  padding: 20px 22px;
  color: var(--green-950);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(157, 231, 189, 0.44), transparent 28%),
    var(--cream);
}

.contact-grid {
  align-items: start;
}

.contact-card,
.contact-form {
  background: var(--white);
  border: 1px solid rgba(21, 106, 85, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  margin-top: 24px;
  padding: 24px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-form {
  padding: 30px;
}

.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--green-950);
  font-weight: 900;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfffc;
  border: 1px solid rgba(21, 106, 85, 0.24);
  border-radius: 14px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(29, 131, 104, 0.18);
  border-color: var(--green-700);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-feedback {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 800;
}

.form-feedback.success {
  color: var(--green-700);
}

.form-feedback.error {
  color: #a9361f;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 13px 18px;
  color: var(--white);
  background: #1fa855;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(6, 43, 34, 0.25);
  font-weight: 900;
  transition: bottom 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  color: var(--white);
  background: #178845;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(21, 106, 85, 0.14);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus {
    background: var(--green-50);
  }

  .header-call {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .location-grid,
  .contact-grid,
  .renovation-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media img {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section-pad {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .site-nav {
    top: 66px;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

  .service-card,
  .contact-form,
  .contact-card {
    padding: 22px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
    height: 320px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }
}
