:root {
  --paper: #f7f4ee;
  --paper-bright: #fffdf8;
  --ink: #071a35;
  --ink-soft: #334156;
  --blue: #0b4bf1;
  --blue-dark: #083bc0;
  --red: #ef4338;
  --gold: #e8a719;
  --line: rgba(7, 26, 53, 0.22);
  --line-on-dark: rgba(255, 253, 248, 0.32);
  --white: #fffdf8;
  --header-height: 102px;
  --max: 1440px;
  --gutter: clamp(24px, 4vw, 64px);
  --radius: 4px;
  --shadow: 0 24px 60px rgba(7, 26, 53, 0.12);
  --display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(5.75rem, 10vw, 9.5rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
  line-height: 0.92;
}

h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.98);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(7, 26, 53, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100%, var(--max));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.brand {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.site-nav a,
.footer-nav a,
.footer-social a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a::after,
.footer-nav a::after,
.footer-social a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current]::after,
.footer-nav a:hover::after,
.footer-social a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-shell,
.hero-layout,
.footer-main {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.button {
  --button-shadow-color: rgba(7, 26, 53, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--button-shadow-color);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--ink);
  background: var(--blue-dark);
  box-shadow: 7px 7px 0 var(--gold);
  transform: translate(-2px, -2px);
}

.button:active {
  box-shadow: 1px 1px 0 var(--gold);
  transform: translate(3px, 3px);
}

