:root {
  --ink: #141312;
  --charcoal: #202020;
  --paper: #f5efe4;
  --paper-soft: #e5d8c7;
  --muted: #9f9488;
  --line: rgba(245, 239, 228, 0.18);
  --copper: #c17a3a;
  --copper-bright: #f1a64b;
  --green: #506b5c;
  --blue: #587287;
  --red: #8d4f45;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 30;
  padding: 0.6rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 19, 18, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff7e8;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(245, 239, 228, 0.78);
  border-radius: 0;
  color: var(--white);
  background: rgba(32, 32, 32, 0.92);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.button-link:hover {
  border-color: var(--copper);
  color: var(--ink);
  background: var(--copper);
}

.site-nav a.external-nav {
  border-color: var(--copper-bright);
  color: #ffd39a;
  box-shadow: 0 0 0 1px rgba(241, 166, 75, 0.35);
}

.site-nav a.external-nav:hover {
  color: var(--ink);
  background: var(--copper-bright);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(780px, calc(100vh - 40px));
  overflow: hidden;
  background: var(--charcoal);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at left top, rgba(20, 19, 18, 0.6), rgba(20, 19, 18, 0.08) 38%, transparent 62%),
    radial-gradient(circle at right bottom, rgba(20, 19, 18, 0.84), rgba(20, 19, 18, 0.22) 42%, transparent 66%),
    rgba(20, 19, 18, 0.04);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  text-align: center;
}

.eyebrow,
.stat-label,
.companion-kicker,
.placeholder-title {
  margin: 0;
  color: var(--copper-bright);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  margin-top: 0.6rem;
  font-size: clamp(2.6rem, 4.35vw, 4.55rem);
  white-space: nowrap;
}

h2 {
  color: var(--paper-soft);
  font-size: clamp(2rem, 3.8vw, 3.65rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.1rem auto 0;
  color: rgba(255, 250, 240, 0.96);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.92),
    0 1px 2px rgba(0, 0, 0, 0.92);
}

.hero .eyebrow {
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  color: #ffb45d;
}

.hero h1,
.hero .eyebrow {
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.9),
    0 1px 2px rgba(0, 0, 0, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  background: var(--ink);
}

.intro-band > div {
  min-height: 0;
  padding: 0.95rem clamp(1rem, 3vw, 1.5rem);
  background: var(--ink);
  text-align: center;
}

.intro-band p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--paper-soft);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 2.8vw, 2.75rem) 0;
}

.section + .section {
  border-top: 0;
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  max-width: 780px;
  margin: 0 auto clamp(1rem, 2vw, 1.75rem);
  text-align: center;
}

.studio-layout,
.work-layout,
.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.work-layout {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}

