/* ==============================================================
   EASY EDIT AREA
   Change the values below to alter colours, widths and hero size.
   You do not need to edit the rest of this file for normal changes.
   ============================================================== */
:root {
  --background: #f5f0e8;
  --text: #0b293b;
  --orange: #f15424;
  --blue: #1435A6;
  --line: rgba(11, 41, 59, 0.18);

  --page-width: 1280px;
  --hero-image-width: 535px;
  --title-size: 99px;
  --title-overlap: 115px;
}

/* ==============================================================
   BASIC PAGE SETUP
   ============================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
.page-width {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.small-label,
.role-line,
.header-link,
.header-role,
.menu-button {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.045em;
}

/* ==============================================================
   HEADER
   ============================================================== */
.site-header {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header-link,
.header-role {text-underline-offset: 3px; }
.header-role { justify-self: center; }
.menu-button {
  justify-self: end;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 11px 20px;

}

/* ==============================================================
   HERO
   Important: the title overlaps the image because .hero-text has
   a higher z-index and a negative right margin.
   ============================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr var(--hero-image-width);
  align-items: center;
  min-height: 680px;
  padding: 10px 0 40px;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-right: calc(var(--title-overlap) * -1);
  padding-left: 92px;
}
.role-line {
  margin: 0 0 20px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Instrument Serif", serif;
  font-size: var(--title-size);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.hero h1 em {
  color: var(--blue);
  font-weight: 400;
}
.intro-text {
  width: min(510px, 100%);
  margin: 34px 0 28px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}
.main-button {
  position: relative;
  width: 265px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border: 2px solid var(--text);
  border-radius: 9px;
  background: var(--background);
  font-weight: 600;
}
.main-button::after {
  content: "";
  position: absolute;
  inset: 7px -8px -9px 7px;
  z-index: -1;
  border-radius: 9px;
  background: var(--text);
} 

.main-button{
    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.main-button:hover{
    background: var(--blue);
    border-color: var(--blue);
    color: white;
}

.main-button:hover .button-arrow{
    color: white;
}
.hero-image {
  position: relative;
  z-index: 1;
  width: var(--hero-image-width);
  height: auto;
  margin: 0;

  /* The border and rounded shape are already inside the PNG */
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* ==============================================================
   QUESTIONS
   ============================================================== */
.question-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0 30px;
}
.question-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.small-label {
  margin: 0;
  color: #666a6d;
  text-transform: uppercase;
}
.ask-button {
  border: 1px solid rgba(241, 84, 36, 0.55);
  background: transparent;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
}
.ask-button span { color: var(--orange); margin-left: 18px; }
.question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}


.question-grid button {
  position: relative;
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;

  padding: 16px 20px 12px 0;
  margin-right: 20px;

  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;

  text-align: left;
  line-height: 1.35;
  cursor: pointer;

  transition: color .25s ease;
}

.question-grid button:last-child {
  border-right: 0;
  margin-right: 0;
}

/* Text */
.question-grid button span {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: color .25s ease;
}

/* Orange indicator */
.question-grid button span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;

  width: 0;
  height: 2px;

  background: var(--orange);
  transition: width .25s ease;
}

/* Hover */
.question-grid button:hover {
  color: var(--blue);
}

.question-grid button:hover span::before {
  width: 28px;
}

/* Active */
.question-grid button.active {
  color: var(--blue);
  font-weight: 500;
}

.question-grid button.active span::before {
  width: 42px;
}

/* Arrow */
.question-grid button b {
  flex-shrink: 0;
  color: var(--orange);
  font-size: 16px;
  font-weight: 400;

  transition: transform .2s ease;
}

.question-grid button:hover b,
.question-grid button.active b {
  transform: translateX(3px);
}

/* Answer */

.prompt-answer {
  display: grid;
  grid-template-rows: 0fr;

  max-width: 820px;
  margin-top: 0;
  padding: 0 18px;
  border-left: 3px solid transparent;

  opacity: 0;
  transform: translateY(-4px);

  transition:
    grid-template-rows 0.35s ease,
    opacity 0.25s ease,
    transform 0.35s ease,
    margin-top 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease;
}

.prompt-answer > * {
  overflow: hidden;
}

.prompt-answer.open {
  grid-template-rows: 1fr;

  margin-top: 18px;
  padding: 14px 18px;
  border-left-color: var(--orange);

  opacity: 1;
  transform: translateY(0);
}

.prompt-answer h3 {
  margin: 0 0 6px;
  font: 400 28px/1.05;
}

.prompt-answer p {
  margin: 0;
  line-height: 1.55;
}

.prompt-answer a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  text-decoration: underline;
}
/* ==============================================================
   WORK
   ============================================================== */