.button.secondary {
  --button-shadow-color: rgba(7, 26, 53, 0.16);
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

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

.text-link {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link:hover {
  color: var(--blue-dark);
}

.accent-rule {
  width: 72px;
  height: 5px;
  margin-block: 28px;
}

.accent-rule-red {
  background: var(--red);
}

.accent-rule-gold {
  width: 42px;
  height: 3px;
  background: var(--gold);
}

.section-label,
.meta {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.link-arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.groove-mark {
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 12px, rgba(7, 26, 53, 0.055) 12px 13px);
  pointer-events: none;
}

.offset-media {
  position: relative;
}

.offset-media::before {
  position: absolute;
  z-index: 0;
  right: 18px;
  bottom: -18px;
  left: -18px;
  height: 58%;
  background: var(--red);
  content: "";
}

.offset-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* Home hero */

.home-hero {
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(48px, 6vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
}

.groove-mark-hero {
  top: -80px;
  right: -34px;
}

.hero-lede {
  max-width: 610px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.05vw, 1.82rem);
  font-weight: 600;
  line-height: 1.32;
}

.hero-copy > .accent-rule-red {
  width: 220px;
  height: 6px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 46px;
  padding: 0 0 0 42px;
  list-style: none;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-proof::before {
  position: absolute;
  width: 28px;
  height: 2px;
  margin-top: 0.65em;
  margin-left: -42px;
  background: var(--gold);
  content: "";
}

.hero-proof li:not(:last-child)::after {
  margin-left: 12px;
  content: "·";
}

.hero-media {
  height: min(74svh, 780px);
  min-height: 560px;
}

.hero-media img {
  object-position: 52% center;
}

/* Books and writing */

.books-writing-section {
  padding-top: clamp(64px, 6vw, 92px);
}

.books-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(300px, 0.82fr) minmax(390px, 1.25fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: center;
  padding-bottom: clamp(64px, 6vw, 88px);
}

.lead-book-cover {
  width: min(100%, 350px);
  justify-self: center;
}

.offset-media-book {
  aspect-ratio: 2 / 3;
}

.offset-media-book img {
  object-fit: cover;
}

.books-intro h2 {
  max-width: 8.5ch;
}

.books-intro > p {
  max-width: 40ch;
  color: var(--ink-soft);
  font-weight: 500;
}

.lead-book-copy {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.lead-book-copy p {
  max-width: 36ch;
  margin-top: 14px;
  color: var(--ink-soft);
}

.book-ratings {
  display: grid;
  max-width: 360px;
  gap: 10px;
  margin-top: 22px;
}

.book-rating {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px 13px 11px 11px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 248, 0.62);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.book-rating:hover {
  border-color: var(--blue);
  border-left-color: var(--gold);
  transform: translateY(-2px);
}

.book-rating-stars {
  background: linear-gradient(
    90deg,
    var(--gold) var(--rating-fill),
    rgba(7, 26, 53, 0.18) var(--rating-fill)
  );
  background-clip: text;
  color: transparent;
  font-size: 1.04rem;
  letter-spacing: 1px;
  line-height: 1;
  -webkit-background-clip: text;
}

.book-rating-copy {
  display: grid;
  gap: 2px;
}

.book-rating-copy strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

.book-rating-copy span {
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.35;
}

.lead-book-copy .button {
  margin-top: 24px;
}

.book-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
}

.shelf-book {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.23rem;
  line-height: 1.05;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.shelf-cover {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 2 / 2.65;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--red);
  background: var(--paper-bright);
  overflow: hidden;
}

.shelf-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.shelf-book:hover .shelf-cover img {
  transform: scale(1.025);
}

.writing-band,
.music-section,
.contact-cta {
  background: var(--ink);
  color: var(--white);
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.6fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  padding-block: clamp(64px, 7vw, 104px);
}

.writing-heading h2 {
  max-width: 6ch;
}

.writing-heading .button {
  margin-top: 12px;
}

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

.editorial-row,
.project-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.editorial-row:hover,
.project-row:hover {
  padding-left: 10px;
  color: var(--gold);
}

/* Music */

.music-section {
  padding-block: clamp(64px, 8vw, 120px);
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(540px, 1.35fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
}

.music-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.music-copy h2 {
  max-width: 7.2ch;
}

.music-lede {
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.project-links {
  margin-top: 34px;
  border-top: 1px solid var(--line-on-dark);
}

.project-row {
  min-height: 98px;
}

.project-row strong,
.project-row small {
  display: block;
}

.project-row strong {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.project-row small {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
}

.music-copy > .button {
  align-self: flex-start;
  margin-top: 34px;
}

.music-media {
  min-height: 680px;
}

.music-media img {
  object-position: 55% center;
}

/* About */

.about-section {
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 150px);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 1fr) minmax(120px, 0.38fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}

.about-media {
  width: min(100%, 330px);
  aspect-ratio: 0.73;
}

.about-media img {
  object-position: center;
}

.about-copy {
  position: relative;
  z-index: 2;
}

.about-copy h2 {
  max-width: 8ch;
}

.about-copy > p:not(.section-label) {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-copy .text-link {
  display: inline-block;
  margin-top: 32px;
}

.groove-mark-about {
  right: -80px;
  bottom: -40px;
  width: 390px;
}

/* Contact CTA and footer */

.contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(360px, 0.92fr) minmax(500px, 1.45fr);
  min-height: 610px;
}

.contact-image {
  min-height: 100%;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 71% center;
}

.contact-copy,
.contact-routes {
  align-self: center;
}

.contact-copy {
  padding: 72px clamp(30px, 4vw, 70px);
}

.contact-copy h2 {
  max-width: 11.5ch;
}

.contact-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(3.9rem, 5.2vw, 6.15rem);
  line-height: 0.9;
}

.contact-copy p {
  max-width: 35ch;
  font-size: 1.1rem;
}

.contact-copy .button {
  margin-top: 34px;
}

.contact-email-button {
  gap: 10px;
}

.contact-email-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-routes {
  margin-right: var(--gutter);
  border-top: 1px solid var(--line-on-dark);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(150px, 0.8fr) 28px;
  gap: 24px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--white);
  text-decoration: none;
  transition: padding 160ms ease;
}

.contact-row:hover {
  padding-left: 10px;
}

.contact-row strong {
  font-size: 0.98rem;
}

.contact-row span:not(.sr-only) {
  color: #5f88ff;
  font-weight: 600;
}

.contact-route-summary {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.55fr);
  gap: 24px;
  align-items: start;
  padding-block: 22px;
  border-bottom: 1px solid var(--line-on-dark);
}

.contact-route-summary strong {
  color: var(--white);
  font-size: 0.98rem;
}

.contact-route-summary p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-footer {
  border-top: 2px solid var(--line);
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(480px, 1.35fr) minmax(120px, 0.4fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: 68px 58px;
}

.footer-brand .accent-rule {
  margin-block: 18px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.footer-credit {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 20px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.footer-credit a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  text-decoration-thickness: 2px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-social {
  display: grid;
  gap: 18px;
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  color: var(--blue);
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-icon-youtube {
  fill: #ff0000;
}

/* Interior pages */

.subpage-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.subpage-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  min-height: 650px;
  padding-block: clamp(72px, 8vw, 118px);
}

.subpage-hero-copy {
  position: relative;
  z-index: 2;
}

.subpage-hero h1 {
  max-width: 9ch;
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.86;
}

.subpage-lede {
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 1.18rem;
  font-weight: 500;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.subpage-visual {
  height: 440px;
}

.subpage-visual img {
  object-position: center;
}

.subpage-visual.work-hero-visual {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1;
  justify-self: end;
}

.page-section {
  padding-block: clamp(80px, 9vw, 140px);
}

.page-section + .page-section {
  border-top: 1px solid var(--line);
}

.page-section.dark-section {
  border-color: var(--line-on-dark);
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 0.8fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 9ch;
}

.section-heading p {
  max-width: 48ch;
  color: var(--ink-soft);
}

.dark-section .section-heading p {
  color: rgba(255, 253, 248, 0.76);
}

.catalog-list {
  border-top: 1px solid var(--line);
}

.catalog-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
}

.catalog-cover {
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 2 / 3;
  background: var(--paper-bright);
}

.catalog-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-copy h3 {
  max-width: 24ch;
}

.catalog-copy p:not(.meta) {
  max-width: 58ch;
  margin-top: 12px;
  color: var(--ink-soft);
}

.catalog-action {
  justify-self: end;
}

.directory-list {
  border-top: 1px solid currentColor;
  border-color: var(--line-on-dark);
}

.directory-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.4fr) 28px;
  gap: 32px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line-on-dark);
  color: inherit;
  text-decoration: none;
}

.directory-row strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.directory-row span:not(.sr-only) {
  color: rgba(255, 253, 248, 0.74);
}

.directory-row:hover strong,
.directory-row:hover span:not(.sr-only) {
  color: var(--gold);
}

.music-video-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(56px, 7vw, 92px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line-on-dark);
  background: rgba(255, 253, 248, 0.045);
}

.music-video-copy h3 {
  max-width: 9ch;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.95;
}

.music-video-copy > p:not(.section-label) {
  max-width: 34ch;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.74);
}

