:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #6b7280;
  --faint: #a8b0c0;
  --paper: #f6f5f1;
  --surface: #fffefa;
  --line: rgba(17, 24, 39, 0.12);
  --green: #00a86b;
  --green-soft: rgba(0, 168, 107, 0.12);
  --yellow: #ffc857;
  --orange: #f28c28;
  --navy: #1f304f;
  --display: "Arial Black", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 168, 107, 0.07), transparent 24rem),
    radial-gradient(circle at 95% 82%, rgba(255, 200, 87, 0.1), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image: linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

a {
  color: inherit;
}

.site-shell {
  display: flex;
  flex-direction: column;
  width: min(100% - 48px, 1240px);
  min-height: 100vh;
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  min-height: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  color: var(--faint);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.58rem;
  background: var(--green);
  color: #07140f;
  font-size: 1.1rem;
  letter-spacing: -0.12em;
  box-shadow: 0 0 0 5px rgba(0, 168, 107, 0.08);
}

.brand-dot {
  color: var(--green);
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(0, 168, 107, 0.2);
  border-radius: 999px;
  background: var(--green-soft);
  color: #08784f;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.24rem rgba(0, 168, 107, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.08fr);
  align-items: center;
  flex: 1;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(4rem, 10vh, 8.4rem) 0 clamp(4rem, 8vh, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 33rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.7rem;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  font-size: 1rem;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7.1rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.86;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.intro {
  max-width: 28rem;
  margin: 2.1rem 0 1.9rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid var(--green);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link span {
  color: var(--green);
  font-size: 1.1rem;
}

.text-link:hover {
  gap: 1rem;
  color: #08784f;
}

.text-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(0, 168, 107, 0.38);
  outline-offset: 5px;
}

.construction-art {
  position: relative;
  min-height: min(54vw, 35rem);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 2rem;
  background: linear-gradient(145deg, #fbfaf6 0%, #f0ede5 100%);
  box-shadow: 1.4rem 1.4rem 0 rgba(17, 24, 39, 0.035);
  isolation: isolate;
}

.construction-art::before,
.construction-art::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(0, 168, 107, 0.08);
  filter: blur(1px);
}

.construction-art::before {
  top: -16%;
  right: -4%;
  width: 46%;
  aspect-ratio: 1;
}

.construction-art::after {
  bottom: -23%;
  left: -13%;
  width: 57%;
  aspect-ratio: 1;
  background: rgba(242, 140, 40, 0.08);
}

.sun {
  position: absolute;
  top: 16%;
  right: 13%;
  width: 5.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 1rem rgba(255, 200, 87, 0.14), 0 0 0 2rem rgba(255, 200, 87, 0.07);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.orbit-one {
  top: 13%;
  right: 1%;
  width: 40%;
  height: 19%;
}

.orbit-two {
  top: 18%;
  right: -5%;
  width: 55%;
  height: 31%;
  border-color: rgba(0, 168, 107, 0.25);
}

.crane {
  position: absolute;
  top: 18%;
  left: 15%;
  width: 58%;
  height: 54%;
}

.crane-mast {
  position: absolute;
  bottom: 0;
  left: 21%;
  width: 0.62rem;
  height: 88%;
  background: repeating-linear-gradient(135deg, var(--navy) 0 0.18rem, transparent 0.18rem 0.55rem),
    rgba(31, 48, 79, 0.12);
  border-left: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
}

.crane-arm {
  position: absolute;
  top: 6%;
  left: 18%;
  width: 82%;
  height: 0.55rem;
  background: var(--navy);
  transform-origin: left center;
  transform: rotate(-2deg);
}

.crane-arm::after {
  position: absolute;
  top: 0.55rem;
  left: 2%;
  width: 94%;
  height: 0.45rem;
  content: "";
  background: repeating-linear-gradient(135deg, transparent 0 0.52rem, rgba(31, 48, 79, 0.8) 0.52rem 0.62rem, transparent 0.62rem 1.12rem);
}

.crane-cable {
  position: absolute;
  top: 9%;
  right: 5%;
  width: 1px;
  height: 43%;
  background: var(--navy);
}

.crane-hook {
  position: absolute;
  top: 51%;
  right: 4.2%;
  width: 0.7rem;
  height: 1.15rem;
  border: 2px solid var(--orange);
  border-top: 0;
  border-radius: 0 0 0.6rem 0.6rem;
}

.building {
  position: absolute;
  right: 14%;
  bottom: 9%;
  width: 43%;
  height: 44%;
  padding: 0.85rem 0.8rem 0.6rem;
  border: 3px solid var(--navy);
  border-bottom-width: 0.7rem;
  background: rgba(255, 254, 250, 0.72);
  transform: skewY(-2deg);
}

.building::before,
.building::after {
  position: absolute;
  top: -0.7rem;
  width: 0.4rem;
  height: calc(100% + 0.7rem);
  content: "";
  background: var(--navy);
}

.building::before {
  left: 28%;
}

.building::after {
  right: 28%;
}

.building-floor {
  position: relative;
  z-index: 1;
  height: 20%;
  margin-bottom: 7%;
  border-bottom: 2px solid var(--navy);
}

.building-floor::before,
.building-floor::after {
  position: absolute;
  bottom: 0.48rem;
  width: 0.65rem;
  height: 0.9rem;
  content: "";
  border: 2px solid var(--green);
  background: rgba(0, 168, 107, 0.12);
}

.building-floor::before {
  left: 8%;
}

.building-floor::after {
  right: 8%;
}

.hard-hat {
  position: absolute;
  bottom: 5%;
  left: 11%;
  width: 16%;
  height: 16%;
  transform: rotate(-11deg);
}

.hat-top {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 70%;
  height: 67%;
  border-radius: 55% 55% 25% 25%;
  background: var(--yellow);
  border: 2px solid rgba(17, 24, 39, 0.8);
}

.hat-top::after {
  position: absolute;
  top: 7%;
  left: 46%;
  width: 0.4rem;
  height: 93%;
  content: "";
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.75);
}

.hat-brim {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  height: 20%;
  border: 2px solid rgba(17, 24, 39, 0.8);
  border-radius: 50%;
  background: var(--orange);
}

.art-label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.35rem;
  color: rgba(17, 24, 39, 0.5);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-top: 4.5rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  h1 {
    max-width: 10ch;
  }

  .construction-art {
    min-height: min(75vw, 35rem);
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    min-height: 76px;
  }

  .header-status {
    padding: 0.42rem 0.58rem;
    font-size: 0.58rem;
  }

  .hero {
    gap: 2.75rem;
    padding: 3.5rem 0 3.75rem;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.25rem);
  }

  .intro {
    margin-top: 1.8rem;
  }

  .construction-art {
    min-height: 78vw;
    border-radius: 1.35rem;
  }

  .sun {
    width: 3.6rem;
  }

  .art-label {
    right: 1rem;
    bottom: 0.9rem;
    font-size: 0.52rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    min-height: 88px;
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
