:root {
  --paper: #f3eee4;
  --paper-2: #eae3d6;
  --ink: #1c1814;
  --muted: #6b635a;
  --rule: #d4cbbd;
  --accent: #9c3b2a;
  --accent-soft: #c45a45;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Palatino, "Palatino Linotype", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-logo {
  width: 30px;
  height: auto;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}

.kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: Palatino, "Palatino Linotype", Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.lede {
  margin: 0;
  max-width: 38ch;
  font-size: 1.2rem;
  color: #3a342e;
}

.hero-aside {
  color: var(--muted);
  font-size: 1rem;
}

.hero-aside p {
  margin: 0 0 18px;
}

.hero-links {
  display: flex;
  gap: 18px;
  font-family: Palatino, "Palatino Linotype", Georgia, serif;
  font-size: 1.15rem;
}

.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.85rem;
}

.section-head a {
  font-size: 0.95rem;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.chip {
  border: 1px solid var(--rule);
  padding: 6px 12px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.chip:hover,
.chip.is-on {
  border-color: var(--ink);
  color: var(--ink);
}

.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 8px 0 8px;
}

.feature-art {
  min-height: 280px;
  background:
    linear-gradient(160deg, #d8cfc0 0%, #c9b8a4 42%, #9c3b2a 160%);
  border: 1px solid var(--rule);
}

.feature h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rooms.four {
  grid-template-columns: repeat(4, 1fr);
}

.room {
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}

.room h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.room p {
  margin: 0;
  color: #3f3933;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.card {
  background: #faf7f1;
  border: 1px solid var(--rule);
  padding: 28px;
  min-height: 100%;
}

.card.span {
  grid-column: 1 / -1;
}

.meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.card p {
  margin: 0;
}

.writing-list {
  display: grid;
  gap: 0;
}

.writing-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}

.writing-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.writing-item[hidden] {
  display: none;
}

.music-block.soft {
  padding-bottom: 40px;
}

.work-grid.list-space,
.rooms.list-space {
  padding-bottom: 80px;
}

.list-gap {
  margin-top: 28px;
}

.narrow {
  max-width: 62ch;
}

.tag {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.writing-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.year {
  color: var(--muted);
  font-size: 0.92rem;
}

.music-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.disc {
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #f3eee4 0 18%, transparent 19%),
    repeating-radial-gradient(circle at 50% 50%, #2a2420 0 1px, #1a1613 2px 8px);
  border: 1px solid var(--rule);
}

.page-hero {
  padding: 56px 0 28px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.stack {
  display: grid;
  gap: 22px;
  padding-bottom: 72px;
}

.timeline {
  display: grid;
  gap: 0;
}

.job {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}

.job h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 520px;
  padding-bottom: 80px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
}

input,
textarea,
select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: #faf7f1;
  color: var(--ink);
}

select {
  width: 100%;
}

button[type="submit"],
.button {
  appearance: none;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  padding: 12px 18px;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
}

button[type="submit"]:hover,
.button:hover {
  background: var(--accent);
  color: var(--paper);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Modern homepage */
.home {
  --paper: #f4f0e8;
  --ink: #151714;
  --muted: #696b64;
  --rule: rgba(21, 23, 20, 0.16);
  --accent: #e8542d;
  overflow-x: hidden;
}

.home .site-header {
  padding-block: 22px;
  position: relative;
  z-index: 10;
}

.home .wordmark {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home .brand-logo {
  width: 32px;
}

.home .nav {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-hero {
  min-height: 700px;
  padding-block: clamp(72px, 10vw, 128px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.6rem, 7.4vw, 7.2rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.home-intro {
  max-width: 620px;
  margin: 32px 0 0;
  color: #4b4e48;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.6;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 225px;
  padding: 15px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.text-link {
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration-color: var(--rule);
}

.curiosity-orbit {
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.curiosity-orbit::before {
  content: "";
  width: 68%;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 28px 34px 0 #e7bc3c;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(21, 23, 20, 0.32);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 100%;
  height: 54%;
}

.orbit-two {
  width: 54%;
  height: 100%;
}

.orbit-core {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  transform: rotate(-6deg);
}

.orbit-core span,
.orbit-core strong {
  display: block;
  font-family: Georgia, serif;
  line-height: 0.9;
}

.orbit-core span {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
}

.orbit-core strong {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
}

.orbit-word {
  position: absolute;
  z-index: 3;
  padding: 5px 9px;
  background: var(--paper);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.word-one { left: -2%; top: 46%; }
.word-two { right: 4%; top: 16%; }
.word-three { right: -3%; bottom: 25%; }
.word-four { left: 22%; bottom: -1%; }

.topic-rail {
  overflow: hidden;
  border-block: 1px solid var(--rule);
  padding: 13px 0;
}

.topic-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  color: #454842;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topic-track i {
  color: var(--accent);
  font-style: normal;
}

.home-section {
  padding-block: clamp(78px, 10vw, 132px);
}

.modern-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}

.modern-section-head .eyebrow {
  margin-bottom: 12px;
}

.modern-section-head h2 {
  max-width: 700px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.round-link {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.round-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(5deg);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.story {
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease;
}

.story:hover {
  color: inherit;
  transform: translateY(-4px);
}

.story-featured {
  grid-row: span 2;
  background: #fff;
}

.story-art {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.story-art-music {
  background:
    radial-gradient(circle at 74% 26%, #f4f0e8 0 4%, transparent 4.5%),
    linear-gradient(135deg, #e8542d 0 52%, #e7bc3c 52% 72%, #20231f 72%);
}

.art-number {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
}

.sound-wave {
  width: 62%;
  height: 42%;
  position: absolute;
  right: 8%;
  bottom: 13%;
  border-block: 2px solid rgba(255, 255, 255, 0.85);
  transform: skewY(-13deg);
}

.sound-wave::before,
.sound-wave::after {
  content: "";
  position: absolute;
  inset: 28% 0;
  border-block: 2px solid rgba(255, 255, 255, 0.7);
}

.sound-wave::after {
  inset: 48% 0 auto;
  border-bottom: 0;
}

.story-copy {
  padding: 28px 30px 32px;
}

.story-meta {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.72;
}

.story h3 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.045em;
}

.story-featured h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.story-copy > p:not(.story-meta) {
  max-width: 54ch;
  margin: 15px 0 26px;
  color: var(--muted);
}

.read-more {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.story-small {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-small h3 {
  max-width: 11ch;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1;
}

.story-rust {
  background: #b44026;
  color: #fff;
}

.story-rust:hover,
.story-dark:hover {
  color: #fff;
}

.story-dark {
  background: #20231f;
  color: #f7f3eb;
}

.story-wide {
  grid-column: 1 / -1;
  min-height: 190px;
  padding: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  background: #dfd8ca;
}

.story-wide h3 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.story-arrow {
  font-size: 2.5rem;
}

.home-section-dark {
  background: #171917;
  color: #f4f0e8;
}

.home-section-dark .eyebrow {
  color: #e7bc3c;
}

.paths {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.path {
  min-height: 145px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  text-decoration: none;
}

.path:hover {
  color: #e7bc3c;
}

.path-number {
  font-size: 0.7rem;
  opacity: 0.55;
}

.path h3 {
  margin: 0 0 8px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.path p {
  max-width: 590px;
  margin: 0;
  color: rgba(244, 240, 232, 0.62);
  font-size: 0.92rem;
}

.path-arrow {
  font-size: 2rem;
  transition: transform 180ms ease;
}

.path:hover .path-arrow {
  transform: translate(5px, -5px);
}

.closing-note {
  padding-block: clamp(90px, 13vw, 170px);
}

.closing-line {
  max-width: 920px;
  margin: 0 0 44px;
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 5.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.home-hero-profile {
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
}

.portrait-card {
  margin: 0;
  position: relative;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: -14px 18px 42px -14px;
  border: 1px solid var(--ink);
  transform: rotate(-2deg);
  z-index: -1;
}

.portrait-frame {
  min-height: 510px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, #e7bc3c 0 12%, transparent 12.5%),
    linear-gradient(145deg, #e8542d, #bd3d22);
}

.hero-portrait {
  width: 100%;
  height: 510px;
  position: relative;
  z-index: 2;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.04);
}

.portrait-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(244, 240, 232, 0.72);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  width: 112%;
  height: 55%;
  left: -8%;
  top: 20%;
  transform: rotate(-18deg);
}

.ring-two {
  width: 58%;
  height: 112%;
  left: 22%;
  top: -8%;
  transform: rotate(18deg);
}

.portrait-label {
  position: absolute;
  z-index: 3;
  padding: 5px 9px;
  background: #f4f0e8;
  color: #151714;
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.label-question { top: 16%; left: 5%; }
.label-make { top: 43%; right: 4%; }
.label-listen { bottom: 11%; left: 7%; }

.portrait-placeholder {
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.35) 0 12%, transparent 12.5%),
    linear-gradient(150deg, #d9b43b 0 36%, #e8542d 36% 67%, #242722 67%);
}

.portrait-placeholder span {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.09em;
}

.portrait-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.work-overview-copy h2 {
  max-width: 790px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.work-map {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px),
    #ded7ca;
  background-size: 44px 44px;
}

.work-map::before {
  content: "A connected practice";
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-node {
  min-width: 88px;
  position: absolute;
  z-index: 2;
  padding: 10px 13px;
  border: 1px solid rgba(21, 23, 20, 0.4);
  background: #f4f0e8;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.node-center {
  left: 50%;
  top: 50%;
  padding: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  transform: translate(-50%, -50%);
}

.node-product { left: 9%; top: 22%; }
.node-market { right: 8%; top: 17%; }
.node-sales { right: 6%; bottom: 19%; }
.node-build { left: 8%; bottom: 17%; }
.node-content { left: 50%; top: 8%; transform: translateX(-50%); }

.map-line {
  width: 68%;
  height: 1px;
  position: absolute;
  left: 16%;
  top: 50%;
  background: rgba(21, 23, 20, 0.42);
  transform-origin: center;
}

.line-a { transform: rotate(34deg); }
.line-b { transform: rotate(-37deg); }
.line-c { transform: rotate(90deg); }

.venture-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.venture-copy h2,
.music-feature-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-intro {
  max-width: 620px;
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.venture-section .curiosity-orbit {
  width: 100%;
}

.music-feature-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.music-visual {
  min-height: 530px;
  position: relative;
  display: grid;
  place-items: center;
  background: #e7bc3c;
  overflow: hidden;
}

.record {
  width: 75%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #e8542d 0 11%, #f4f0e8 11.5% 13%, #171917 13.5% 100%);
  box-shadow: 24px 28px 0 rgba(23, 25, 23, 0.16);
  animation: record-turn 24s linear infinite;
}

.record-label {
  position: relative;
  z-index: 2;
  color: #171917;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.music-note {
  position: absolute;
  right: -42px;
  bottom: 48px;
  padding: 8px 14px;
  background: #f4f0e8;
  color: #171917;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  transform: rotate(-6deg);
}

.music-feature-copy .section-intro {
  color: rgba(244, 240, 232, 0.67);
}

.light-link {
  background: #f4f0e8;
  color: #171917;
}

.blog-life-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.life-statement > p {
  max-width: 680px;
  margin: 0 0 38px;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.interest-stack {
  border-top: 1px solid var(--rule);
}

.interest-stack span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  color: #464943;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.curiosity-section {
  position: relative;
  background: #d9b63f;
  color: #171917;
}

.curiosity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(23, 25, 23, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 23, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 65%);
}

.curiosity-section .wrap {
  position: relative;
}

.curiosity-section .eyebrow {
  color: #8e2f1d;
}

.section-side-note {
  max-width: 310px;
  margin: 0 0 5px;
  color: rgba(23, 25, 23, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.curiosity-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 16px;
}

.curiosity-manifesto {
  min-height: 590px;
  position: relative;
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  background: #1d201c;
  color: #f4f0e8;
}

.manifesto-mark {
  position: absolute;
  top: -95px;
  right: -24px;
  color: rgba(232, 84, 45, 0.82);
  font-family: Georgia, serif;
  font-size: clamp(14rem, 28vw, 25rem);
  line-height: 1;
}

.curiosity-manifesto .story-meta {
  position: relative;
  z-index: 1;
  color: #e7bc3c;
}

.curiosity-manifesto blockquote {
  max-width: 720px;
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.7vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.manifesto-copy {
  max-width: 590px;
  position: relative;
  z-index: 1;
  margin: 28px 0 34px;
  color: rgba(244, 240, 232, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}

.curiosity-manifesto .primary-link {
  position: relative;
  z-index: 1;
}

.curiosity-index {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 25, 23, 0.35);
  background: rgba(244, 240, 232, 0.9);
}

.index-header {
  min-height: 78px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.index-row {
  flex: 1;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 180ms ease, background 180ms ease;
}

.index-row:last-child {
  border-bottom: 0;
}

.index-row:hover {
  padding-left: 31px;
  background: #fff;
}

.index-number {
  color: var(--muted);
  font-size: 0.62rem;
}

.index-row strong {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  letter-spacing: -0.025em;
}

.index-symbol {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 0.9rem;
}

.writing-practice {
  min-height: 590px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 23, 0.35);
  background: rgba(244, 240, 232, 0.92);
}

.practice-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.practice-words {
  position: relative;
  z-index: 2;
  margin-block: auto;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.3rem, 6.2vw, 6.4rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.practice-words span {
  display: block;
}

.practice-words span:nth-child(2) {
  color: var(--accent);
  transform: translateX(9%);
}

.practice-words span:nth-child(3) {
  transform: translateX(19%);
}

.practice-sketch {
  width: 82%;
  height: 46%;
  position: absolute;
  right: -16%;
  top: 22%;
  border: 1px solid rgba(23, 25, 23, 0.18);
  border-radius: 50%;
  transform: rotate(-19deg);
}

.practice-sketch span {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(23, 25, 23, 0.14);
  border-radius: 50%;
}

.practice-sketch span:nth-child(2) {
  inset: 36%;
}

.practice-sketch span:nth-child(3) {
  inset: -30% 45%;
  border-radius: 50%;
  transform: rotate(34deg);
}

.practice-note {
  max-width: 410px;
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.55;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-card {
  min-height: 430px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  color: inherit;
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(21, 23, 20, 0.12);
}

.blog-card-number {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.blog-card h3 {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.blog-card p:not(.story-meta) {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.7;
}

.blog-card-link {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-orange {
  background: var(--accent);
  color: #fff;
}

.blog-card-orange:hover,
.blog-card-charcoal:hover {
  color: #fff;
}

.blog-card-cream {
  border: 1px solid var(--rule);
  background: #e2dbce;
}

.blog-card-charcoal {
  background: #20231f;
  color: #f4f0e8;
}

.home-footer {
  width: min(var(--max), calc(100% - 48px));
  margin-block: 0 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.65fr 0.85fr;
  align-items: start;
  gap: 42px;
  border-top: 3px solid var(--accent);
  background: #ded7ca;
  color: var(--ink);
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-mark .brand-logo {
  width: 34px;
}

.footer-intro p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.45;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-label {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-contact a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 23, 20, 0.2);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

/* Contact page */
.contact-page,
.music-page {
  --paper: #f4f0e8;
  --ink: #151714;
  --muted: #696b64;
  --rule: rgba(21, 23, 20, 0.16);
  --accent: #e8542d;
}

.contact-page .site-header,
.music-page .site-header {
  padding-block: 22px;
}

.contact-page .wordmark,
.music-page .wordmark {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero {
  min-height: 445px;
  padding-block: clamp(72px, 10vw, 128px) clamp(64px, 8vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: end;
  gap: clamp(42px, 8vw, 110px);
  border-bottom: 1px solid var(--rule);
}

.contact-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.contact-hero-note {
  margin: 0 0 4px;
  color: #4b4e48;
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.contact-layout {
  padding-block: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(48px, 9vw, 120px);
}

.contact-form-card {
  padding: clamp(28px, 5vw, 52px);
  border-top: 4px solid var(--accent);
  background: #fff;
}

.contact-section-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-card h2 {
  max-width: 560px;
  margin: 0 0 34px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 750;
  letter-spacing: -0.055em;
}

.contact-form {
  max-width: none;
  padding-bottom: 0;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  gap: 8px;
  color: #4b4e48;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(21, 23, 20, 0.22);
  background: #f4f0e8;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 84, 45, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 4px;
  padding: 15px 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.contact-direct {
  padding: 30px;
  background: #171917;
  color: #f4f0e8;
}

.contact-direct .contact-section-label {
  color: #e7bc3c;
}

.contact-direct a {
  display: inline-block;
  margin-bottom: 24px;
  color: inherit;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration-color: #e7bc3c;
}

.contact-direct p:last-child {
  margin: 0;
  color: rgba(244, 240, 232, 0.68);
  font-family: Georgia, serif;
  line-height: 1.6;
}

.contact-reasons > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}

.contact-reasons > div:last-child {
  border-bottom: 1px solid var(--rule);
}

.contact-reasons span {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 750;
}

.contact-reasons p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-reasons strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
}

/* Music page */
.music-hero {
  padding-block: clamp(72px, 10vw, 128px) clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(42px, 8vw, 110px);
}

.music-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.2rem, 6.6vw, 6.6rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.music-hero-note {
  margin: 0 0 8px;
  color: #4b4e48;
  font-family: Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.genre-rail {
  overflow: hidden;
  border-block: 1px solid var(--rule);
  padding: 13px 0;
}

.role-grid,
.project-grid,
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.role-card,
.music-project,
.live-card {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.role-card h3,
.music-project h3,
.live-card h3,
.album-copy h2,
.listen-section h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.role-card h3,
.music-project h3,
.live-card h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.album-copy h2,
.listen-section h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.role-card p,
.music-project p,
.live-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.role-compose {
  background: #20231f;
  color: #f4f0e8;
}

.role-compose p,
.role-sax p {
  color: rgba(244, 240, 232, 0.68);
}

.role-sax {
  background: var(--accent);
  color: #fff;
}

.role-guitar {
  border: 1px solid var(--rule);
  background: #e2dbce;
}

.role-slot,
.placeholder-meta {
  margin-top: 28px;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}

.album-grid,
.listen-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.album-visual {
  background: #e7bc3c;
}

.album-copy .section-intro {
  color: rgba(244, 240, 232, 0.67);
}

.track-list {
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.track-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(244, 240, 232, 0.78);
  font-family: Georgia, serif;
  font-style: italic;
}

.track-list span {
  color: #e7bc3c;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.album-status {
  margin: 0;
  color: #e7bc3c;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-original {
  background: var(--accent);
  color: #fff;
}

.project-original p {
  color: rgba(255, 255, 255, 0.78);
}

.project-local {
  background: #20231f;
  color: #f4f0e8;
}

.project-local p {
  color: rgba(244, 240, 232, 0.68);
}

.project-acoustic {
  border: 1px solid var(--rule);
  background: #dfd8ca;
}

.live-section {
  background: #d9b63f;
  color: #171917;
}

.live-section .eyebrow {
  color: #8e2f1d;
}

.live-section .section-side-note {
  color: rgba(23, 25, 23, 0.7);
}

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

.live-card {
  min-height: 390px;
  background: rgba(244, 240, 232, 0.92);
}

.live-card-dark {
  background: #1d201c;
  color: #f4f0e8;
}

.live-card-dark p {
  color: rgba(244, 240, 232, 0.68);
}

.live-card-dark .story-meta {
  color: #e7bc3c;
}

.player-slot {
  min-height: 280px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px dashed rgba(21, 23, 20, 0.35);
  background: #fff;
}

.player-disc {
  width: 92px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #e8542d 0 14%, #f4f0e8 14.5% 17%, #171917 17.5% 100%);
}

.player-slot strong {
  display: block;
  margin: 6px 0 10px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.player-slot p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.music-writing {
  padding-top: 0;
}

.writing-placeholder {
  opacity: 0.62;
}

.contact-modal {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: clamp(28px, 5vw, 52px);
  border: 0;
  background: #f4f0e8;
  color: #151714;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.contact-modal::backdrop {
  background: rgba(15, 17, 15, 0.75);
  backdrop-filter: blur(5px);
}

.contact-modal h2 {
  max-width: 480px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 750;
  letter-spacing: -0.055em;
}

.modal-intro {
  margin: 18px 0 28px;
  color: var(--muted);
}

.modal-form {
  padding-bottom: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

body:has(.contact-modal[open]) {
  overflow: hidden;
}

@keyframes record-turn {
  to { transform: rotate(360deg); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  .hero,
  .rooms,
  .rooms.four,
  .work-grid,
  .music-block,
  .writing-item,
  .feature {
    grid-template-columns: 1fr;
  }

  .writing-item .year {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 64px 80px;
  }

  .home-hero-profile,
  .work-overview,
  .venture-section,
  .music-feature-grid,
  .blog-life-grid,
  .contact-hero,
  .contact-layout,
  .music-hero,
  .album-grid,
  .listen-grid,
  .role-grid,
  .project-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-hero-note {
    max-width: 620px;
  }

  .curiosity-editorial {
    grid-template-columns: 1fr;
  }

  .curiosity-manifesto,
  .curiosity-index,
  .writing-practice {
    min-height: 540px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 340px;
  }

  .home-footer {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .portrait-card {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .portrait-placeholder {
    min-height: 540px;
  }

  .portrait-frame,
  .hero-portrait {
    height: 540px;
  }

  .work-map {
    min-height: 500px;
  }

  .venture-section .curiosity-orbit {
    width: min(76vw, 420px);
    margin-inline: auto;
  }

  .curiosity-orbit {
    width: min(76vw, 420px);
    margin-inline: auto;
  }

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

  .story-featured {
    grid-row: auto;
  }

  .story-wide {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .home .site-header {
    align-items: flex-start;
  }

  .home .nav,
  .contact-page .nav,
  .music-page .nav {
    max-width: 210px;
    justify-content: flex-end;
    gap: 8px 15px;
  }

  .contact-page .site-header,
  .music-page .site-header {
    align-items: flex-start;
  }

  .music-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .role-card,
  .music-project,
  .live-card {
    min-height: 280px;
  }

  .contact-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .contact-layout {
    padding-top: 48px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .portrait-placeholder,
  .portrait-frame,
  .hero-portrait,
  .music-visual {
    min-height: 410px;
    height: 410px;
  }

  .portrait-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .music-note {
    right: -12px;
    bottom: 30px;
  }

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

  .modern-section-head {
    align-items: flex-start;
  }

  .curiosity-section .modern-section-head {
    flex-direction: column;
  }

  .round-link {
    width: 72px;
  }

  .story-art {
    min-height: 265px;
  }

  .story-wide {
    min-height: 230px;
    align-items: flex-start;
  }

  .path {
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
    padding-block: 24px;
  }

  .path p {
    font-size: 0.82rem;
  }

  .home-footer {
    width: calc(100% - 32px);
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .curiosity-manifesto {
    min-height: 520px;
  }

  .curiosity-index,
  .writing-practice {
    min-height: 530px;
  }

  .index-row {
    padding-inline: 18px;
  }

  .footer-contact,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .record {
    animation: none;
  }
}
