:root {
  --ink: #102521;
  --ink-soft: #48605a;
  --forest: #0c2723;
  --forest-light: #153d36;
  --mint: #b9f348;
  --mint-soft: #e5ffb1;
  --cream: #f7f5ee;
  --paper: #fffefa;
  --line: #d8ded8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 45, 39, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button {
  font-family: "Manrope", Arial, sans-serif;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(16, 37, 33, 0.1);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 198px;
  height: auto;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: #29423c;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #6a8e14;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 4px;
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--forest-light);
  box-shadow: 0 10px 30px rgba(12, 39, 35, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 94px;
  background:
    radial-gradient(circle at 83% 40%, rgba(185, 243, 72, 0.18), transparent 25%),
    linear-gradient(140deg, var(--paper), #f2f2e8);
}

.hero::before {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(12, 39, 35, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 1.08fr 0.92fr;
}

.eyebrow {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 10px;
  color: #4a645d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: #82ae20;
}

.hero h1 {
  max-width: 710px;
  margin-bottom: 26px;
  font-size: clamp(45px, 5.8vw, 78px);
  font-weight: 700;
  letter-spacing: -4.2px;
  line-height: 1.02;
}

.hero h1 em,
.about-statement em {
  position: relative;
  color: var(--forest);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  opacity: 0.72;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-bottom: 44px;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  padding: 9px 0;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.trust-line {
  display: flex;
  color: #61716d;
  font-size: 12px;
  font-weight: 600;
  gap: 26px;
}

.trust-line span {
  position: relative;
  padding-left: 15px;
}

.trust-line span::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #82ae20;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 510px;
  border-radius: 2px 80px 2px 80px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px 64px 2px 64px;
  content: "";
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(185, 243, 72, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 270px;
  height: 270px;
}

.orbit-two {
  width: 400px;
  height: 400px;
}

.project-card {
  position: absolute;
  z-index: 2;
  display: flex;
  width: min(290px, 74%);
  padding: 19px 20px;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.card-idea {
  top: 72px;
  left: -26px;
}

.card-plan {
  top: 210px;
  right: -20px;
}

.card-build {
  bottom: 54px;
  left: 24px;
}

.card-number {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.project-card small,
.project-card strong {
  display: block;
}

.project-card small {
  margin-bottom: 2px;
  color: #b7c9c4;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.project-card strong {
  font-size: 13px;
}

.visual-seal {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 29px;
  display: grid;
  width: 94px;
  height: 94px;
  place-content: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  text-align: center;
  transform: rotate(8deg);
}

.visual-seal span,
.visual-seal small {
  display: block;
}

.visual-seal span {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.visual-seal small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-heading h2,
.approach h2,
.about-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -2.6px;
  line-height: 1.1;
}

.split-heading > p {
  max-width: 460px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.service-card {
  position: relative;
  min-height: 385px;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.62);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 22px 50px rgba(17, 45, 39, 0.09);
  transform: translateY(-5px);
}

.service-card.featured {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.service-index {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #8b9d98;
  font-size: 11px;
  font-weight: 700;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 63px;
  place-items: center;
  border: 1px solid #b9c5c1;
  border-radius: 50%;
  font-size: 21px;
}

.featured .service-icon {
  border-color: var(--mint);
  color: var(--forest);
  background: var(--mint);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
  letter-spacing: -0.7px;
}

.service-card p {
  color: #5c706b;
  font-size: 14px;
}

.featured p {
  color: #bdcbc7;
}

.service-card ul {
  margin: 25px 0 0;
  padding: 0;
  color: #dce5e2;
  font-size: 12px;
  list-style: none;
}

.service-card li {
  margin-top: 9px;
}

.service-card li::before {
  margin-right: 9px;
  color: var(--mint);
  content: "✓";
}

.approach {
  color: var(--white);
  background: var(--forest);
}

.approach-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
}

.eyebrow.light {
  color: #b9c9c5;
}

.approach-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin: 28px 0 35px;
  color: #b5c6c1;
}

.light-link {
  border-color: #78918a;
  color: var(--white);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 27px 0;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  gap: 22px;
  grid-template-columns: 45px 1fr;
}

.process-list li > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  color: #aebfba;
  font-size: 14px;
}

.about-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 1.05fr 0.95fr;
}

.about-statement {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.about-statement blockquote {
  max-width: 600px;
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 3.7vw, 51px);
  font-weight: 600;
  letter-spacing: -2.2px;
  line-height: 1.25;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin-bottom: 23px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -1.7px;
}

.about-copy > p {
  color: var(--ink-soft);
  font-size: 16px;
}

.founder-line {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 13px;
}

.founder-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.founder-line strong,
.founder-line small {
  display: block;
}

.founder-line small {
  color: #70817c;
}

.contact {
  padding-top: 30px;
}

.contact-card {
  display: grid;
  padding: clamp(42px, 7vw, 82px);
  align-items: center;
  gap: 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 0%, rgba(185, 243, 72, 0.16), transparent 28%),
    var(--forest);
  grid-template-columns: 1fr 0.9fr;
}

.contact-card h2 {
  max-width: 620px;
  margin-bottom: 22px;
}

.contact-card > div:first-child > p:last-child {
  margin: 0;
  color: #b6c6c2;
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link {
  display: grid;
  padding: 22px 5px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 14px;
  grid-template-columns: 53px 1fr 20px;
}

.contact-link > span {
  color: #a7bab5;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 15px;
}

.contact-link b {
  color: var(--mint);
  font-size: 19px;
  transition: transform 0.2s ease;
}

.contact-link:hover b,
.contact-link:focus-visible b {
  transform: translate(3px, -3px);
}

.site-footer {
  padding: 52px 0;
  background: var(--cream);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  color: #657772;
  font-size: 12px;
}

.footer-brand {
  flex: 0 0 auto;
}

.footer-brand .brand-logo {
  width: 180px;
}

:focus-visible {
  outline: 3px solid #7ba319;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .approach-grid,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-copy {
    max-width: 730px;
  }

  .hero-visual {
    width: min(100%, 580px);
    margin-inline: auto;
  }

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

  .service-card.featured {
    grid-row: span 2;
  }

  .approach-grid,
  .about-grid {
    gap: 60px;
  }

  .about-statement {
    padding: 0 0 55px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-card {
    gap: 50px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand-logo {
    width: 176px;
  }

  .nav-wrap > .button {
    display: none;
  }

  .hero {
    padding: 128px 0 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.2vw, 61px);
    letter-spacing: -3px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .trust-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    min-height: 435px;
    border-radius: 2px 48px 2px 48px;
  }

  .project-card {
    width: calc(100% - 45px);
  }

  .card-idea {
    top: 56px;
    left: -7px;
  }

  .card-plan {
    top: 175px;
    right: -7px;
  }

  .card-build {
    bottom: 43px;
    left: -7px;
  }

  .visual-seal {
    right: 18px;
    bottom: -25px;
    width: 82px;
    height: 82px;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading {
    gap: 28px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 43px;
  }

  .approach-grid,
  .about-grid {
    gap: 50px;
  }

  .contact-card {
    width: 100%;
  }

  .contact-link {
    grid-template-columns: 1fr 20px;
  }

  .contact-link > span {
    grid-column: 1 / -1;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-visual,
  .contact {
    display: none;
  }

  .hero,
  .section,
  .approach {
    padding: 30px 0;
  }

  .approach {
    color: var(--ink);
    background: transparent;
  }
}
