
:root {
  --green: #1f5a44;
  --green-dark: #174734;
  --clay: #b65c3a;
  --charcoal: #121212;
  --text: #4f4a43;
  --muted: #7f7668;
  --border: #d9d3c7;
  --bg: #f3f1ed;
  --bg-soft: #f7f5f1;
  --beige: rgba(214, 195, 163, 0.25);
  --beige-soft: #f3ede4;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(18, 18, 18, 0.08);
  --shadow-hover: 0 16px 40px rgba(18, 18, 18, 0.14);
  --radius: 10px;
  --container: 1200px;
  --header-h: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; }

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

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.grid-5 { grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 40px; }
.stack { display: grid; gap: 24px; }

.section { padding: 96px 0; }
.section-copy { max-width: 760px; }

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.6); }
.compact { margin-bottom: 10px; letter-spacing: 0.2em; }

.heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.heading-lg { font-size: clamp(2.3rem, 6vw, 4.4rem); }
.heading-md { font-size: clamp(2rem, 4vw, 3.3rem); }

.lead {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.9;
  max-width: 760px;
}
.lead-margin { margin-top: 24px; }
.lead-margin-sm { margin-top: 20px; }
.no-margin { margin: 0; }
.dark { color: #2f2a25; }
.top-space { margin-top: 24px; }

.card-text {
  font-size: 0.98rem;
  max-width: none;
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 241, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}
.site-header nav a:hover { color: var(--green); }
.logo { height: 84px; width: auto; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero-slides,
.hero-slide,
.hero-pattern {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.08);
  will-change: transform, opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 90, 68, 0.2);
}
.hero-pattern {
  opacity: 0.1;
  background-image: radial-gradient(circle at top right, white, transparent 35%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 120px 0;
  animation: fadeUp 0.7s ease-out;
}
.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.hero-copy {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 680px;
}
.hero-copy-contact {
  max-width: 700px;
  margin-top: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover {
  background: var(--clay);
  border-color: var(--clay);
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-dot.active {
  width: 32px;
  background: var(--white);
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.75); }

.pattern-section {
  position: relative;
  overflow: hidden;
}
.pattern-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/pattern.svg');
  background-size: 420px;
  background-repeat: repeat;
  opacity: 0.1;
  pointer-events: none;
}
.pattern-section > .container { position: relative; z-index: 1; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-pad-sm { padding: 24px; }
.card-pad-md { padding: 32px; }

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

.about-section { background: var(--beige); }
.green-section {
  background: var(--green);
  color: var(--white);
}
.soft-section { background: var(--beige-soft); }
.contact-section {
  background: var(--charcoal);
  color: var(--white);
}

.service-card { padding: 30px 32px; }
.service-card:hover { border-color: #c8b7a2; }
.service-line {
  width: 48px;
  height: 2px;
  background: var(--clay);
  margin-bottom: 20px;
  transition: width 0.3s ease;
}
.service-card:hover .service-line { width: 64px; }
.service-heading { font-size: 1.75rem; }

.list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.8;
}
.list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--clay);
  margin-top: 12px;
  flex: 0 0 auto;
}
.plain-list li { list-style: none; }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.step-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.step-card:hover {
  transform: scale(1.03);
  background: var(--clay);
  border-color: var(--clay);
}
.step-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}
.step-title {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.team-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}
.team-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-image-wrap img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-image-wrap:hover img { transform: scale(1.05); }
.team-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 90, 68, 0.05);
  pointer-events: none;
}
.team-copy {
  padding: 40px 44px;
}
.accent-line {
  width: 48px;
  height: 1px;
  background: var(--clay);
  margin-bottom: 24px;
}

.footer-card-heading { font-size: 2rem; }

.contact-layout { align-items: start; }
.contact-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}
.contact-item + .contact-item { margin-top: 18px; }
.contact-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.site-footer {
  text-align: center;
  padding: 24px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--charcoal);
}
.site-footer a {
  color: var(--clay);
  transition: all 0.3s ease;
}
.site-footer a:hover { color: var(--white); }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .team-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 88px; }
  .container { width: min(var(--container), calc(100% - 32px)); }
  .section { padding: 72px 0; }
  .site-header nav { display: none; }
  .hero { min-height: 86vh; }
  .hero-content { padding: 84px 0; }
  .grid-5,
  .grid-3,
  .grid-2,
  .steps { grid-template-columns: 1fr; }
  .team-copy { padding: 28px; }
  .service-card { padding: 28px; }
  .logo { height: 64px; }
}
