@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&family=Playfair+Display:ital,wght@1,500&display=swap');

:root {
  --ink: #11201c;
  --ink-soft: #42524d;
  --paper: #f2f0e9;
  --paper-dark: #e7e5dc;
  --line: rgba(17, 32, 28, 0.17);
  --green: #79a23a;
  --green-bright: #b6dc58;
  --night: #111b18;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d8d8d2;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100%, 1600px);
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 80px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--ink);
  padding: 7px 0;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.header-contact:hover {
  gap: 24px;
  color: var(--green);
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  padding: 128px clamp(24px, 5vw, 80px) 90px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 32, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 28, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 80%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green);
}

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

h1 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 124px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

h1 em,
h2 em {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 510px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.6;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--ink);
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.action-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: transform 180ms ease, background 180ms ease;
}

.primary-action:hover .action-arrow {
  background: var(--green);
  transform: rotate(45deg);
}

.hero-art {
  position: relative;
  z-index: 1;
  width: min(42vw, 610px);
  aspect-ratio: 1;
  justify-self: center;
}

.art-glow {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: rgba(182, 220, 88, 0.36);
  filter: blur(55px);
}

.hero-symbol {
  position: absolute;
  z-index: 2;
  inset: 9%;
  width: 82%;
  filter: drop-shadow(25px 35px 24px rgba(17, 32, 28, 0.12));
  overflow: visible;
}

.symbol-outline,
.symbol-line {
  fill: none;
  stroke: #1e302a;
  stroke-width: 1.4;
}

.symbol-face {
  stroke: #1e302a;
  stroke-width: 1.2;
}

.symbol-face-left {
  fill: rgba(72, 107, 53, 0.2);
}

.symbol-face-right {
  fill: rgba(111, 145, 56, 0.29);
}

.symbol-top {
  fill: rgba(188, 219, 102, 0.38);
  stroke: #1e302a;
  stroke-width: 1.2;
}

.symbol-node {
  fill: var(--green-bright);
  stroke: var(--ink);
  stroke-width: 1.5;
}

.symbol-node.small {
  fill: var(--paper);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(17, 32, 28, 0.16);
  border-radius: 50%;
}

.orbit-one {
  inset: 2%;
}

.orbit-two {
  inset: 15%;
}

.orbit-three {
  inset: 29%;
}

.orbit-one::after,
.orbit-two::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.orbit-one::after {
  top: 24%;
  right: 6%;
}

.orbit-two::after {
  bottom: 8%;
  left: 24%;
}

.art-label {
  position: absolute;
  margin: 0;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.art-label-one {
  top: 16%;
  left: 3%;
}

.art-label-two {
  top: 50%;
  right: -2%;
}

.art-label-three {
  bottom: 8%;
  left: 16%;
}

.scroll-note {
  position: absolute;
  bottom: 34px;
  left: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-note span {
  display: block;
  width: 1px;
  height: 25px;
  background: var(--green);
}

.capabilities {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
  border-top: 1px solid var(--line);
  padding: 110px clamp(24px, 7vw, 112px) 130px;
  background: #eceae2;
}

.section-number {
  margin-bottom: 42px;
  color: #74817d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.capability-number {
  margin-top: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
}

.capability h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.capability div p {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.capability-icon {
  color: var(--green);
  font-family: var(--serif);
  font-size: 28px;
  text-align: right;
}

.principle {
  padding: 120px clamp(24px, 7vw, 112px) 140px;
}

.principle-copy {
  max-width: 1040px;
  margin-left: auto;
}

.principle h2 {
  margin-bottom: 36px;
  font-family: var(--display);
  font-size: clamp(43px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.principle-copy > p {
  max-width: 520px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.contact {
  position: relative;
  padding: 100px clamp(24px, 8vw, 128px) 115px;
  background: var(--night);
  color: var(--paper);
}

.contact::after {
  position: absolute;
  right: -8%;
  bottom: -45%;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(182, 220, 88, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(182, 220, 88, 0.025), 0 0 0 180px rgba(182, 220, 88, 0.02);
  content: "";
}

.eyebrow.light {
  color: #a8b1ad;
}

.contact h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.contact h2 em {
  color: var(--green-bright);
}

.contact-link {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 570px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #8d9994;
  padding: 12px 0 16px;
  color: var(--paper);
  font-size: clamp(17px, 2vw, 23px);
  text-decoration: none;
}

.contact-link span {
  color: var(--green-bright);
  transition: transform 180ms ease;
}

.contact-link:hover span {
  transform: rotate(45deg);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(242, 240, 233, 0.13);
  padding: 26px clamp(24px, 5vw, 80px);
  background: var(--night);
  color: #a8b1ad;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 145px;
    padding-bottom: 80px;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero-art {
    width: min(86vw, 540px);
    margin-top: 20px;
  }

  .scroll-note {
    display: none;
  }

  .capabilities {
    grid-template-columns: 1fr;
    padding-top: 85px;
  }

  .section-heading h2 {
    max-width: 560px;
  }

}

@media (max-width: 560px) {
  .site-header {
    padding-top: 20px;
  }

  .header-contact {
    width: 34px;
    overflow: hidden;
    border: 0;
    font-size: 0;
  }

  .header-contact span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 14px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 86px);
  }

  .hero-art {
    margin-top: 36px;
  }

  .art-label {
    display: none;
  }

  .capabilities,
  .principle {
    padding-top: 76px;
    padding-bottom: 90px;
  }

  .section-number {
    margin-bottom: 28px;
  }

  .capability {
    grid-template-columns: 28px 1fr;
  }

  .capability-icon {
    display: none;
  }

  .principle-copy > p {
    margin-left: 0;
  }

  .contact {
    padding-top: 78px;
    padding-bottom: 90px;
  }

  .contact h2 {
    margin-bottom: 48px;
  }

  .contact-link {
    font-size: 15px;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .site-footer p:nth-child(2) {
    text-align: left;
  }
}

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

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