:root {
  --paper: #e8dece;
  --paper-light: #f4eee4;
  --ink: #14233a;
  --muted: #5d6877;
  --line: rgba(20, 35, 58, 0.2);
  --gold: #b28a3e;
  --gold-dark: #8e6a26;
  --navy-soft: #20324f;
  --night: #14233a;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-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;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 10;
  padding: 0.6rem 0.9rem;
  background: var(--night);
  color: var(--paper-light);
  transform: translateY(-130%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width,
.site-header {
  width: min(1160px, calc(100% - 8vw));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-decoration: none;
}

.wordmark span:last-child {
  padding-left: 0.9rem;
}

.header-note,
.header-link,
.eyebrow,
.card-kicker,
.visual-label,
.visual-mark,
.hero-footnote,
.site-footer,
.contact-pill {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.header-note {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.header-link {
  justify-self: end;
  text-decoration: none;
}

.header-link span,
.text-link span,
.button span,
.site-footer a span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 160ms ease;
}

.header-link:hover span,
.text-link:hover span,
.button:hover span,
.site-footer a:hover span {
  transform: translate(0.2rem, -0.1rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(3rem, 10vw, 9rem);
  align-items: center;
  min-height: min(760px, calc(100vh - 5rem));
  padding-top: clamp(4rem, 9vw, 8rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--gold-dark);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  color: var(--gold-dark);
}

h1 {
  max-width: 760px;
  margin-bottom: 1.8rem;
  font-size: clamp(3.25rem, 6.6vw, 6.7rem);
  line-height: 0.92;
}

h1 em,
h2 em {
  color: var(--ink);
  font-style: italic;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 2.2rem;
  color: var(--navy-soft);
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 11rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-light);
}

.button-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  background: var(--paper-light);
}

.hero-art {
  justify-self: end;
  width: min(100%, 520px);
}

.hero-photo {
  position: relative;
  height: clamp(500px, 68vw, 720px);
  overflow: hidden;
  margin: 0;
  background: var(--night);
}

.hero-photo img,
.card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  object-position: center 20%;
}

.hero-footnote {
  margin: 1.3rem 0 0;
  color: var(--muted);
}

.work-section {
  padding-top: clamp(5rem, 11vw, 9rem);
  padding-bottom: clamp(5rem, 11vw, 9rem);
  background: var(--navy-soft);
  color: var(--paper-light);
  border-top: 1px solid var(--line);
}

.work-section .eyebrow,
.work-section h2 {
  color: var(--gold);
}

.work-section h2 em {
  color: var(--gold);
}

.work-section .section-heading > p:last-child {
  color: rgba(244, 238, 228, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1.1fr);
  column-gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.section-heading > p:last-child {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  align-items: stretch;
}

.work-card {
  background: var(--paper-light);
  color: var(--ink);
}

.work-card:not(.work-card-feature) {
  display: flex;
  flex-direction: column;
}

.work-card:not(.work-card-feature) .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.work-card:not(.work-card-feature) .text-link {
  margin-top: auto;
}

.work-card-feature {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.65fr) minmax(250px, 0.85fr);
}

.card-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.work-card-feature .card-visual {
  min-height: 390px;
}

.work-card-feature .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 3rem);
}

.work-card-feature .text-link {
  margin-top: auto;
}

.conversation-visual {
  background: var(--night);
}

.song-visual {
  background: var(--night);
}

.film-visual {
  background: #c9bca8;
  color: var(--ink);
}

.photo-visual {
  background: var(--night);
  color: var(--ink);
}

.visual-label,
.visual-mark,
.image-label {
  position: absolute;
  z-index: 2;
  margin: 0;
}

.image-label {
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.image-label-light {
  color: var(--paper-light);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.visual-label {
  top: 1.1rem;
  left: 1.1rem;
}

.visual-mark {
  right: 1.1rem;
  bottom: 1.1rem;
}

.sound-wave {
  position: absolute;
  right: 10%;
  bottom: 18%;
  left: 10%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 43%;
}

.sound-wave i {
  display: block;
  flex: 1;
  min-width: 2px;
  height: 30%;
  border-radius: 999px;
  background: var(--paper-light);
}

.sound-wave i:nth-child(2),
.sound-wave i:nth-child(8) {
  height: 62%;
}

.sound-wave i:nth-child(3),
.sound-wave i:nth-child(7) {
  height: 100%;
}

.sound-wave i:nth-child(4),
.sound-wave i:nth-child(6) {
  height: 48%;
}

.sound-wave i:nth-child(5) {
  height: 82%;
}

.film-window {
  position: absolute;
  inset: 25% 18% 14%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(44, 43, 39, 0.5);
  background: linear-gradient(150deg, rgba(241, 236, 227, 0.65), rgba(145, 79, 58, 0.42));
  box-shadow: inset 0 0 0 10px rgba(241, 236, 227, 0.25);
  text-align: center;
  text-transform: uppercase;
}

.film-window span {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 0.9;
}

.card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.card-kicker {
  margin-bottom: 0.75rem;
  color: var(--gold-dark);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 0.95;
}

.card-body > p:not(.card-kicker) {
  min-height: 4.8rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(3rem, 10vw, 10rem);
  padding-top: clamp(5rem, 11vw, 9rem);
  padding-bottom: clamp(5rem, 11vw, 9rem);
  border-top: 1px solid var(--line);
}

.story-note {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--night);
  border: 1px solid rgba(178, 138, 62, 0.7);
  color: var(--paper-light);
  transform: rotate(-2deg);
}

.story-note p {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.story-note span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-copy {
  align-self: center;
  max-width: 570px;
}

.story-copy h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.story-copy > p:not(.eyebrow),
.contact-copy > p {
  max-width: 520px;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(3rem, 10vw, 10rem);
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--gold-dark);
}

.contact-section h2 {
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.contact-copy {
  align-self: end;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  max-width: 520px;
}

.contact-pill {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.contact-pill:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-pill:hover {
  color: var(--gold-dark);
}

.contact-pill span {
  color: var(--muted);
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    justify-self: start;
    width: min(100%, 470px);
  }

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

  .work-card-feature {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  }
}

@media (max-width: 640px) {
  .page-width,
  .site-header {
    width: min(100% - 2.2rem, 1160px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .header-note {
    display: none;
  }

  .header-link {
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-photo {
    height: 430px;
  }

  .section-heading,
  .story-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

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

  .work-card-feature {
    grid-column: auto;
    display: block;
  }

  .work-card-feature .card-visual {
    min-height: 300px;
  }

  .card-visual {
    min-height: 240px;
  }

  .card-body > p:not(.card-kicker) {
    min-height: auto;
  }

  .story-note {
    max-width: 92%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
}

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

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