:root {
  --night: #07101f;
  --night-2: #11142f;
  --plum: #2d1b38;
  --paper: #f7f0e4;
  --paper-strong: #fffaf2;
  --paper-warm: #efe0c7;
  --ink: #10172c;
  --ink-soft: #596888;
  --ink-muted: rgba(16, 23, 44, 0.68);
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(16, 23, 44, 0.12);
  --coral: #ff7254;
  --gold: #f2cf7b;
  --sky: #8fd5ff;
  --violet: #8e7cff;
  --mint: #7fd8a2;
  --emerald: #4cbf7a;
  --forest-glow: #173626;
  --shadow-hero: 0 34px 90px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 18px 44px rgba(6, 10, 24, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 16%, rgba(76, 191, 122, 0.22), transparent 20%),
    radial-gradient(circle at 84% 12%, rgba(143, 213, 255, 0.22), transparent 18%),
    radial-gradient(circle at 72% 54%, rgba(142, 124, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #060d1a 0%, #0f1733 46%, #11271f 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(127, 216, 162, 0.34), transparent 70%);
}

body::after {
  left: -150px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(143, 213, 255, 0.26), transparent 72%);
}

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

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 28px 82px;
}

.hero,
.project-section,
.now-listening,
.from-the-field {
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  padding: 36px;
  border-radius: 22px;
  border: 2px solid var(--line-light);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(9, 16, 31, 0.92), rgba(12, 18, 39, 0.84));
  box-shadow: var(--shadow-hero);
  backdrop-filter: blur(18px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 26%),
    repeating-linear-gradient(
      122deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 82px
    );
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 10%;
  top: -24%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 191, 122, 0.2), transparent 72%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.project-card-link,
.field-shell,
.behold-fallback {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 0 4px 8px;
}

.eyebrow,
.section-kicker,
.feature-kicker {
  margin: -2px 0 14px;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: 0.31em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}

.eyebrow {
  transform: translateY(-52px);
}

h1,
.section-head h2,
.field-title,
.project-name,
.hero-visual-caption h2 {
  font-family: "Newsreader", Georgia, serif;
}

h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.048em;
  font-weight: 500;
  text-wrap: balance;
}

h1 {
  max-width: 18ch;
}

