@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;700;800&family=Pathway+Gothic+One&display=swap");

:root {
  --primary: #943c25;
  --primary-dark: #5a2a20;
  --charcoal: #15191c;
  --charcoal-soft: #20262a;
  --panel: #ebe1cc;
  --panel-muted: #cfc1a4;
  --cream: #f2e7cf;
  --muted: #9f9585;
  --ink: #1d1b18;
  --line: rgba(242, 231, 207, 0.22);
  --dark-line: rgba(29, 27, 24, 0.15);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--charcoal);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("grain.svg");
  opacity: 0.08;
  mix-blend-mode: screen;
  z-index: 50;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  background: rgba(88, 44, 35, 0.96);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 231, 207, 0.6);
  background: var(--primary);
  color: var(--cream);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.brand-location {
  margin-top: 4px;
  color: rgba(242, 231, 207, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 19px 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
  color: rgba(242, 231, 207, 0.84);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 1.08rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--cream);
  background: rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 231, 207, 0.35);
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
}

h1,
h2,
h3,
.eyebrow,
.button,
.button-secondary,
.text-link,
.service-icon,
.timeline-year {
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: 0.86;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
}

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

.eyebrow {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.05rem;
}

.hero {
  min-height: calc(100vh - 58px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(15, 19, 22, 0.72), rgba(15, 19, 22, 0.86)),
    url("hero-red-ridge.svg") center / cover;
}

.hero-inner {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
}

.home-logo {
  display: grid;
  justify-items: center;
  margin: 0 auto clamp(32px, 5vw, 58px);
  text-align: center;
}

.home-logo span:first-child {
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: clamp(3.8rem, 9vw, 7.2rem);
  font-weight: 700;
  line-height: 0.76;
  text-transform: uppercase;
}

.home-logo span:nth-child(2) {
  margin-top: -2px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.76;
  text-transform: uppercase;
}

.home-logo small {
  margin-top: 18px;
  color: rgba(242, 231, 207, 0.78);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  text-transform: uppercase;
}

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

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: rgba(242, 231, 207, 0.75);
  font-size: 1.02rem;
}

.tile-grid {
  width: min(890px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 56px);
}

.nav-tile {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border: 2px solid rgba(242, 231, 207, 0.78);
  color: var(--cream);
  background: var(--charcoal-soft);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.nav-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(148, 60, 37, 0.52), rgba(148, 60, 37, 0) 34%),
    var(--tile-image, linear-gradient(135deg, #282f34, #171a1d));
  background-size: cover;
  background-position: center;
  filter: sepia(0.22) saturate(0.72);
  transition: transform 240ms ease, filter 240ms ease;
}

.nav-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

.nav-tile span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 16px;
  text-align: right;
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.nav-tile:hover::before {
  transform: scale(1.05);
  filter: sepia(0.12) saturate(0.95);
}

.tile-roster {
  --tile-image: url("tile-roster.svg");
}

.tile-audio,
.tile-video {
  --tile-image: url("tile-production.svg");
}

.tile-owners {
  --tile-image: url("tile-owners.svg");
}

.tile-history {
  --tile-image: url("tile-history.svg");
}

.tile-events {
  --tile-image: url("tile-events.svg");
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  background: var(--primary);
  color: var(--cream);
  font-size: 1.15rem;
  text-decoration: none;
}

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

.button-secondary {
  border-color: rgba(242, 231, 207, 0.45);
  background: rgba(242, 231, 207, 0.07);
}

.button-secondary:hover {
  background: rgba(242, 231, 207, 0.14);
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
  background: var(--panel);
  color: var(--ink);
}

.section.dark,
.section.alt {
  background: var(--charcoal);
  color: var(--cream);
}

.container {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 32px;
}

.section:not(.dark):not(.alt) .section-heading p:not(.eyebrow),
.section:not(.dark):not(.alt) .person-card p,
.section:not(.dark):not(.alt) .service-card p,
.section:not(.dark):not(.alt) .story-callout p,
.section:not(.dark):not(.alt) .stat p,
.section:not(.dark):not(.alt) .timeline p,
.detail-copy p {
  color: #5f574c;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.stamp-panel {
  min-height: 360px;
  padding: 28px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(242, 231, 207, 0.3);
  background:
    linear-gradient(rgba(15, 19, 22, 0.12), rgba(15, 19, 22, 0.7)),
    url("studio-room.svg") center / cover;
  box-shadow: var(--shadow);
  color: var(--cream);
}

.stamp-panel strong {
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.stamp-panel span {
  margin-top: 12px;
  color: rgba(242, 231, 207, 0.78);
  text-transform: uppercase;
}

.service-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.service-card,
.stat,
.story-callout,
.person-card,
.contact-strip {
  border: 1px solid var(--dark-line);
  background: rgba(255, 250, 238, 0.66);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.section.dark .service-card,
.section.dark .stat,
.section.dark .story-callout,
.section.dark .person-card,
.section.dark .contact-strip,
.section.alt .service-card,
.section.alt .stat,
.section.alt .story-callout,
.section.alt .person-card,
.section.alt .contact-strip {
  border-color: var(--line);
  background: rgba(242, 231, 207, 0.06);
}

.service-card,
.stat,
.story-callout {
  padding: 24px;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--primary);
  color: var(--cream);
  font-size: 1.45rem;
}

.service-card h3 {
  margin-bottom: 10px;
}

.section.dark .service-card p,
.section.dark .stat p,
.section.dark .story-callout p,
.section.dark .person-card p,
.section.dark .timeline p,
.section.alt .service-card p,
.section.alt .stat p,
.section.alt .story-callout p,
.section.alt .person-card p,
.section.alt .timeline p {
  color: rgba(242, 231, 207, 0.72);
}

.stat strong {
  display: block;
  color: var(--primary);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.9;
}

.person-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 18px;
}

.portrait-link,
.artist-image-link,
.person-card h3 a {
  text-decoration: none;
}

.artist-image-link {
  display: block;
}

.artist-card-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(242, 231, 207, 0.28);
  background: var(--charcoal-soft);
}

