:root {
  --cream: #fff3d6;
  --paper: #fff9ea;
  --ink: #08223b;
  --muted: #58687a;
  --gold: #f2b94b;
  --copper: #b96132;
  --green: #1d775f;
  --line: rgba(8, 34, 59, 0.16);
  --shadow: 0 24px 70px rgba(8, 34, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(8, 34, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 34, 59, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 28px 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
.hero,
.section,
.about,
.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 10px;
}

.brand,
.site-nav,
.hero-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
  font-size: 0.76rem;
}

.site-nav {
  gap: 18px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a,
.text-link,
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 48px;
  align-items: center;
  padding: 56px 0 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 10vw, 7.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: #34495c;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--gold);
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 var(--gold);
}

.hero-art {
  margin: 0;
  padding: clamp(12px, 2vw, 20px);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-art img {
  border-radius: 18px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 16px 0 68px;
  border-block: 2px solid var(--ink);
  background: rgba(255, 249, 234, 0.68);
}

.intro-strip p {
  margin: 0;
  padding: 14px 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.intro-strip p + p {
  border-left: 2px solid var(--ink);
}

.section {
  padding: 0 0 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.section-heading h2 {
  margin-bottom: 14px;
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(29, 119, 95, 0.34);
}

.project p {
  max-width: 760px;
  margin-bottom: 0;
  color: #34495c;
}

.status {
  display: inline-flex;
  min-width: 132px;
  justify-content: center;
  padding: 9px 12px;
  color: var(--paper);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 42px;
  padding: 48px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.about p:last-child {
  margin-bottom: 0;
  color: #34495c;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .section,
  .about,
  .site-footer {
    width: min(100% - 28px, 640px);
  }

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

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 38px;
  }

  .hero-art {
    order: -1;
    transform: none;
  }

  .intro-strip {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .intro-strip p + p {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .section-heading,
  .project,
  .about {
    display: block;
  }

  .status {
    margin-top: 24px;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .brand {
    font-size: 0.82rem;
  }

  .site-nav {
    gap: 14px;
  }

  .project {
    box-shadow: 5px 5px 0 rgba(29, 119, 95, 0.34);
  }
}