.studio-layout {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.studio-copy p {
  margin-right: auto;
  margin-left: auto;
}

.room-gallery {
  margin-top: clamp(1rem, 2.4vw, 2rem);
}

.work-layout .work-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.studio-copy,
.work-copy,
.history-copy,
.gear-note {
  color: var(--paper-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.studio-copy p,
.work-copy p,
.history-copy p,
.gear-note p {
  margin: 0;
}

.studio-copy p + p,
.work-copy p + p,
.history-copy p + p {
  margin-top: 1rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #242220;
  box-shadow: var(--shadow);
}

.photo-card.large {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-card.large img {
  object-position: center 54%;
  filter: brightness(0.82);
}

.photo-card.large {
  position: relative;
}

.photo-card.large::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at left top, rgba(20, 19, 18, 0.64), rgba(20, 19, 18, 0.18) 34%, transparent 58%);
}

.photo-card:not(.large) img {
  aspect-ratio: 4 / 3;
}

.photo-card figcaption {
  min-height: 72px;
  padding: 0.8rem;
  color: var(--copper-bright);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.work-section {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background: #11100f;
  color: var(--paper);
}

.work-section .section-heading,
.work-section .work-copy {
  color: var(--paper);
}

.work-section .work-copy p {
  color: var(--paper-soft);
}

.playlist-panel {
  min-height: 420px;
  border: 1px solid rgba(20, 19, 18, 0.18);
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 19, 18, 0.58), rgba(80, 107, 92, 0.42)),
    url("../images/audiomind-horns-2026.jpg") center / cover;
  box-shadow: 0 18px 48px rgba(20, 19, 18, 0.18);
}

.playlist-card {
  display: grid;
  align-content: end;
  justify-items: center;
  min-height: 420px;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: var(--white);
  background: linear-gradient(0deg, rgba(20, 19, 18, 0.72), rgba(20, 19, 18, 0.04));
  text-align: center;
}

.playlist-card h3 {
  margin-top: 0.35rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.playlist-card p:not(.placeholder-title) {
  max-width: 620px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.playlist-card .music-links .button-link {
  border-color: rgba(245, 239, 228, 0.78);
  box-shadow:
    0 0 0 1px rgba(193, 122, 58, 0.34),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.playlist-card .music-links {
  justify-content: center;
}

.companion-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-top: clamp(1rem, 2.4vw, 2rem);
  padding-top: clamp(1rem, 2.4vw, 2rem);
  padding-bottom: clamp(1rem, 2.4vw, 2rem);
  border-top: 2px solid var(--copper-bright);
  border-bottom: 2px solid var(--copper-bright);
}

.companion-section p {
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  text-align: center;
}

.companion-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: center;
  justify-items: center;
  margin-top: 1.4rem;
  padding: 1.15rem;
  border: 1px solid rgba(241, 166, 75, 0.58);
  border-radius: 0;
  color: var(--paper);
  background: #26362f;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(20, 19, 18, 0.16);
}

.companion-card > span {
  justify-items: center;
  text-align: center;
}

.companion-card:hover {
  border-color: var(--copper-bright);
}

.companion-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin: 0.55rem auto;
  border: 0;
  border-radius: 50%;
}

.companion-card span {
  display: grid;
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0;
}

.button-link.dark {
  border-color: rgba(245, 239, 228, 0.78);
  color: var(--paper);
  background: var(--ink);
}

.artist-note-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.artist-note-layout > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--paper-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  text-align: center;
}

.artist-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.artist-note-grid article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #242220;
  text-align: center;
}

.artist-note-grid h3 {
  margin: 0.35rem 0 0.55rem;
}

.artist-note-grid p:last-child {
  margin: 0;
  color: var(--paper-soft);
}

.companion-title {
  font-size: 1.65rem;
  font-weight: 700;
}

.companion-url {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 0.65rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--copper-bright);
  color: #ffd39a;
  background: rgba(32, 32, 32, 0.92);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(241, 166, 75, 0.35);
}

.companion-copy {
  margin-top: 0.35rem;
  color: rgba(245, 239, 228, 0.72);
}

.companion-note {
  max-width: 640px;
  margin-top: 0.75rem;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gear-grid article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #242220;
}

.gear-grid h3 {
  margin-bottom: 0.8rem;
}

.gear-grid ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--paper-soft);
}

.gear-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #242220;
}

.gear-note img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 54%;
  filter: brightness(0.84);
}

.gear-note {
  position: relative;
}

.gear-note::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(58%, 760px);
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at left top, rgba(20, 19, 18, 0.58), rgba(20, 19, 18, 0.16) 38%, transparent 64%);
}

.gear-note p {
  align-self: center;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.history-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
}

.history-layout img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.history-copy {
  display: grid;
  align-content: center;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-left: 3px solid var(--copper);
  background: #242220;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  color: var(--copper-bright);
  background: #11100f;
  font-size: 0.95rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 700px;
  }

  .intro-band,
  .studio-layout,
  .work-layout,
  .history-layout,
  .artist-note-layout,
  .companion-section,
  .gear-grid,
  .gear-note {
    grid-template-columns: 1fr;
  }

  .gear-note img,
  .history-layout img {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .brand {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 16rem;
  }

  .site-nav a {
    min-height: 38px;
    padding: 0.48rem 0.62rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(20, 19, 18, 0.8), rgba(20, 19, 18, 0.18) 62%),
      rgba(20, 19, 18, 0.12);
  }

  .hero-copy {
    padding-top: 7rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 8.6vw, 3.05rem);
    overflow-wrap: break-word;
    white-space: normal;
  }

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

  .companion-card img {
    width: 58px;
    height: 58px;
  }

  .artist-note-grid {
    grid-template-columns: 1fr;
  }

  .photo-card.large {
    grid-column: auto;
  }
}
