:root {
  --background: #eef1ee;
  --foreground: #1a1f1b;
  --surface: #eef1ee;
  --ink: #1a1f1b;
  --steel: #3d5248;
  --sage: #6b7c6f;
  --moss: #4c7a52;
  --bone: #e5e9e3;
  --amber: #d4a72c;
  --radius: 0.625rem;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.font-display { font-family: "Fraunces", Georgia, serif; }
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }
 /* Header / Hero */
.hero { background: var(--surface); }
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
       padding: 4rem 0 0;
}
.logo { height: 2.25rem; width: auto; }
.nav { display: none; align-items: center; gap: 2rem; font-size: 0.875rem; color: var(--steel); }
.nav a:hover { color: var(--ink); }
@media (min-width: 768px) { .nav { display: flex; } }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--moss);
  color: var(--bone);
  border: 1px solid rgba(76,122,82,0.3);
}
.btn-primary:hover { background: rgba(76,122,82,0.9); }
.btn-dark {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid rgba(26,31,27,0.2);
}
.btn-dark:hover { background: rgba(26,31,27,0.9); }
.btn-outline {
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.1);
}
.btn-outline:hover { border-color: rgba(0,0,0,0.2); }
.btn-outline-light {
  color: var(--bone);
  border: 1px solid rgba(229,233,227,0.3);
}
.btn-outline-light:hover { border-color: rgba(229,233,227,0.5); }
.hero-grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0 0;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; padding-top: 6rem; }
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.lead {
  margin-top: 1.75rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.625;
  color: rgba(26,31,27,0.7);
  white-space: pre-line;
}
.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-image {
  overflow: hidden;
  border-radius: clamp(0.5rem, 1vw, 1rem);
  background: var(--bone);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
.hero-image img { width: 100%; object-fit: cover; }
 /* Stat strip */
.stats {
  margin: 3.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: clamp(0.5rem, 1vw, 0.875rem);
  background: rgba(0,0,0,0.05);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--surface);
  padding: 1.5rem;
}
.stat-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
}
 /* Sections */
section { padding: 5rem 0; }
@media (min-width: 1024px) { section { padding: 7rem 0; } }
.section-dark { background: var(--ink); color: var(--bone); }
.section-bone { background: var(--bone); }
.section-moss { background: var(--moss); color: var(--bone); }
 h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.section-header { margin-bottom: 3.5rem; }
.section-header p { margin-bottom: 1rem; }
 /* Services */
.services-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: clamp(0.5rem, 1vw, 0.875rem);
  background: rgba(229,233,227,0.1);
  box-shadow: 0 0 0 1px rgba(229,233,227,0.1);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service {
  background: var(--ink);
  padding: 2rem;
}
.service-number {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: clamp(0.25rem, 1vw, 0.5625rem);
  background: rgba(76,122,82,0.9);
  color: var(--bone);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.service h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bone);
}
.service p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(229,233,227,0.6);
}
 /* Projects */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.projects-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .projects-grid { grid-template-columns: 7fr 5fr; }
}
.project-card {}
.project-image {
  overflow: hidden;
  border-radius: clamp(0.5rem, 1vw, 0.875rem);
  background: var(--bone);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
.project-image img { width: 100%; object-fit: cover; }
.project-meta {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.project-meta h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.project-meta p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(26,31,27,0.6);
}
.badge {
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.badge-moss { background: var(--moss); color: var(--bone); }
.badge-amber { background: var(--amber); color: var(--ink); }
.projects-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
 /* Team */
.team-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .team-grid { grid-template-columns: 4fr 8fr; } }
.team-intro p {
  margin-top: 1.25rem;
  max-width: 36ch;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(26,31,27,0.65);
}
.team-cards {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .team-cards { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
.team-card img {
  border-radius: clamp(0.25rem, 1vw, 0.5rem);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
.team-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}
.team-card .role {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
}
.team-card .bio {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(26,31,27,0.6);
}
 /* CTA */
.cta-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .cta-grid { grid-template-columns: 7fr 5fr; }
  .cta-actions { justify-content: flex-end; }
}
.cta h2 { color: var(--bone); }
.cta p {
  margin-top: 1.25rem;
  max-width: 42ch;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.625;
  color: rgba(229,233,227,0.75);
}
.cta-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(229,233,227,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}
.footer-bottom p { font-size: 0.75rem; }
.footer-bottom p:first-child { color: rgba(229,233,227,0.6); }
.footer-bottom p:last-child { color: rgba(229,233,227,0.4); }
 /* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
  .hidden-sm { display: none; }
@media (min-width: 640px) { .hidden-sm { display: inline-flex; } }