.organisations {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.organisations .eyebrow {
  margin: 0 0 28px;

  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .045em;
  text-transform: uppercase;

  color: #666a6d;
}

.organisation-image-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.organisation-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}



.work { padding: 74px 0; }
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
}
.case-visual {
  height: 250px;
  display: grid;
  place-items: center;
  color: white;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.orange-card .case-visual { background: var(--orange); }
.blue-card .case-visual { background: var(--blue); }
.sand-card .case-visual { background: #b99c7c; }
.case-copy { padding: 22px; }
.case-copy p { margin: 0 0 8px; color: var(--orange); font: 500 11px "DM Mono"; }
.case-copy h2 { margin: 0 0 10px; font: 400 32px/1 "Instrument Serif"; }
.case-copy span { font-size: 14px; line-height: 1.55; }

/* ==============================================================
   ABOUT & FOOTER
   ============================================================== */
.about {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 50px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.about h2 { margin: 0 0 14px; font: 400 56px/0.95 "Instrument Serif"; }
.about p:last-child { max-width: 650px; margin: 0; font-size: 18px; line-height: 1.6; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
footer div { display: flex; gap: 24px; }

/* ==============================================================
   DIALOG
   ============================================================== */
.ai-dialog {
  width: min(700px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--background);
  color: var(--text);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.ai-dialog::backdrop { background: rgba(6, 25, 37, 0.45); }
.dialog-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.dialog-header button { border: 0; background: transparent; font-size: 26px; cursor: pointer; }
.dialog-content { padding: 32px; }
.dialog-content h2 { margin: 0 0 20px; font: 400 44px/1 "Instrument Serif"; }
.dialog-form { display: flex; padding: 7px; border: 1px solid var(--line); border-radius: 10px; }
.dialog-form input { flex: 1; min-width: 0; padding: 12px; border: 0; outline: 0; background: transparent; }
.dialog-form button { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--text); color: white; cursor: pointer; }
.ai-answer { margin-top: 22px; padding-left: 18px; border-left: 3px solid var(--orange); }
.ai-answer h3 { margin: 0 0 8px; font: 400 30px/1.05 "Instrument Serif"; }
.ai-answer p { line-height: 1.55; }
.ai-answer a { color: var(--blue); text-decoration: underline; }

/* ==============================================================
   TABLET
   ============================================================== */
@media (max-width: 1000px) {
  :root {
    --title-size: 66px;
    --hero-image-width: 440px;
    --title-overlap: 80px;
  }
  .hero-text { padding-left: 30px; }
  .question-grid { grid-template-columns: 1fr 1fr; }
  .question-grid button { border-bottom: 1px solid var(--line); }
  .work-grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   MOBILE
   ============================================================== */
@media (max-width: 760px) {
  :root { --title-size: 54px; }
  .page-width { width: min(calc(100% - 28px), var(--page-width)); }
  .site-header { min-height: 70px; grid-template-columns: 1fr auto; }
  .header-role { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding: 35px 0 55px; }
  .hero-text { margin-right: 0; padding-left: 0; }
  .hero-image { width: 100%; height: min(115vw, 570px); margin-top: 38px; }
  .question-grid { grid-template-columns: 1fr; }
  .question-grid button { margin-right: 0; border-right: 0; }
  .question-topline { align-items: flex-start; }
  .ask-button { padding: 10px 14px; }
  .about { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
/* ==============================================================
   CASE STUDIES — REUSABLE SYSTEM
   All portfolio cases use these shared primitives. No case CSS.
   ============================================================== */

.case-page {
  overflow-x: hidden;
}

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

.case-page h1,
.case-page h2,
.case-page h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -.04em;
}

.case-page em {
  color: var(--blue);
  font-weight: 400;
}

.case-shell {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
}

.case-page .site-header {
  border-bottom: 1px solid var(--line);
}


/* Labels */

.case-kicker,
.case-eyebrow,
.case-meta dt,
.case-number,
.case-caption-label,
.case-result b {
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.case-kicker,
.case-number,
.case-result b {
  color: var(--orange);
}

.case-eyebrow,
.case-caption-label {
  color: #666a6d;
}


/* Hero */

.case-hero {
  padding: 96px 0 90px;
}

.case-hero h1 {
  max-width: 1120px;
  margin: 24px 0 58px;
  font-size: clamp(68px, 8.2vw, 118px);
  line-height: .89;
}

.case-hero-bottom {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 90px;
  align-items: end;
}

.case-lede {
  max-width: 740px;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.case-meta {
  margin: 0;
}

.case-meta div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.case-meta dt,
.case-meta dd {
  margin: 0;
}

.case-meta dd {
  font-size: 13px;
  line-height: 1.45;
}


/* TL;DR */

.case-tldr {
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-tldr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 25px;
}

.case-tldr-grid b {
  display: block;
  margin-bottom: 8px;
  font: 500 12px "DM Mono";
  letter-spacing: .06em;
  color: var(--orange);
}

.case-tldr-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}


/* Main case sections */

.case-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.case-intro {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.case-intro h2,
.case-heading h2 {
  margin: 13px 0 0;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: .98;
}

.case-body {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.65;
}

.case-body p {
  margin-bottom: 22px;
}

.case-statement {
  max-width: 960px;
  margin: 100px 0 0;
  font: 400 clamp(36px, 4vw, 56px)/1.06 "Instrument Serif", serif;
  letter-spacing: -.035em;
}

.case-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.case-heading > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.62;
}


/* Artefacts */

.case-artifact {
  margin: 0;
}

.case-artifact img {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  background: white;
}

.case-artifact figcaption {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 36px;
  padding-top: 18px;
}

.case-artifact figcaption p {
  max-width: 700px;
  margin: 0;
  color: #666a6d;
  font-size: 14px;
  line-height: 1.55;
}

.case-artifact figcaption strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 15px;
}


/* Proof / client evidence */

.case-proof {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 80px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.case-proof:first-of-type {
  border-top: 1px solid var(--text);
}

.case-proof-meta {
  font: 500 10px/1.55 "DM Mono";
  letter-spacing: .065em;
  text-transform: uppercase;
}

.case-proof-meta span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
}

.case-proof h3 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.04;
}

.case-proof-copy {
  max-width: 760px;
}

.case-proof-copy > p {
  font-size: 16px;
  line-height: 1.65;
}

.case-result {
  max-width: 900px;
  margin-top: 28px;
  padding-top: 20px;
}

.case-result p {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.case-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.case-flow i {
  font-style: normal;
  color: var(--orange);
}


/* Dark sections */

.case-dark {
  background: var(--text);
  color: var(--background);
}

.case-dark .case-eyebrow {
  color: rgba(245, 240, 232, .58);
}

.case-dark em,
.case-dark strong {
  color: #ff7852;
}

.case-signals {
  margin-top: 48px;
}

.case-signal {
  display: grid;
  grid-template-columns: 1fr 50px 1.15fr;
  gap: 25px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 240, 232, .22);
}

.case-signal > p {
  margin: 0;
  font: 400 26px/1.15 "Instrument Serif";
}

.case-signal > span {
  color: #ff7852;
  font-size: 24px;
  text-align: center;
}

.case-signal div p {
  margin: 3px 0 0;
  color: rgba(245, 240, 232, .72);
  font-size: 14px;
  line-height: 1.5;
}


/* Steps */

.case-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 45px;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.case-steps article {
  padding: 25px 20px 28px;
  border-right: 1px solid var(--line);
}

.case-steps article:last-child {
  border-right: 0;
}

.case-steps small {
  font: 500 10px "DM Mono";
  color: var(--blue);
}

.case-steps h3 {
  margin: 8px 0;
  font-size: 27px;
}

.case-steps p {
  margin: 0;
  color: #666a6d;
  font-size: 13px;
  line-height: 1.5;
}


/* Closing */

.case-closing {
  padding: 92px 0 105px;
  border-top: 1px solid var(--line);
}

.case-closing h2 {
  max-width: 960px;
  margin: 15px 0 32px;
  font-size: clamp(46px, 4.8vw, 68px);
  line-height: .98;
}

.case-closing > .case-shell > p:not(.case-eyebrow) {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
}

.case-closing .case-flow {
  max-width: 1080px;
  margin-top: 30px;
}

.case-closing .case-result {
  max-width: 900px;
  margin-top: 24px;
}


/* Footer */

.case-footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  font: 500 11px "DM Mono";
  letter-spacing: .05em;
}


/* Tablet */

@media (max-width: 900px) {
  .case-hero-bottom,
  .case-intro,
  .case-proof {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-tldr-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-steps {
    grid-template-columns: 1fr;
  }

  .case-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}


/* Mobile */

@media (max-width: 760px) {
  .case-hero {
    padding: 58px 0 70px;
  }

  .case-hero h1 {
    font-size: 58px;
  }

  .case-section {
    padding: 76px 0;
  }

  .case-artifact figcaption,
  .case-signal {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-signal > span {
    width: 30px;
    text-align: left;
    transform: rotate(90deg);
  }

  .case-proof {
    padding: 45px 0;
  }

  .case-footer {
    flex-direction: column;
    gap: 14px;
  }
}
/* HERO TL;DR */
.case-hero-tldr {
  max-width: 740px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.case-hero-tldr .case-eyebrow {
  margin-bottom: 10px;
}
.case-hero-tldr ul {
  margin: 0;
  padding-left: 20px;
}
.case-hero-tldr li {
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.55;
}

/* ING evidence compositions */
.evidence-stage{
  display:grid;
  grid-template-columns:minmax(240px,.38fr) minmax(0,1fr);
  gap:56px;
  align-items:start;
  margin:56px 0 88px;
}
.evidence-stage .evidence-copy{
  position:sticky;
  top:110px;
  padding-top:8px;
}
.evidence-stage .evidence-copy h3{
  margin:12px 0 16px;
  font-size:clamp(28px,3vw,44px);
  line-height:1.04;
  font-weight:500;
}
.evidence-stage .evidence-copy>p:last-child{
  margin:0;
  max-width:34rem;
  font-size:15px;
  line-height:1.7;
}
.evidence-stage figure{
  margin:0;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f4f2ef;
}
.evidence-stage img{
  display:block;
  width:100%;
  height:auto;
}
.case-dark .evidence-stage figure{
  border-color:rgba(255,255,255,.16);
}
@media (max-width:900px){
  .evidence-stage{
    grid-template-columns:1fr;
    gap:24px;
    margin:40px 0 64px;
  }
  .evidence-stage .evidence-copy{
    position:static;
  }
}

/* ==============================================================
   HOMEPAGE — SELECTED WORK / ABOUT
   ============================================================== */

.work-showcase {
  padding: 96px 0 118px;
  border-top: 1px solid var(--line);
}

.work-showcase .section-heading {
  margin-bottom: 36px;
}

.work-project {
  min-width: 0;
}

.work-feature,
.work-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--text);
  color: white;
}

.work-feature {
  aspect-ratio: 16 / 6.5;
}

.work-tile {
  aspect-ratio: 4 / 3;
}

.work-feature > img,
.work-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  opacity: 70%;
}

.work-feature::after,
.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,25,37,.88) 0%, rgba(6,25,37,.35) 48%, rgba(6,25,37,.05) 100%);
  pointer-events: none;
}

.work-feature:hover img,
.work-tile:hover img {
  transform: scale(1.025);
  opacity: 10%;
}

.work-feature-copy,
.work-tile-copy {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
}

.work-feature-copy {
  display: grid;
  grid-template-columns: 1fr minmax(300px,.8fr);
  gap: 48px;
  align-items: end;
}

.work-label {
  margin: 0 0 10px;
  color: rgba(255,255,255,.90);
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.work-feature h2,
.work-tile h2 {
  margin: 0;
  color: white;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

.work-feature h2 {
  max-width: 680px;
  font-size: clamp(44px,5vw,70px);
  line-height: .98;
}

.work-tile h2 {
  margin-bottom: 9px;
  font-size: clamp(34px,3.5vw,50px);
  line-height: 1;
}

.work-feature-copy > p:last-child,
.work-tile-copy > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}

.work-feature-arrow,
.work-tile-arrow {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 26px;
  font-size: 22px;
}

.work-project-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 4px 24px;
  font: 500 13px/1.2 "DM Mono", monospace;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.work-project-meta span:first-child {
  color: #aaa6a1;
}

.work-project-meta span:last-child {
  color: var(--text);
  text-align: right;
}

.work-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(280px,.65fr) minmax(210px,.45fr);
  gap: 64px;
  align-items: end;
  padding: 110px 0 125px;
  border-top: 1px solid var(--line);
}

.about-editorial h2 {
  max-width: 760px;
  margin: 14px 0 22px;
  font: 400 clamp(44px,6.8vw,96px)/.91 "Instrument Serif", serif;
  font-size: 58px;
  letter-spacing: -.045em;
}

.about-editorial .about-intro {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
}

.about-facts {
  margin: 0;
  padding-left: 20px;
  font: 500 15px/1.55 "DM Mono", monospace;
}

.about-facts li {
  margin-bottom: 8px;
}

.about-meta {
  align-self: end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-meta p {
  margin: 0 0 10px;
  font: 500 11px/1.55 "DM Mono", monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-meta a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .work-feature-copy,
  .about-editorial {
    grid-template-columns: 1fr;
  }

  .work-feature-copy {
    gap: 16px;
  }

  .about-editorial {
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .work-showcase {
    padding: 72px 0 84px;
  }

  .work-feature,
  .work-tile {
    aspect-ratio: auto;
    min-height: 390px;
  }

  .work-feature {
    min-height: 460px;
  }

  .work-pair {
    grid-template-columns: 1fr;
  }

  .work-feature-copy,
  .work-tile-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .work-project-meta {
    padding: 12px 2px 22px;
    font-size: 11px;
  }

  .about-editorial {
    padding: 80px 0 90px;
  }
}
