:root {
  --bg: #f7f3ee;
  --ink: #111111;
  --muted: #6f655c;
  --accent: #b07442;
  --accent-2: #2b7a72;
  --deep: #121a19;
  --soft: #efe7de;
  --shadow: 0 20px 60px rgba(16, 12, 8, 0.16);
  --radius: 28px;
  --radius-sm: 16px;
  --max-width: 1200px;
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fffaf3 0%, #f3ede5 55%, #efe5db 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  z-index: 20;
}

.brand {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.98rem;
}

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

.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid #d4c9be;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--deep);
  color: #fff;
  box-shadow: var(--shadow);
}

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

.btn.ghost {
  border-color: #c9beb3;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.btn.ghost:hover {
  background: #fff;
}

.btn.underline {
  border: none;
  padding: 0;
  color: var(--accent-2);
  background: none;
  box-shadow: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero {
  display: grid;
  gap: 40px;
  padding: 32px 0 56px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(176, 116, 66, 0.25) 0%, rgba(176, 116, 66, 0) 70%);
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
}

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


.hero-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  height: clamp(300px, 38vw, 460px);
  width: 100%;
  object-fit: cover;
}

.hero-caption {
  padding: 18px 22px 26px;
}

.hero-caption h3 {
  font-size: 1.2rem;
  margin: 6px 0 4px;
}

.hero-caption span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: #f9f5f0;
  border: 1px solid #e2d7cc;
}

.hero-panel a {
  color: var(--accent-2);
  font-weight: 500;
}

section {
  padding: 72px 0;
}

.projects {
  padding-top: 48px;
}

.projects .section-head {
  text-align: center;
  margin: 0 auto 36px;
}

.about-showcase {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
  padding: 20px 0 28px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #e2d7cc;
  background: #f9f5f0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-badge-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #efe5db;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  font-weight: 700;
  line-height: 1;
}

.about-showcase h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  font-weight: 500;
  max-width: 880px;
}

.about-subtitle {
  max-width: 860px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-image {
  width: min(820px, 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  object-fit: cover;
  display: block;
}

.about-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  color: #ffffff;
  font-size: 0.95rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(12, 12, 12, 0.75) 100%);
  text-align: left;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-head p {
  color: var(--muted);
}

.project-grid {
  display: grid;
  gap: 22px;
}

.project-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}

.project-card div {
  padding: 18px 20px 22px;
}

.project-card p {
  color: var(--muted);
  margin-bottom: 6px;
}

.project-card span {
  font-size: 0.9rem;
  color: var(--accent-2);
}

.about {
  display: grid;
  gap: 36px;
  align-items: center;
}

.about img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.about-copy h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.about-list li {
  padding-left: 24px;
  position: relative;
}

.about-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 8px;
}

.services {
  background: #f9f5f0;
  border-radius: var(--radius);
  padding: 60px 48px;
}

.service-grid {
  display: grid;
  gap: 24px;
}

.service-grid article {
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid #eadfd4;
}

.service-grid h3 {
  margin-bottom: 10px;
}

.service-grid p {
  color: var(--muted);
}

.water {
  display: grid;
  gap: 32px;
  background: linear-gradient(120deg, #0f1c1a 0%, #142a28 55%, #1f3532 100%);
  color: #f7f3ee;
  border-radius: var(--radius);
  padding: 60px 48px;
  margin-top: 28px;
}

.water .eyebrow {
  color: rgba(247, 243, 238, 0.6);
}

.water p {
  color: rgba(247, 243, 238, 0.7);
}

.water-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.water-points span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(247, 243, 238, 0.1);
  border: 1px solid rgba(247, 243, 238, 0.2);
  font-size: 0.9rem;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-steps div {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid #efe2d6;
}

.process-steps span {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.clients {
  padding-top: 40px;
}

.client-row {
  display: grid;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #e3d6ca;
  display: grid;
  gap: 22px;
  color: var(--muted);
}

.site-footer h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--ink);
  margin-bottom: 6px;
}

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

.footer-meta {
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }


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

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

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

  .water {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    text-align: center;
  }

  .cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav,
  .btn.primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav.is-open {
    display: grid;
    width: 100%;
    padding: 12px 0 8px;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 0 18px 60px;
  }

  section {
    padding: 60px 0;
  }

  .services,
  .water,
  .cta {
    padding: 36px 24px;
  }
}
.water-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