.portrait {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 231, 207, 0.28);
  background: linear-gradient(135deg, #292e31, var(--primary));
  color: var(--cream);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-size: 1.15rem;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.owners-section {
  min-height: 520px;
  display: grid;
  align-items: center;
}

.owners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.owner-feature-card {
  display: grid;
  min-height: 520px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 250, 238, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.owner-visual {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--cream);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(148, 60, 37, 0.3), rgba(0, 0, 0, 0.35)),
    url("tile-owners.svg") center / cover;
}

.owner-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(242, 231, 207, 0.36);
}

.owner-visual span {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 231, 207, 0.7);
  background: rgba(148, 60, 37, 0.82);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 4.2rem;
  line-height: 1;
}

.owner-visual-marcus-bell {
  background:
    linear-gradient(180deg, rgba(148, 60, 37, 0.24), rgba(0, 0, 0, 0.42)),
    url("tile-production.svg") center / cover;
}

.owner-feature-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
}

.owner-feature-copy h3 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.owner-feature-copy h3 a {
  text-decoration: none;
}

.owner-feature-copy p {
  color: #5f574c;
}

.owner-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.owner-highlight-list li {
  padding: 7px 10px;
  border: 1px solid rgba(148, 60, 37, 0.3);
  background: rgba(148, 60, 37, 0.08);
  color: var(--primary-dark);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(70px, 10vw, 126px) 0 clamp(42px, 6vw, 78px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(15, 19, 22, 0.94), rgba(15, 19, 22, 0.7)),
    url("page-header.svg") center / cover;
}

.page-hero .container {
  max-width: 960px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
}

.roster-band + .roster-band {
  margin-top: 56px;
}

.detail-hero {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--panel);
  color: var(--ink);
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.detail-layout .portrait {
  width: min(260px, 100%);
  height: auto;
  aspect-ratio: 1;
  font-size: clamp(3rem, 6vw, 5rem);
  box-shadow: var(--shadow);
}

.detail-copy {
  display: grid;
  gap: 22px;
}

.detail-copy h1 {
  max-width: 14ch;
  color: var(--ink);
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.detail-copy .lead {
  color: var(--primary);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--primary);
  background: rgba(255, 250, 238, 0.72);
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--dark-line);
}

.section.dark .timeline-item {
  border-bottom-color: var(--line);
}

.timeline-year {
  color: var(--primary);
  font-size: 2.1rem;
}

.contact-strip {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

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

.audio-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 250, 238, 0.74);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.audio-card span {
  display: block;
  color: var(--primary);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.audio-card strong {
  display: block;
  color: #5f574c;
  font-size: 0.88rem;
  font-weight: 800;
}

.audio-card audio {
  width: 100%;
}

.audio-credit-text {
  min-height: 42px;
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(90deg, rgba(148, 60, 37, 0.12), rgba(255, 255, 255, 0.28));
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
  padding: 13px 14px;
}

.audio-credit-text strong {
  display: block;
  color: var(--ink);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
}

.audio-credit-text span {
  display: block;
  color: var(--primary-dark);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 1.24rem;
}

.audio-credit-text em {
  display: block;
  color: #5f574c;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.inquiry-aside {
  position: sticky;
  top: 86px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--dark-line);
  background: rgba(255, 250, 238, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form span {
  color: var(--primary-dark);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(29, 27, 24, 0.22);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.inquiry-form textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.site-footer {
  padding: 42px 0;
  background: #101315;
  color: var(--cream);
}

.footer-grid {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: rgba(242, 231, 207, 0.68);
}

.footer-grid strong {
  display: block;
  color: var(--cream);
  font-family: "Pathway Gothic One", Impact, sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.98rem;
  }
}

@media (max-width: 960px) {
  .site-nav {
    position: absolute;
    top: 58px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(242, 231, 207, 0.22);
    background: var(--primary-dark);
  }

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

  .site-nav a {
    border-left: 0;
    padding: 12px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .split,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-aside {
    position: static;
  }

  .detail-layout .portrait {
    max-width: 260px;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container,
  .hero-inner,
  .footer-grid {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-location {
    font-size: 0.64rem;
  }

  .hero {
    min-height: auto;
  }

  .tile-grid,
  .service-grid,
  .card-grid,
  .audio-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .nav-tile {
    min-height: 132px;
  }

  h1 {
    font-size: clamp(3.6rem, 19vw, 5.2rem);
  }

  .person-card {
    grid-template-columns: 72px 1fr;
  }

  .portrait {
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-strip,
  .footer-grid {
    display: grid;
  }
}
