:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #63706a;
  --line: #d8ded8;
  --paper: #f7f8f4;
  --soft: #eef2ec;
  --accent: #315c52;
  --glow: #c8ddd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 70% 10%, rgba(200, 221, 212, 0.55), transparent 28rem),
    linear-gradient(180deg, #fbfbf7 0%, var(--paper) 100%);
  color: var(--ink);
}

main {
  min-height: 100vh;
}

.inner {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
  padding: 88px 0 64px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.96;
  font-weight: 500;
}

.lede {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.38;
}

.frame {
  position: relative;
  height: 420px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(24, 32, 29, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 32, 29, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  overflow: hidden;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(49, 92, 82, 0.25);
}

.line,
.trace {
  position: absolute;
  left: 64px;
  height: 1px;
  background: var(--accent);
  opacity: 0.62;
}

.line {
  top: 118px;
  width: 212px;
}

.line.short {
  top: 178px;
  width: 128px;
}

.line.mid {
  top: 256px;
  width: 174px;
}

.node {
  position: absolute;
  top: 164px;
  left: 242px;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--accent);
  background: rgba(247, 248, 244, 0.88);
}

.trace {
  top: 298px;
  left: 112px;
  width: 186px;
  transform: rotate(-34deg);
  transform-origin: left center;
}

section {
  padding: 84px 0;
}

.band,
.contact {
  background: rgba(238, 242, 236, 0.58);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.two {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
}

h2 {
  font-size: 15px;
  line-height: 1.2;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.two p,
article p {
  max-width: 720px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

article span {
  display: block;
  margin-bottom: 34px;
  color: rgba(49, 92, 82, 0.58);
  font-size: 13px;
}

article p {
  font-size: 18px;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two,
  .columns {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
    padding-top: 72px;
  }

  .frame {
    height: 280px;
  }

  section {
    padding: 60px 0;
  }

  .two p,
  article p {
    font-size: 18px;
  }
}
