:root {
  --cashmere: #f7f3ed;
  --forest: #10271e;
  --green: #52735f;
  --sage: #a9b9ac;
  --cream: #f7f3eb;
  --line: rgba(16, 39, 30, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cashmere); color: var(--forest); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.nav { position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; width: calc(100% - 40px); margin: 0 auto; padding: 24px 0; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.brand > img { width: 38px; height: 38px; object-fit: contain; mix-blend-mode: multiply; }
.wordmark { font-size: 20px; font-weight: 800; letter-spacing: -.055em; text-decoration: none; }
.wordmark span { color: var(--green); }
.nav-links { display: flex; gap: 34px; }
.nav-links a, footer > a:last-child { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.nav-links a:hover, footer > a:last-child:hover { color: var(--green); }
.hero { position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; min-height: calc(100svh - 70px); padding: clamp(48px, 7vw, 100px) 20px 24px; }
.hero-kicker { margin: 0; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-logo { position: absolute; z-index: 1; top: clamp(58px, 7vw, 105px); right: clamp(18px, 4vw, 70px); width: clamp(150px, 23vw, 360px); height: auto; object-fit: contain; mix-blend-mode: multiply; transform: rotate(2deg); }
.hero h1 { position: relative; z-index: 2; margin: 8vh 0; max-width: 1300px; font-size: clamp(64px, 11.2vw, 190px); font-weight: 750; letter-spacing: -.075em; line-height: .78; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero-bottom { position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between; }
.hero-intro { max-width: 420px; margin: 0; font-size: clamp(16px, 1.45vw, 22px); line-height: 1.35; }
.round-link { display: grid; width: 54px; height: 54px; border: 1px solid var(--forest); border-radius: 50%; place-items: center; font-size: 22px; text-decoration: none; transition: .2s ease; }
.round-link:hover { background: var(--forest); color: var(--cashmere); transform: translateY(3px); }
.flight-path { position: absolute; right: -8vw; bottom: 8%; width: clamp(330px, 46vw, 760px); aspect-ratio: 1; border: 1px solid rgba(82,115,95,.38); border-left-color: transparent; border-radius: 50%; transform: rotate(-22deg); }
.flight-dot { position: absolute; top: 17%; right: 8%; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(82,115,95,.12); }
.projects { padding: clamp(80px, 10vw, 150px) 20px; background: var(--forest); color: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: end; margin-bottom: 50px; }
.section-heading p, .about-label { margin: 0 0 8px; color: var(--sage); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-heading h2, .about h2 { margin: 0; font-size: clamp(46px, 7vw, 105px); font-weight: 680; letter-spacing: -.065em; line-height: .9; }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.project-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 520px; padding: 28px; border: 1px solid rgba(247,243,235,.35); transition: transform .25s ease, background .25s ease; }
.project-card:hover { transform: translateY(-5px); }
.project-card--news { background: var(--green); }
.project-card--cycling { background: var(--cashmere); color: var(--forest); }
.card-topline { display: flex; justify-content: space-between; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.card-body h3 { margin: 0 0 20px; font-size: clamp(42px, 5.5vw, 82px); font-weight: 700; letter-spacing: -.065em; line-height: .88; }
.card-body p { max-width: 520px; margin: 0; font-size: 16px; line-height: 1.5; opacity: .82; }
.project-card > a { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.project-card > a span { font-size: 20px; transition: transform .2s ease; }
.project-card > a:hover span { transform: translate(4px, -4px); }
.about { display: grid; grid-template-columns: 1fr 2fr; min-height: 74vh; padding: clamp(90px, 12vw, 180px) 20px; }
.about-copy { max-width: 980px; }
.about-copy p { max-width: 720px; margin: 44px 0 0; font-size: clamp(22px, 3vw, 42px); letter-spacing: -.035em; line-height: 1.12; }
footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; width: calc(100% - 40px); margin: 0 auto; padding: 26px 0 32px; border-top: 1px solid var(--line); }
footer p { margin: 0; color: var(--green); font-size: 11px; text-align: center; }
footer > a:last-child { justify-self: end; }

@media (max-width: 760px) {
  .nav { width: calc(100% - 28px); }
  .nav-links { gap: 18px; }
  .hero { min-height: calc(100svh - 70px); padding-inline: 14px; }
  .brand { gap: 7px; }
  .brand > img { width: 31px; height: 31px; }
  .hero-logo { top: 72px; right: 8px; width: 38vw; max-width: 190px; opacity: .88; }
  .hero h1 { margin-block: 12vh; font-size: clamp(58px, 19vw, 108px); }
  .hero-intro { max-width: 75%; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 430px; }
  .section-heading, .about { grid-template-columns: 1fr; gap: 28px; }
  .about { padding-inline: 14px; }
  footer { grid-template-columns: 1fr auto; width: calc(100% - 28px); gap: 20px; }
  footer p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