.music-video-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--gold);
}

.music-video-link:hover {
  color: var(--white);
}

.video-embed {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 14px 14px 0 var(--red);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.bio-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(460px, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.bio-feature .about-media {
  justify-self: center;
}

.bio-copy h2 {
  max-width: 8ch;
}

.bio-copy p {
  max-width: 64ch;
  margin-top: 20px;
  color: var(--ink-soft);
}

.bio-copy .text-link {
  display: inline-block;
  margin-top: 30px;
}

.contact-page-hero .subpage-visual img {
  object-position: 68% center;
}

.inquiry-guide {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 120px);
}

.inquiry-intro h2 {
  max-width: 8ch;
}

.inquiry-intro p {
  max-width: 40ch;
  margin-top: 24px;
  color: var(--ink-soft);
}

.inquiry-list {
  border-top: 1px solid var(--line);
}

.inquiry-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.inquiry-row strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.inquiry-row p {
  color: var(--ink-soft);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 72px;
}

.directory-group {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.directory-group h3 {
  margin-bottom: 18px;
}

.directory-group ul {
  padding: 0;
  list-style: none;
}

.directory-group li {
  border-top: 1px solid rgba(7, 26, 53, 0.11);
}

.directory-group li:first-child {
  border-top: 0;
}

.directory-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  color: var(--blue);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.directory-group a:hover {
  color: var(--blue-dark);
}

.redirect-page {
  display: grid;
  place-content: center;
  min-height: 100svh;
  padding: 32px;
  text-align: center;
}

.redirect-page h1 {
  font-size: clamp(4rem, 10vw, 7rem);
}

.redirect-page p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

/* Responsive */

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  }

  .books-layout {
    grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 0.9fr);
  }

  .book-shelf {
    grid-column: 1 / -1;
    max-width: 760px;
    margin: 24px auto 0;
  }

  .music-layout {
    grid-template-columns: minmax(330px, 0.78fr) minmax(440px, 1.1fr);
  }

  .contact-cta {
    grid-template-columns: minmax(240px, 0.45fr) minmax(320px, 0.72fr) minmax(420px, 1fr);
  }

  .footer-main {
    grid-template-columns: minmax(240px, 0.8fr) minmax(430px, 1.2fr);
  }

  .footer-social {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, max-content);
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-height));
    padding: 18px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(7, 26, 53, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 56px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a[aria-current] {
    color: var(--blue);
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
  }

  .hero-layout,
  .music-layout,
  .about-layout,
  .subpage-hero-layout,
  .bio-feature,
  .inquiry-guide {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .hero-layout {
    min-height: 0;
  }

  .hero-layout {
    gap: 56px;
    padding-block: 60px 92px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero-media {
    width: calc(100% - 18px);
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    justify-self: end;
  }

  .hero-media img {
    object-position: 52% center;
  }

  .books-layout {
    grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1fr);
  }

  .book-shelf {
    grid-column: 1 / -1;
  }

  .writing-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .writing-heading h2 {
    max-width: none;
  }

  .music-media {
    order: -1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .music-copy h2 {
    max-width: 9ch;
  }

  .about-layout {
    gap: 56px;
  }

  .about-media {
    justify-self: start;
  }

  .groove-mark-about {
    right: -160px;
  }

  .contact-cta {
    grid-template-columns: 0.55fr 1fr;
  }

  .contact-image {
    min-height: 420px;
  }

  .contact-routes {
    grid-column: 1 / -1;
    margin: 0 var(--gutter) 72px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px 36px;
  }

  .catalog-item {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .catalog-cover {
    width: 130px;
  }

  .catalog-action {
    grid-column: 2;
    justify-self: start;
  }

  .directory-grid {
    gap: 0 42px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 22px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    font-size: 2rem;
  }

  h1 {
    font-size: clamp(5.2rem, 25vw, 7rem);
  }

  h2 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }

  .groove-mark-hero {
    top: -80px;
    right: -130px;
    width: 280px;
  }

  .hero-layout {
    gap: 48px;
    padding-top: 48px;
  }

  .hero-lede {
    font-size: 1.35rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: min(100%, 330px);
  }

  .hero-proof {
    display: grid;
    gap: 2px;
    margin-top: 36px;
    padding-left: 34px;
  }

  .hero-proof::before {
    width: 22px;
    margin-left: -34px;
  }

  .hero-proof li:not(:last-child)::after {
    display: none;
  }

  .hero-media {
    width: calc(100% - 16px);
  }

  .offset-media::before {
    right: 12px;
    bottom: -14px;
    left: -14px;
  }

  .books-writing-section {
    padding-top: 76px;
  }

  .books-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .books-intro {
    display: contents;
  }

  .books-intro h2 {
    order: 1;
  }

  .books-intro > .accent-rule {
    order: 2;
    margin-block: -20px -18px;
  }

  .books-intro > p {
    order: 3;
  }

  .lead-book-cover {
    order: 4;
    width: min(100%, 282px);
    justify-self: start;
  }

  .lead-book-copy {
    order: 5;
    margin-top: -8px;
    padding-top: 0;
    border-top: 0;
  }

  .lead-book-copy .button {
    width: min(100%, 282px);
  }

  .book-shelf {
    order: 6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    margin-top: 10px;
  }

  .shelf-book {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 130px;
    border-top: 1px solid var(--line);
    font-size: 1.35rem;
  }

  .shelf-cover {
    width: 96px;
    height: 124px;
    margin: 0;
  }

  .writing-layout {
    gap: 48px;
  }

  .editorial-row {
    min-height: 68px;
  }

  .music-section {
    padding-top: 84px;
  }

  .music-media {
    order: 0;
    width: calc(100% - 14px);
    margin-top: 18px;
    justify-self: end;
  }

  .project-row {
    min-height: 92px;
  }

  .project-row strong {
    font-size: 1.7rem;
  }

  .about-media {
    width: min(72vw, 280px);
  }

  .contact-cta {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 240px;
    max-height: 320px;
  }

  .contact-copy {
    padding: 60px var(--gutter) 48px;
  }

  .contact-copy h2 {
    max-width: 7.5ch;
  }

  .contact-routes {
    grid-column: 1;
    margin: 0 var(--gutter) 64px;
  }

  .contact-row {
    grid-template-columns: 1fr 28px;
    gap: 10px 18px;
    min-height: 100px;
    padding-block: 18px;
  }

  .contact-row strong,
  .contact-row span:not(.sr-only) {
    grid-column: 1;
  }

  .contact-row .link-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .contact-route-summary {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 18px;
  }

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

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

  .subpage-hero-layout {
    min-height: 0;
    padding-block: 60px 90px;
  }

  .subpage-hero h1 {
    font-size: clamp(4.6rem, 22vw, 6.4rem);
  }

  .subpage-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .catalog-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    padding-block: 30px;
  }

  .catalog-cover {
    width: 96px;
  }

  .catalog-copy h3 {
    font-size: 1.55rem;
  }

  .catalog-copy p:not(.meta) {
    display: none;
  }

  .catalog-action {
    grid-column: 1 / -1;
  }

  .catalog-action.button {
    width: 100%;
  }

  .directory-row {
    grid-template-columns: 1fr 28px;
    gap: 12px 18px;
    padding-block: 24px;
  }

  .directory-row strong,
  .directory-row span:not(.sr-only) {
    grid-column: 1;
  }

  .directory-row .link-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .music-video-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .music-video-copy h3 {
    max-width: 12ch;
  }

  .video-embed {
    width: calc(100% - 10px);
    box-shadow: 10px 10px 0 var(--red);
  }

  .inquiry-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
