:root {
  /* Palette sampled from Danielle's portrait */
  --ink: #261f1d;       /* deep espresso */
  --paper: #f2e9e4;     /* warm blush */
  --white: #fffaf6;     /* soft cream */
  --acid: #aeb98f;      /* garden sage */
  --lavender: #d8bcb4;  /* blazer blush */
  --orange: #b96f63;    /* muted terracotta */
  --pink: #c9828d;      /* dusty rose */
  --line: rgba(38, 31, 29, 0.22);
  --muted: #6d615c;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: rgba(242, 233, 228, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.wordmark {
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-header nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-header nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover,
.site-header nav a:focus-visible { border-bottom-color: currentColor; }

.hero {
  min-height: 82vh;
  padding: clamp(72px, 10vw, 140px) 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eyebrow,
.section-number {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1060px;
  margin: 28px 0 70px;
  font-size: clamp(3.6rem, 9.2vw, 8.7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 900;
}
.mission-statement {
  max-width: 900px;
  margin: 24px 0 56px;
  font-size: clamp(1.55rem, 3vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.035em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
}
.hero-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.hero-intro {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.35;
}
.hero-portrait {
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 12px 12px 0 var(--lavender);
  overflow: hidden;
  transform: rotate(1.5deg);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}
.round-link {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.round-link:hover { transform: translateY(5px); background: var(--acid); color: var(--ink); }

.marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--acid);
  white-space: nowrap;
}
.marquee div {
  width: max-content;
  padding: 18px 0;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: drift 24s linear infinite;
}
@keyframes drift { to { transform: translateX(-35%); } }
@media (prefers-reduced-motion: reduce) { .marquee div { animation: none; } }

.approach,
.work,
.resources,
.contact {
  padding-block: clamp(80px, 10vw, 150px);
}
.approach {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
}
h2 {
  margin: 18px 0 0;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.approach-list { border-top: 2px solid var(--ink); }
.approach-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}
.approach-list span { font-size: 1.25rem; font-weight: 900; }
.approach-list p { margin: 0; font-size: 1.05rem; max-width: 52ch; }

.work {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}
.section-heading { max-width: 920px; margin-bottom: 72px; }
.project-list { border-top: 1px solid rgba(255,255,255,.45); }
.project {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(40px, 8vw, 120px);
  padding: 48px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.project-meta span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}
.project-meta p {
  max-width: 28ch;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.project-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.project-copy > p { max-width: 68ch; font-size: 1.08rem; }
.project-copy .outcome {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 15px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: rotate(-1deg);
}
.project:nth-child(2) .project-meta span { background: var(--lavender); color: var(--ink); }
.project:nth-child(3) .project-meta span { background: var(--orange); color: var(--ink); }
.project:nth-child(4) .project-meta span { background: var(--pink); color: var(--ink); }
.project:nth-child(5) .project-meta span { background: var(--acid); color: var(--ink); }

.resources {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}
.resource-copy > p:not(.section-number):not(.licence) {
  max-width: 58ch;
  margin: 30px 0;
  font-size: 1.08rem;
}
.button {
  display: inline-block;
  padding: 15px 20px;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 6px 6px 0 var(--orange);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--orange); }
.licence { color: var(--muted); font-size: .82rem; }
.resource-note {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 58px);
  background: var(--lavender);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(2deg);
}
.resource-note span {
  align-self: flex-start;
  padding: 8px 12px;
  background: var(--acid);
  border: 2px solid var(--ink);
  font-weight: 900;
  letter-spacing: .08em;
}
.resource-note strong {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.resource-note small {
  font-size: 1rem;
  font-weight: 800;
}

.contact {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--orange);
}
.contact h2 { max-width: 1040px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 45px;
  font-size: clamp(1.2rem, 2.3vw, 2rem);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.contact-link span { font-size: 1.4em; }
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.contact-link.secondary {
  opacity: .76;
}
.email-address {
  margin: 20px 0 0;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 30px;
  font-size: .85rem;
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; }

:focus-visible { outline: 3px solid #246bfd; outline-offset: 4px; }

@media (max-width: 800px) {
  :root { --shell: min(100% - 30px, 1180px); }
  .site-header { align-items: flex-start; padding: 15px; }
  .site-header nav { gap: 12px; justify-content: flex-end; }
  .site-header nav a { font-size: .78rem; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero h1 { margin-bottom: 48px; }
  .hero-bottom,
  .approach,
  .project,
  .resources { grid-template-columns: 1fr; }
  .hero-copy { align-items: flex-start; }
  .hero-portrait { max-width: 520px; margin-right: 10px; }
  .round-link { width: 56px; height: 56px; flex: 0 0 auto; }
  .approach-list article { grid-template-columns: 1fr; gap: 8px; }
  .project { gap: 28px; }
  .resource-note { min-height: 320px; margin: 18px 10px 0 0; }
  .site-footer { flex-direction: column; gap: 8px; }
}

.project-emoji {
  display: inline-block;
  margin-right: .12em;
  font-size: .85em;
  line-height: 1;
  vertical-align: .06em;
  filter: saturate(.82);
  transition: transform 180ms ease;
}

.project:hover .project-emoji {
  transform: rotate(-7deg) scale(1.12);
}

