@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap");

:root {
  --ink: #171614;
  --paper: #f5f2ec;
  --white: #fff;
  --line: rgba(23, 22, 20, 0.18);
  --pink: #ef397f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 50%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 70px);
}

.wordmark {
  display: block;
  flex: 0 0 auto;
  width: clamp(108px, 9vw, 150px);
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-contact {
  padding: 9px 14px;
  border: 1px solid var(--ink);
}

.nav-contact::after {
  display: none;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: width 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  width: 100%;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(28px, 7vw, 120px) 70px;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(50px, 6.25vw, 102px);
}

h1 em,
h2 em {
  color: var(--pink);
  font-weight: 500;
}

.hero-intro {
  max-width: 380px;
  margin: 42px 0 30px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.text-link {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 20px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-portrait {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: #a9a49f;
}

.hero-portrait > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.portrait-label {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 5fr;
  padding: clamp(90px, 12vw, 190px) clamp(28px, 7vw, 120px);
}

.section-number {
  padding-top: 38px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-style: italic;
}

.manifesto h2 {
  max-width: 1050px;
  font-size: clamp(46px, 7vw, 112px);
}

.story-columns {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 68px);
  margin: 72px 0 0 auto;
  font-size: 16px;
  line-height: 1.75;
}

.story-columns p {
  margin: 0;
}

.story-columns strong {
  font-weight: 600;
}

.brand-link {
  border-bottom: 1px solid currentColor;
}

.brand-link:hover,
.brand-link:focus-visible {
  color: var(--pink);
}

.current {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  background: var(--ink);
  color: var(--white);
}

.current-visual {
  position: relative;
  overflow: hidden;
}

.current-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.current-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45));
  content: "";
}

.current-visual > a {
  position: absolute;
  z-index: 1;
  bottom: 45px;
  left: 50%;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5vw, 78px);
  font-style: italic;
  white-space: nowrap;
  transform: translateX(-50%);
}

.current-visual > a i {
  font-family: "DM Sans", sans-serif;
  font-size: 0.18em;
  font-style: normal;
  vertical-align: top;
}

.current-copy h2 > a {
  position: relative;
}

.current-copy h2 > a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.current-copy h2 > a:hover::after,
.current-copy h2 > a:focus-visible::after {
  transform: scaleX(1);
}

.current-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 6vw, 100px);
}

.current-copy h2 {
  max-width: 590px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
}

.current-copy .lead {
  max-width: 560px;
  margin: 52px 0 18px;
  font-size: 20px;
  line-height: 1.55;
}

.current-copy > p:not(.eyebrow):not(.lead) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.current-copy .credits {
  margin-bottom: 10px;
}

.current-copy .manager-intro {
  margin: 14px 0 0;
}

.artists {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.artists li {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
}

.artists li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.artists span {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.artists a {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.artists a i {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  opacity: 0.55;
  transition: transform 180ms ease, opacity 180ms ease;
}

.artists a:hover i,
.artists a:focus-visible i {
  opacity: 1;
  transform: translate(3px, -3px);
}

.roles {
  overflow: hidden;
  padding: 100px 0 110px;
  text-align: center;
}

.roles-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 50px);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 76px);
  white-space: nowrap;
}

.roles-line i {
  color: var(--pink);
  font-family: serif;
  font-size: 18px;
  font-style: normal;
}

footer {
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px clamp(28px, 7vw, 120px) 34px;
  background: #e9e2d8;
  text-align: center;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 58px;
  padding: 15px 24px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.instagram-link {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: clamp(58px, 10vw, 160px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.instagram-link::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 3px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.instagram-link:hover::after,
.instagram-link:focus-visible::after {
  transform: scaleX(1);
}

.instagram-link span {
  color: var(--pink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.22em;
  vertical-align: top;
}

.footer-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 70px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    width: 100%;
    height: 76px;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .hero,
  .current {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
    min-height: 620px;
    padding-top: 75px;
  }

  .hero-portrait {
    order: 1;
    min-height: 680px;
  }

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

  .section-number {
    display: none;
  }

  .story-columns {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .current-visual {
    min-height: 580px;
  }

  .roles-line {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-inline: 20px;
  }

  .hero-copy {
    min-height: 560px;
    padding-inline: 22px;
  }

  .hero-portrait {
    min-height: 510px;
  }

  .hero-portrait > img {
    width: 100%;
    object-position: center center;
  }

  .portrait-label span:last-child {
    display: none;
  }

  .manifesto,
  .current-copy {
    padding-inline: 22px;
  }

  .current-visual {
    min-height: 440px;
  }

  .roles {
    padding-inline: 20px;
  }

  .roles-line {
    gap: 14px;
  }

  .footer-meta {
    gap: 20px;
    flex-direction: column;
  }
}

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