:root {
  --ink: #101312;
  --ink-soft: #1b1b19;
  --paper: #f2efe8;
  --paper-deep: #e5ded2;
  --lime: #d46a3a;
  --mint: #7892a4;
  --white: #fffaf3;
  --muted-dark: #5f625e;
  --muted-light: #b9b4aa;
  --line-dark: rgba(16, 19, 18, 0.18);
  --line-light: rgba(242, 239, 232, 0.18);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.site-header {
  width: min(100% - 48px, 1240px);
  min-height: 90px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.nav a {
  position: relative;
  padding: 34px 0 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: 64px;
  padding-bottom: 72px;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6.8vw, 102px);
  font-weight: 600;
  line-height: 0.93;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 36px;
  color: var(--muted-dark);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-primary:hover {
  background: #1c2b25;
}

.button-text {
  padding-inline: 6px;
}

.button-text span,
.text-link span,
.contact-details a span {
  transition: transform 180ms ease;
}

.button-text:hover span,
.text-link:hover span,
.contact-details a:hover span {
  transform: translate(3px, -3px);
}

.hero-portrait {
  position: relative;
  margin: 0;
  padding: 20px;
  background: var(--ink-soft);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--lime);
  z-index: -1;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credit-line {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.credit-line-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  align-items: center;
}

.credit-line p {
  margin: 0;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credit-line ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 600;
}

.section-space {
  padding-top: clamp(96px, 12vw, 168px);
  padding-bottom: clamp(96px, 12vw, 168px);
}

.section-heading h2,
.featured-heading h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.98;
}

.approach {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 10vw, 160px);
  border-bottom: 1px solid var(--line-dark);
}

.approach-copy {
  max-width: 650px;
  padding-top: 2px;
  color: var(--muted-dark);
  font-size: 17px;
}

.approach-copy .lead {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.services .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.services .section-heading h2 {
  max-width: 730px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.service-card {
  min-height: 280px;
  padding: 30px 32px 36px 0;
  border-right: 1px solid var(--line-dark);
}

.service-card + .service-card {
  padding-left: 32px;
}

.service-card:last-child {
  border-right: 0;
}

.service-card > span {
  display: block;
  margin-bottom: 72px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.service-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 15px;
}

.featured {
  border-top: 1px solid var(--line-dark);
}

.featured-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px 20px;
}

.featured-card {
  margin: 0;
}

.featured-card-wide {
  grid-row: span 2;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 240ms ease;
}

.featured-card-wide img {
  height: calc(100% - 40px);
  min-height: 620px;
}

.featured-card:hover img,
.artist-tile:hover img {
  filter: saturate(1);
}

.featured-card h3 {
  margin: 12px 0 0;
  font-size: 16px;
}

.press-feature {
  padding: clamp(88px, 11vw, 148px) 0;
  background: var(--ink);
  color: var(--paper);
}

.press-feature-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 10vw, 160px);
}

.press-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 6px;
}

.press-meta > p:last-child {
  margin: 0;
  color: var(--muted-light);
  font-size: 12px;
}

.press-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 600;
  line-height: 0.95;
}

.press-copy > p {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted-light);
  font-size: clamp(17px, 1.8vw, 22px);
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--paper);
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.press-link span {
  transition: transform 180ms ease;
}

.press-link:hover span {
  transform: translate(3px, -3px);
}

.contact-cta {
  background: var(--lime);
  color: var(--ink);
}

.contact-cta-inner {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.contact-cta h2 {
  margin: 0;
  font-size: clamp(50px, 7vw, 94px);
  font-weight: 600;
  line-height: 0.94;
}

.button-light {
  flex: 0 0 auto;
  min-width: 170px;
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-dark);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Artists */
.artists-page {
  padding-bottom: clamp(96px, 12vw, 168px);
}

.artists-intro {
  padding-top: clamp(86px, 10vw, 144px);
  padding-bottom: clamp(70px, 8vw, 112px);
}

.artists-intro h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 9vw, 126px);
  font-weight: 600;
  line-height: 0.9;
}

.artists-intro > p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(18px, 2vw, 24px);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 18px;
}

.artist-tile {
  margin: 0;
}

.artist-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 240ms ease;
}

.artist-tile img[alt="Grace Carter"],
.artist-tile img[alt="Leigh-Anne Pinnock"] {
  object-position: center top;
}

.artist-tile h3 {
  margin: 12px 0 0;
  font-size: 15px;
  letter-spacing: -0.015em;
}

.artist-role {
  margin: 4px 0 0;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.photo-credit {
  margin: 58px 0 0;
  color: var(--muted-dark);
  font-size: 10px;
  line-height: 1.6;
}

.photo-credit a {
  text-underline-offset: 2px;
}

.contact-cta-compact .contact-cta-inner {
  min-height: 390px;
}

.contact-cta-compact h2 {
  font-size: clamp(48px, 6vw, 82px);
}

/* Contact */
.contact-page {
  background: var(--ink);
  color: var(--paper);
}

.contact-page .site-header {
  border-bottom-color: var(--line-light);
}

.contact-page .brand {
  color: var(--paper);
}

.contact-page .brand img {
  filter: none;
}

.contact-page .nav a::after {
  background: var(--paper);
}

.contact-main {
  min-height: calc(100vh - 204px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 11vw, 180px);
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-intro h1 {
  margin-bottom: 36px;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 600;
  line-height: 0.9;
}

.contact-intro > p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: clamp(17px, 1.8vw, 22px);
}

.contact-details {
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.contact-details > p:first-child {
  margin-bottom: 14px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--mint);
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 600;
  text-decoration: none;
}

.response-note {
  margin: 42px 0 0;
  color: var(--muted-light);
  font-size: 13px;
}

.contact-page .site-footer {
  border-top: 1px solid var(--line-light);
  color: var(--muted-light);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.75fr;
    gap: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 7vw, 72px);
  }

  .credit-line-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 28px;
  }

  .credit-line ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell,
  .site-header {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    min-height: 76px;
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    padding-block: 28px 24px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 13vw, 74px);
  }

  .hero-portrait {
    width: calc(100% - 18px);
    max-width: 540px;
    margin-left: 0;
  }

  .approach,
  .contact-main,
  .press-feature-inner {
    grid-template-columns: 1fr;
  }

  .press-meta {
    display: block;
  }

  .press-meta > p:last-child {
    margin-top: -8px;
  }

  .services .section-heading,
  .featured-heading,
  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card + .service-card {
    min-height: auto;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .service-card > span {
    margin-bottom: 36px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card-wide {
    grid-row: auto;
  }

  .featured-card-wide img {
    height: auto;
    min-height: 0;
  }

  .contact-cta-inner {
    min-height: 430px;
    justify-content: center;
  }

  .contact-main {
    gap: 72px;
    align-content: center;
  }

  .artist-grid {
    gap: 34px 12px;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-top: 18px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav a {
    padding-block: 14px 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .artist-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .artist-tile h3 {
    font-size: 16px;
  }

  .site-footer {
    min-height: 130px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
