@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700;750;800&display=swap");
:root {
  --paper: #f7f8f2;
  --ink: #20251e;
  --muted: #687064;
  --line: #dde1d5;
  --accent: #dcf58b;
  --radius: 22px;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 3px solid #598819;
  outline-offset: 7px;
  border-radius: 5px;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  display: block;
}
p {
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin: 0;
}
::selection {
  background: var(--accent);
  color: var(--ink);
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  background: var(--ink);
  color: white;
  padding: 15px;
  z-index: 10;
}
.skip-link:focus {
  top: 15px;
}
.header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  letter-spacing: -1.6px;
  font-weight: 800;
}
.brand svg {
  width: 35px;
  height: 28px;
}
.brand-dot {
  margin-left: -8px;
  color: #7a9639;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 550;
}
.header nav a:hover,
.text-link:hover,
.visit:hover {
  color: #62752d;
}
.header .contact-link {
  padding: 12px 19px;
  border: 1px solid #cdd3c1;
  border-radius: 100px;
}
.contact-link span {
  margin-left: 13px;
}
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 75px;
  padding: 88px 0 85px;
  align-items: end;
}
.eyebrow {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #819d43;
  box-shadow: 0 0 0 4px #e7ecd8;
}
h1 {
  margin-top: 24px;
  font-size: clamp(54px, 6.3vw, 88px);
  line-height: 1.07;
  letter-spacing: -5px;
  font-weight: 550;
}
.idea {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
.idea svg {
  position: absolute;
  width: 100%;
  height: 15px;
  left: 0;
  bottom: -4px;
  z-index: -1;
}
.idea path {
  stroke: #b4d45c;
  stroke-width: 9;
  fill: none;
  stroke-linecap: round;
}
.hero-note {
  padding-bottom: 6px;
  max-width: 355px;
}
.hero-note p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.hero-note p + p {
  margin-top: 14px;
}
.text-link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 650;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
}
.section-heading h2 {
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.6px;
}
.section-note {
  font-size: 13px;
  color: var(--muted);
}
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 30px;
}
.project {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px #24331c09;
}
.project-link {
  display: block;
  height: 100%;
}
.preview {
  height: 350px;
  position: relative;
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 14px;
}
.preview-pill {
  position: absolute;
  left: 23px;
  bottom: 20px;
  padding: 7px 11px;
  border: 1px solid #ffffff60;
  border-radius: 100px;
  background: #ffffffbf;
  color: #263022;
  font-size: 10px;
  font-weight: 600;
  z-index: 3;
  backdrop-filter: blur(8px);
}
.project-info {
  padding: 25px 29px 28px;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 600;
}
.arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 17px;
  color: var(--ink);
  margin-top: -4px;
}
.project h3 {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -1px;
  margin-top: 11px;
}
.alternate-name {
  font-size: 11px;
  color: var(--muted);
  font-weight: 450;
  letter-spacing: 0;
  padding-left: 9px;
  vertical-align: middle;
}
.project-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 470px;
}
.visit {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 650;
  margin-top: 20px;
}
.about {
  padding: 105px 0 94px;
}
.about > .eyebrow {
  margin-bottom: 26px;
  color: var(--muted);
}
.about-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
}
.about h2 {
  font-size: 45px;
  letter-spacing: -2px;
  line-height: 1.12;
  font-weight: 500;
}
.about-body p {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
}
.about-body p + p {
  margin-top: 15px;
}
.footer {
  background: #e9eddf;
  border-top: 1px solid #d6ddc8;
  padding-top: 57px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  padding-bottom: 55px;
}
.footer .eyebrow {
  font-size: 10px;
  color: #62705a;
  letter-spacing: 1px;
}
.footer h2 {
  font-size: 34px;
  letter-spacing: -1.4px;
  font-weight: 550;
  margin-top: 12px;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-size: 19px;
  letter-spacing: -0.5px;
  margin-top: 19px;
  border-bottom: 1px solid #889875;
  padding-bottom: 5px;
}
.company-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 25px;
  align-content: start;
  padding-top: 3px;
}
.company-details h3 {
  grid-column: 1/-1;
  font-size: 15px;
  font-weight: 650;
}
.company-details p,
.company-details address {
  font-size: 12px;
  line-height: 1.8;
  color: #5f6b56;
  font-style: normal;
  margin-top: 9px;
}
.footer-bottom {
  border-top: 1px solid #d0d8c2;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 55px;
  padding: 24px 0;
  font-size: 10px;
  color: #64715b;
}
.footer-bottom p {
  line-height: 1.7;
}
.footer-bottom > a {
  white-space: nowrap;
  margin-top: 3px;
}
.footer-bottom > a span {
  padding-left: 12px;
}
