:root {
  --green: #2C5F4E;
  --green-dark: #1A3A2E;
  --amber: #D4A574;
  --amber-dark: #B8936F;
  --cream: #FAF8F5;
  --text: #1F2937;
  --muted: #6B7280;
}

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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green);
  line-height: 1.25;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--amber-dark); }

.site-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 1rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .inner,
.site-footer .inner,
.wrap {
  max-width: 960px;
  margin: 0 auto;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--amber);
}

.hero {
  background:
    linear-gradient(135deg, rgba(44, 95, 78, 0.92) 0%, rgba(26, 58, 46, 0.88) 100%),
    url("/construction.jpg") center/cover no-repeat;
  color: #fff;
  padding: 4.5rem 1.25rem 3.5rem;
}

.hero.real-estate {
  background:
    linear-gradient(135deg, rgba(201, 93, 63, 0.9) 0%, rgba(44, 95, 78, 0.88) 100%),
    url("/realestate.jpg") center/cover no-repeat;
}

.hero.projects {
  background:
    linear-gradient(135deg, rgba(44, 95, 78, 0.9) 0%, rgba(26, 58, 46, 0.85) 100%),
    url("/luxury-villa.jpg") center/cover no-repeat;
}

.hero.contact {
  background:
    linear-gradient(135deg, rgba(44, 95, 78, 0.92) 0%, rgba(26, 58, 46, 0.9) 100%),
    url("/quality-inspection.jpg") center/cover no-repeat;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.35);
}

.btn:hover { filter: brightness(1.05); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
  margin-left: 0.6rem;
}

.content {
  padding: 3rem 1.25rem 4rem;
}

.content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2rem 0 0.85rem;
}

.content h2:first-child { margin-top: 0; }

.content p,
.content li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1.5rem 0 2rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card .body { padding: 1.15rem 1.25rem 1.35rem; }

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.meta {
  font-size: 0.85rem;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
}

.info-box,
.form-box {
  background: #fff;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 1rem;
  padding: 1.5rem;
}

.info-box h3,
.form-box h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.info-box p { margin-bottom: 0.9rem; }
.info-box strong { color: var(--green); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.35rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 0.6rem;
  margin-bottom: 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a { color: var(--amber); }
.site-footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a { color: var(--amber); }