.hero-sub {
  margin: 22px 0 0;
  max-width: 33rem;
  font-size: clamp(1.03rem, 1.9vw, 1.28rem);
  line-height: 1.58;
  color: rgba(247, 240, 228, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-link,
.feature-link,
.field-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-link:hover,
.feature-link:hover,
.field-link:hover,
a.project-card-link:hover {
  transform: translateY(-2px);
}

.hero-link--primary {
  color: var(--ink);
  background: linear-gradient(135deg, #fff0bd 0%, #9fdaff 100%);
  box-shadow: 0 16px 34px rgba(143, 213, 255, 0.2);
}

.hero-link--secondary {
  color: var(--paper);
  border: 2px solid var(--line-light);
  background: rgba(255, 255, 255, 0.05);
}

.hero-mini {
  margin-top: 28px;
}

.hero-mini-card {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  max-width: 24rem;
  padding: 14px 16px 15px;
  border-radius: 18px;
  border: 2px solid var(--line-light);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-mini-label {
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.hero-mini-card strong {
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--paper);
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
  min-width: 0;
}

.hero-image-stage {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 2px solid var(--line-light);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    #100d0b;
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hero-image-stage:hover,
.hero-image-stage:focus-visible {
  border-color: var(--line-light);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.hero-image-stage:focus-visible {
  outline: 3px solid rgba(242, 207, 123, 0.82);
  outline-offset: 4px;
}

.hero-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-caption {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 22px 20px;
  border-radius: 16px;
  border: 2px solid var(--line-light);
  background: #171426;
  color: var(--paper);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-visual-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/projects/hocus-poke-us-instagram-art.jpg") center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.hero-visual-caption > * {
  position: relative;
  z-index: 1;
}

.feature-mark {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: clamp(4.8rem, 9vw, 7.2rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  pointer-events: none;
}

.hero-visual-caption h2 {
  margin: 0;
  max-width: none;
  font-size: 2.35rem;
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
  white-space: nowrap;
}

.feature-copy {
  margin: 14px 0 0;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(247, 240, 228, 0.78);
}

.feature-copy a {
  color: var(--sky);
  text-decoration-color: rgba(143, 213, 255, 0.52);
  text-underline-offset: 0.16em;
}

.feature-copy a:hover {
  color: var(--paper);
  text-decoration-color: var(--paper);
}

.feature-link {
  display: inline-flex;
  align-self: flex-start;
  justify-content: flex-start;
  width: max-content;
  min-height: 0;
  margin-top: 10px;
  padding: 0;
  border-radius: 0;
  color: var(--sky);
  background: none;
  box-shadow: none;
  text-decoration: none;
}

.project-section {
  margin-top: 34px;
  padding: 34px;
  border-radius: 22px;
  border: 2px solid var(--line-light);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(8, 13, 29, 0.74);
  box-shadow: var(--shadow-hero);
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: none;
}

.project-section .section-kicker {
  margin-bottom: 24px;
}

.section-head h2 {
  max-width: none;
  font-size: 1.9rem;
  white-space: nowrap;
}

.section-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(247, 240, 228, 0.76);
}

.projects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.project-card {
  min-width: 0;
  height: 100%;
}

.project-card-link {
  position: relative;
  display: grid;
  grid-template-rows: 34px 18px minmax(86px, auto) minmax(108px, auto) 1fr auto;
  row-gap: 12px;
  align-content: start;
  height: 100%;
  min-height: 312px;
  padding: 22px 22px 20px;
  border-radius: 16px;
  border: 2px solid var(--line-light);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 249, 241, 0.04);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.project-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(143, 213, 255, 0.16), transparent 28%);
  pointer-events: none;
}

a.project-card-link:hover {
  border-color: var(--line-light);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.26);
}

.project-card-link--linked:hover {
  transform: translateY(-2px);
  border-color: var(--line-light);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.26);
}

.project-card-hit-area {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.project-card-link--linked > *:not(.project-card-hit-area) {
  pointer-events: none;
}

.project-meta-link {
  position: relative;
  z-index: 2;
  color: var(--sky);
  text-decoration-color: rgba(143, 213, 255, 0.52);
  text-underline-offset: 0.16em;
  pointer-events: auto;
}

.project-meta-link:hover,
.project-meta-link:focus-visible {
  color: var(--paper);
  text-decoration-color: var(--paper);
}

.project-card--lead .project-card-link {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at right top, rgba(143, 213, 255, 0.18), transparent 30%),
    radial-gradient(circle at left bottom, rgba(255, 114, 84, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(13, 25, 61, 0.96), rgba(45, 21, 48, 0.92));
}

.project-card--muted .project-card-link {
  opacity: 0.88;
}

.project-card-link--static {
  cursor: default;
}

.project-status {
  align-self: flex-start;
  justify-self: start;
  position: relative;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  border: 2px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 240, 228, 0.8);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}

.project-status--live {
  background: rgba(242, 207, 123, 0.14);
  border-color: var(--line-light);
  color: var(--gold);
}

.project-num {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 207, 123, 0.92);
  font-weight: 800;
}

.project-name {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.project-meta {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: rgba(247, 240, 228, 0.75);
}

.project-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.project-tag,
.project-cta {
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 800;
}

.project-tag {
  color: rgba(247, 240, 228, 0.64);
}

.project-cta {
  color: var(--sky);
}

.project-mark {
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-size: clamp(5rem, 8vw, 7.5rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
}

.project-card--lead .project-mark {
  color: rgba(255, 255, 255, 0.08);
}

.now-listening {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 30px 34px;
  border: 2px solid var(--line-light);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 20%, rgba(142, 124, 255, 0.15), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(8, 13, 29, 0.78);
  box-shadow: var(--shadow-hero);
}

.listening-heading {
  position: relative;
  z-index: 1;
}

.listening-heading .section-kicker {
  margin-bottom: 24px;
}

.listening-heading h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.048em;
  font-weight: 500;
}

.listening-heading > p:last-child {
  margin: 12px 0 0;
  color: rgba(247, 240, 228, 0.68);
  font-size: 0.96rem;
}

.listening-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 2px solid var(--line-light);
  border-radius: 16px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(17, 20, 47, 0.66);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.listening-card:hover,
.listening-card:focus-visible {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 20, 47, 0.74);
}

.listening-card:focus-visible {
  outline: 3px solid rgba(242, 207, 123, 0.82);
  outline-offset: 4px;
}

.listening-art {
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 114, 84, 0.38), transparent 24%),
    linear-gradient(145deg, #26284d, #182d32);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.listening-art img[hidden],
.listening-art__placeholder[hidden] {
  display: none;
}

.listening-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listening-art__placeholder {
  grid-area: 1 / 1;
  color: rgba(247, 240, 228, 0.72);
  font-family: "Newsreader", Georgia, serif;
  font-size: 3.6rem;
}

.listening-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.listening-status {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.listening-status.is-live::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(127, 216, 162, 0.1);
  vertical-align: 0.05em;
}

.listening-copy strong,
.listening-copy > span:not(.listening-status) {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listening-copy strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.listening-copy > span:not(.listening-status) {
  margin-top: 7px;
  color: rgba(247, 240, 228, 0.78);
  font-size: 0.92rem;
}

.listening-copy small {
  overflow: hidden;
  max-width: 100%;
  margin-top: 4px;
  color: rgba(247, 240, 228, 0.5);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listening-open {
  padding: 0 8px;
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.from-the-field {
  margin-top: 34px;
  padding: 30px;
  border-radius: 22px;
  border: 2px solid var(--line-light);
  background:
    radial-gradient(circle at 14% 18%, rgba(76, 191, 122, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(143, 213, 255, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(10, 16, 34, 0.95), rgba(19, 39, 31, 0.94));
  color: var(--paper);
  box-shadow: var(--shadow-hero);
}

.field-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-copy {
  width: 100%;
}

.from-the-field .section-kicker {
  margin-bottom: 29px;
}

.field-title {
  margin: 0;
  max-width: none;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.048em;
  font-weight: 500;
  color: var(--paper);
}

.field-link {
  width: 100%;
  max-width: 210px;
  min-height: 46px;
  padding: 0 18px;
  gap: 9px;
  border: 2px solid rgba(247, 240, 228, 0.3);
  border-radius: 12px;
  color: rgba(247, 240, 228, 0.78);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 5px 5px 0 rgba(255, 114, 84, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
}

.field-link:hover,
.field-link:focus-visible {
  border-color: rgba(143, 213, 255, 0.52);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 3px 3px 0 rgba(143, 213, 255, 0.2);
}

.field-link__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.field-stage {
  width: 100%;
  min-width: 0;
}

.field-widget-frame {
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border: 2px solid var(--line-light);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 40px rgba(0, 0, 0, 0.18);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.instagram-post {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.instagram-post img,
.instagram-post video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.instagram-post__caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: -webkit-box;
  max-height: 7.1em;
  padding: 38px 14px 13px;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(6, 9, 20, 0.9) 48%);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.instagram-post:hover img,
.instagram-post:hover video,
.instagram-post:focus-visible img,
.instagram-post:focus-visible video {
  transform: scale(1.035);
  opacity: 0.86;
}

.instagram-post:hover .instagram-post__caption,
.instagram-post:focus-visible .instagram-post__caption {
  opacity: 1;
  transform: translateY(0);
}

.field-action {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.behold-fallback {
  margin-top: 18px;
  padding: 26px;
  border-radius: 18px;
  border: 2px dashed var(--line-light);
  background: rgba(16, 23, 44, 0.03);
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.behold-fallback a {
  color: #b93156;
  font-weight: 800;
  text-decoration: none;
}

.not-found-page .hero {
  min-height: min(78vh, 760px);
  align-items: center;
}

.not-found-page .hero-copy {
  justify-content: center;
}

.not-found-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found-signoff {
  margin-top: 18px;
  font-style: italic;
  color: rgba(247, 240, 228, 0.92);
}

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

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

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

  .not-found-page .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px 16px 54px;
  }

  .hero,
  .project-section,
  .now-listening,
  .from-the-field {
    padding: 22px;
    border-radius: 14px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero-sub,
  .section-copy {
    font-size: 0.97rem;
  }

  .eyebrow {
    transform: none;
  }

  .hero-actions,
  .project-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-link {
    width: 100%;
  }

  .hero-visual-caption {
    padding: 20px;
  }

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

  .hero-visual-caption h2 {
    font-size: 1.65rem;
  }

  .feature-mark {
    right: 12px;
    top: 8px;
    font-size: 4.7rem;
  }

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

  .now-listening {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .listening-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .listening-art {
    width: 84px;
  }

  .listening-open {
    display: none;
  }

  .section-head h2 {
    font-size: 1.65rem;
    white-space: normal;
  }

  .project-card-link {
    min-height: 250px;
  }

  .field-widget-frame {
    padding: 8px;
  }
}

/* Top logo banner */
.logo-banner{
  display:grid;
  grid-template-columns:clamp(300px,27vw,350px) minmax(0,1fr);
  align-items:stretch;
  width:100%;
  height:clamp(300px,27vw,350px);
  margin:0 0 22px;
  padding:0;
  border-radius:14px;
  border:2px solid var(--line-light);
  background:
    radial-gradient(circle at 90% 0%, rgba(255,114,84,0.16), transparent 42%),
    linear-gradient(150deg, rgba(17,20,47,0.7), rgba(45,21,48,0.55));
  overflow:hidden;
}
.logo-banner__copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  min-width:0;
  padding:clamp(28px,4vw,48px) clamp(34px,5vw,64px);
}
.logo-banner__tagline{
  order:2;
  margin:clamp(22px,3vw,30px) 0 0;
  max-width:none;
  color:rgba(247,240,228,0.72);
  font-size:clamp(1.7rem,2.65vw,2.5rem);
  white-space:nowrap;
}
.logo-banner__mark{
  order:1;
  margin:0;
  font-family:"Newsreader", Georgia, serif;
  font-weight:500;
  font-size:clamp(3.4rem,7vw,6.3rem);
  line-height:0.9;
  letter-spacing:-0.055em;
  color:var(--paper);
}
.logo-banner__mark span{ color:var(--coral); }
.logo-banner__description{
  order:3;
  margin:14px 0 0;
  max-width:43rem;
  font-family:"IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size:clamp(0.98rem,1.5vw,1.12rem);
  font-style:normal;
  line-height:1.55;
  color:rgba(247,240,228,0.68);
}
.logo-banner__image{
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  margin:0;
  object-fit:cover;
  object-position:center;
  border-right:2px solid var(--line-light);
}

.hero-section-kicker{
  margin-bottom:0;
}

.hero .hero-visual{
  margin-top:35px;
}

@media (max-width: 760px) {
  .logo-banner {
    grid-template-columns:1fr;
    height:auto;
  }

  .logo-banner__copy {
    padding:28px 24px 32px;
  }

  .logo-banner__tagline {
    margin-top:20px;
    white-space:normal;
  }

  .logo-banner__image {
    min-height:0;
    aspect-ratio:16 / 10;
    object-position:center top;
    border-right:0;
    border-bottom:2px solid var(--line-light);
  }

  .logo-banner__mark {
    font-size:clamp(3rem,15vw,4.7rem);
  }
}
