:root {
  --ink: #102019;
  --green: #003d20;
  --green-bright: #0d6b3c;
  --paper: #f4f2ec;
  --paper-deep: #e9e5dc;
  --line: rgba(16, 32, 25, 0.2);
  --muted: #5e6862;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
svg { fill: none; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 18px; }

.site-header {
  align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between;
  background: rgba(244, 242, 236, 0.96); margin: 0 auto; max-width: 1500px;
  padding: 24px clamp(24px, 5vw, 80px); position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.wordmark { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.06em; }
.wordmark span, h1 span { color: var(--green-bright); }
nav { align-items: center; display: flex; font-size: 0.82rem; font-weight: 700; gap: clamp(18px, 3vw, 44px); }
nav a { align-items: center; display: inline-flex; gap: 7px; }
.nav-cv { border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.nav-cv svg { height: 15px; width: 15px; }

.hero { margin: 0 auto; max-width: 1500px; padding: 28px clamp(24px, 5vw, 80px) clamp(50px, 5vw, 76px); }
.hero-kicker { display: flex; font-size: 0.72rem; font-weight: 700; justify-content: space-between; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-grid { align-items: end; display: grid; gap: clamp(54px, 8vw, 140px); grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); min-height: clamp(410px, 50vh, 500px); }
.eyebrow { color: var(--green); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.16em; margin: 0 0 20px; text-transform: uppercase; }
h1 { font-size: clamp(4.6rem, 9vw, 8.5rem); font-weight: 700; letter-spacing: -0.085em; line-height: 0.79; margin: 0; }
.hero-intro { border-top: 1px solid var(--ink); padding-top: 24px; }
.hero-intro > p { font-size: clamp(1.25rem, 1.7vw, 1.75rem); letter-spacing: -0.035em; line-height: 1.35; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { align-items: center; border: 1px solid var(--green); display: inline-flex; font-size: 0.82rem; font-weight: 800; gap: 18px; justify-content: space-between; padding: 15px 18px; transition: background 160ms ease, color 160ms ease, transform 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { background: var(--green-bright); }
.button-secondary:hover { background: var(--paper-deep); }

.work-section { background: var(--green); color: white; padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 80px); scroll-margin-top: 76px; }
.section-heading, .work-list, footer > * { margin-left: auto; margin-right: auto; max-width: 1340px; }
.work-section .eyebrow { color: #9cc7ac; }
.section-heading h2, .footer-title h2 { font-size: clamp(2.8rem, 6vw, 6rem); letter-spacing: -0.065em; line-height: 0.96; margin: 0; }
.work-list { border-top: 1px solid rgba(255, 255, 255, 0.35); margin-top: clamp(54px, 7vw, 92px); }
.work-item { align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.28); display: grid; gap: 24px; grid-template-columns: 54px minmax(220px, 0.85fr) minmax(260px, 1fr) auto; padding: 30px 0; }
.work-index, .work-category, .work-status { color: #9cc7ac; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.work-category { margin: 0 0 8px; }
.work-item h3 { font-size: clamp(1.5rem, 2.5vw, 2.35rem); letter-spacing: -0.045em; margin: 0; }
.work-description { color: rgba(255, 255, 255, 0.78); font-size: 0.96rem; line-height: 1.55; margin: 0; max-width: 500px; }
.work-status { text-align: right; }

footer { padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 80px) 32px; scroll-margin-top: 76px; }
.contact-list { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(48px, 7vw, 86px); }
.contact-list a, .location-row { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 14px; grid-template-columns: 22px 1fr auto; min-height: 72px; padding: 8px 18px 8px 0; }
.contact-list > *:not(:last-child) { border-right: 1px solid var(--line); margin-right: 28px; }
.contact-list a:hover span { color: var(--green-bright); }
.icon-text { font-size: 0.78rem; font-weight: 800; letter-spacing: -0.04em; }
.footer-meta { color: var(--muted); display: flex; font-size: 0.68rem; font-weight: 700; justify-content: space-between; letter-spacing: 0.11em; margin-top: 80px; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero-grid { align-items: start; grid-template-columns: 1fr; min-height: auto; padding-top: 110px; }
  .hero-intro { max-width: 620px; }
  .work-item { align-items: start; grid-template-columns: 40px 1fr; }
  .work-description, .work-status { grid-column: 2; text-align: left; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-list > *:not(:last-child) { border-right: 0; margin-right: 0; }
}

@media (max-width: 640px) {
  .site-header { padding: 18px 16px; }
  nav { font-size: 0.68rem; gap: 12px; }
  nav a { gap: 4px; }
  .hero { min-height: auto; }
  .hero-kicker span:first-child { display: none; }
  .hero-kicker { justify-content: flex-end; }
  .hero-grid { gap: 52px; padding-top: 76px; }
  h1 { font-size: clamp(4rem, 22vw, 6rem); }
  .button { width: 100%; }
  .contact-list a, .location-row { font-size: 0.88rem; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 12px; margin-top: 56px; }
}

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