:root {
  --forest: #173f34;
  --forest-deep: #0f3028;
  --cream: #f4f1e9;
  --paper: #fbfaf6;
  --ink: #17342d;
  --muted: #68736e;
  --line: rgba(23, 63, 52, 0.2);
  --lime: #d9e866;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.site-header {
  height: 86px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--forest);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.02em;
}
.nav { display: flex; gap: 2rem; }
.nav a {
  text-decoration: none;
  font-size: .88rem;
  color: rgba(255,255,255,.84);
}
.nav a:hover { color: var(--lime); }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--forest);
  color: white;
}
.hero-copy {
  padding: 10vh 7vw 9vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.eyebrow, .section-kicker {
  margin: 0 0 2.2rem;
  font-size: .73rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.6rem, 6.2vw, 7.4rem);
  line-height: .93;
  letter-spacing: -.05em;
  font-weight: 500;
}
.hero h1 span { color: var(--lime); font-style: italic; }
.hero-dek {
  max-width: 660px;
  margin: 2.5rem 0 2rem;
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  color: rgba(255,255,255,.8);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding-bottom: .25rem;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.hero-image-wrap { min-height: 620px; overflow: hidden; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; display: block; }

.statement,
.services,
.about,
.contact { padding: 8rem 5vw; }
.statement { background: var(--cream); }
.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 9vw;
  align-items: start;
}
.statement h2,
.services-head h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.statement-copy { font-size: clamp(1.08rem, 1.35vw, 1.35rem); }
.statement-copy p:first-child { margin-top: 0; }
.statement-copy p:last-child { margin-bottom: 0; }

.services { background: var(--paper); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.service-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 3rem;
  padding: 3.4rem 0;
  border-top: 1px solid var(--line);
}
.service-no { padding-top: .45rem; color: var(--muted); font-size: .78rem; letter-spacing: .12em; }
.service-main { display: grid; grid-template-columns: 1fr 1fr; column-gap: 5vw; }
.service-main h3 { margin: 0 0 .6rem; font-size: clamp(1.75rem, 2.5vw, 3rem); line-height: 1.1; letter-spacing: -.035em; }
.service-lead { margin: .3rem 0 1.1rem; font-weight: 600; }
.service-main > p:not(.service-lead):not(.service-tags) { grid-column: 2; grid-row: 1 / span 2; margin: .3rem 0; }
.service-tags { grid-column: 1 / -1; margin: 2.2rem 0 0; color: var(--muted); font-size: .9rem; }
.services-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 0 0 110px;
  border-top: 1px solid var(--line);
}

.about {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  gap: 8vw;
  align-items: center;
  background: var(--forest-deep);
  color: white;
}
.about-images { min-height: 690px; overflow: hidden; }
.about-images img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; display: block; }
.about-copy .section-kicker { color: var(--lime); }
.about-copy h2 { margin-bottom: 2.4rem; }
.about-copy p:not(.section-kicker) { max-width: 730px; color: rgba(255,255,255,.78); }

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  background: var(--lime);
}
.contact h2 { max-width: 900px; }
.contact p:not(.section-kicker) { margin-bottom: 0; font-size: 1.15rem; }
.contact-button {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  padding: 1.15rem 1.5rem;
  color: white;
  background: var(--forest);
  text-decoration: none;
  font-weight: 600;
}
.contact-note { display: none; }
.footer {
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(255,255,255,.68);
  background: var(--forest-deep);
  font-size: .82rem;
}

@media (max-width: 900px) {
  .nav { gap: 1rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 5rem 6vw; }
  .hero-image-wrap { min-height: 72vh; }
  .statement, .services, .about, .contact { padding: 5.5rem 6vw; }
  .statement-grid, .services-head, .about, .contact { grid-template-columns: 1fr; }
  .statement-grid { gap: 2.5rem; }
  .services-head { gap: 1rem; }
  .service-main { grid-template-columns: 1fr; }
  .service-main > p:not(.service-lead):not(.service-tags) { grid-column: 1; grid-row: auto; }
  .services-cta { padding-left: 0; }
  .about-images { min-height: 0; max-height: 780px; }
  .about-images img { min-height: 0; height: auto; }
  .contact { align-items: start; }
  .footer { flex-wrap: wrap; }
}

@media (max-width: 580px) {
  body { font-size: 16px; }
  .site-header { height: 72px; padding: 0 5vw; }
  .nav a:nth-child(2),
  .nav a:nth-child(3) { display: none; }
  .hero { min-height: 0; }
  .hero-copy { min-height: 580px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .hero-image-wrap { min-height: 66vh; }
  .statement, .services, .about, .contact { padding: 4.5rem 5vw; }
  .service-card { grid-template-columns: 38px 1fr; gap: 1rem; padding: 2.4rem 0; }
  .service-tags { line-height: 1.8; }
  .services-cta { display: block; }
  .services-cta p { margin-bottom: 1.3rem; }
  .footer span:nth-child(2) { display: none; }
}
