:root {
  color-scheme: dark;
  --coal: #111111;
  --graphite: #1e1a17;
  --graphite-2: #28211d;
  --amber: #c8913a;
  --amber-soft: #e0b36a;
  --wine: #8b1e2d;
  --wine-hot: #a5283a;
  --ivory: #f4e8d0;
  --muted: #b8a99a;
  --blue: #234b5d;
  --green: #1f4d3a;
  --border: rgba(244, 232, 208, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--coal);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection {
  background: var(--amber);
  color: #130f0c;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.88), rgba(12, 10, 9, 0.42) 72%, transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 145, 58, 0.55);
  border-radius: 50%;
  object-fit: cover;
  background: #070707;
}

.brand strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: var(--ivory);
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--amber-soft);
  font-size: 12px;
  line-height: 1.2;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: rgba(244, 232, 208, 0.8);
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 56px) 72px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-st-pub.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.76) 32%, rgba(8, 8, 8, 0.24) 66%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.16) 0%, rgba(8, 8, 8, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.96;
  font-weight: 700;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(56px, 9vw, 112px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 72px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy,
.section-copy > p,
.section-heading p,
.form-copy > p,
.section-local p {
  max-width: 640px;
  color: rgba(244, 232, 208, 0.82);
  font-size: 18px;
}

.hero-copy {
  margin-bottom: 30px;
  font-size: 20px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  color: var(--ivory);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--wine);
  box-shadow: 0 14px 28px rgba(139, 30, 45, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--wine-hot);
}

.button-secondary {
  background: rgba(244, 232, 208, 0.08);
  border-color: rgba(244, 232, 208, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(224, 179, 106, 0.7);
  background: rgba(200, 145, 58, 0.14);
}

.icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.icon svg,
.feature-icon svg,
.pin svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 56px);
  bottom: 38px;
  z-index: 3;
  width: min(330px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(244, 232, 208, 0.2);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 26px;
  line-height: 1.08;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 92px clamp(18px, 5vw, 56px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-intro {
  background:
    radial-gradient(circle at 12% 0%, rgba(139, 30, 45, 0.18), transparent 28%),
    linear-gradient(180deg, #151210 0%, var(--graphite) 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature,
.style-item,
.event-strip article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(244, 232, 208, 0.045);
}

.feature {
  padding: 20px;
  min-height: 212px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #17120d;
  background: var(--amber);
}

.feature p,
.style-item p,
.event-strip span,
figcaption,
.check-list {
  color: var(--muted);
}

.feature p {
  margin: 0;
  font-size: 15px;
}

.image-feature {
  margin: 0;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 12px;
  font-size: 14px;
}

.section-program {
  background:
    linear-gradient(135deg, rgba(35, 75, 93, 0.28), transparent 34%),
    linear-gradient(315deg, rgba(31, 77, 58, 0.2), transparent 32%),
    var(--coal);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

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

.style-list {
  display: grid;
  gap: 14px;
}

.style-item {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.style-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
}

.style-blues::before {
  background: var(--blue);
}

.style-jazz::before {
  background: var(--green);
}

.style-rock::before {
  background: var(--wine-hot);
}

.style-item span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--amber-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.style-item p {
  margin-bottom: 0;
}

.section-local {
  background:
    linear-gradient(90deg, rgba(200, 145, 58, 0.12), transparent 54%),
    var(--graphite-2);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.address-box {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(200, 145, 58, 0.42);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.36);
}

.pin {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--amber-soft);
}

.address-box strong,
.address-box span {
  display: block;
}

.address-box span {
  color: var(--muted);
}

.event-strip {
  display: grid;
  gap: 14px;
}

.event-strip article {
  padding: 22px;
}

.event-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
}

.section-form {
  background:
    radial-gradient(circle at 82% 18%, rgba(139, 30, 45, 0.22), transparent 30%),
    linear-gradient(180deg, #171311 0%, #0f0f0f 100%);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: inset 0 0 0 4px #171311;
  content: "";
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(244, 232, 208, 0.2);
  border-radius: 8px;
  background: rgba(244, 232, 208, 0.055);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(244, 232, 208, 0.18);
  border-radius: 6px;
  padding: 12px;
  background: rgba(8, 8, 8, 0.72);
  color: var(--ivory);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 145, 58, 0.18);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--amber-soft);
  font-size: 14px;
}

.site-footer {
  padding: 32px clamp(18px, 5vw, 56px);
  border-top: 1px solid rgba(244, 232, 208, 0.12);
  background: #090909;
}

.footer-inner {
  width: min(100%, var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

@media (max-width: 940px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
    padding-bottom: 190px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.42)),
      linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.86));
  }

  .split,
  .music-layout,
  .local-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

  .feature {
    min-height: auto;
  }

  .music-layout img {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 21px;
  }

  .hero {
    min-height: clamp(760px, 94svh, 900px);
    align-items: center;
    padding: 96px 16px 190px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-copy,
  .section-copy > p,
  .section-heading p,
  .form-copy > p,
  .section-local p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 66px 16px;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 28px;
    width: auto;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
