:root {
  --bg: #15110f;
  --bg-soft: #241c19;
  --paper: #fff9f1;
  --paper-2: #f3e8d7;
  --text: #231b18;
  --muted: #6e625b;
  --gold: #d8ad60;
  --gold-dark: #9a6c22;
  --line: rgba(35, 27, 24, 0.14);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--gold);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 16px; }

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

.site-header {
  min-height: 860px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(21, 17, 15, 0.92) 0%, rgba(21, 17, 15, 0.82) 32%, rgba(21, 17, 15, 0.55) 55%, rgba(21, 17, 15, 0.82) 100%),
    radial-gradient(circle at 80% 18%, rgba(216, 173, 96, 0.26), transparent 22%),
    url("header-live-music-events.png") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.26));
  z-index: 0;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px -10%;
  height: 320px;
  background: var(--paper);
  border-radius: 50% 50% 0 0;
  z-index: 0;
}
.navbar, .hero { position: relative; z-index: 1; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.brand-mark circle { fill: rgba(216, 173, 96, 0.1); stroke: currentColor; stroke-width: 2; }
.brand-mark path { stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-size: 1.03rem; letter-spacing: 0.01em; }
.brand small { display: block; color: rgba(255,255,255,0.72); margin-top: 1px; }
.menu { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,0.9); }
.menu a { transition: color .2s ease, transform .2s ease; }
.menu a:hover { color: white; transform: translateY(-1px); }
.nav-cta {
  border: 1px solid rgba(216, 173, 96, 0.55);
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--gold) !important;
  background: rgba(255,255,255,0.04);
}
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 680px);
  justify-content: start;
  gap: 24px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 225px;
}
.hero-content {
  max-width: 700px;
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  margin-bottom: 26px;
  max-width: 650px;
  text-wrap: balance;
}
.hero-text {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  max-width: 690px;
  margin-bottom: 34px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 800;
  min-height: 52px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: var(--bg); box-shadow: 0 12px 30px rgba(216,173,96,.24); }
.button.primary:hover { background: #e8bf75; }
.button.secondary { border: 1px solid var(--white-line); color: var(--paper); background: rgba(255,255,255,0.06); }
.button.secondary.light { border-color: rgba(255,255,255,0.35); }

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  max-width: 620px;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(21,17,15,0.44);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.92);
  font-weight: 650;
  box-shadow: 0 12px 26px rgba(0,0,0,0.15);
}

.section { padding: 84px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -0.055em; margin-bottom: 16px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 192px;
  box-shadow: 0 14px 36px rgba(35,27,24,.06);
}
.card h3 { font-size: 1.32rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.card p { color: var(--muted); margin-bottom: 0; }

.formats { background: #fff4e3; border-block: 1px solid rgba(154,108,34,.12); width: 100%; max-width: none; }
.formats > * { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.format-list { display: flex; flex-wrap: wrap; gap: 12px; }
.format-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(154,108,34,.2);
  background: rgba(255,255,255,.68);
  padding: 10px 16px;
  border-radius: 999px;
  color: #4f3820;
  font-weight: 720;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step {
  padding: 26px;
  background: var(--bg);
  color: var(--paper);
  border-radius: var(--radius);
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: var(--gold);
  font-weight: 900;
  margin-bottom: 26px;
}
.step h3 { font-size: 1.25rem; letter-spacing: -0.025em; }
.step p { color: rgba(255,255,255,.7); margin-bottom: 0; }

.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cta-box {
  border-radius: calc(var(--radius) + 4px);
  background: white;
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: 0 16px 44px rgba(35,27,24,.08);
}
.cta-box.dark { background: var(--bg); color: var(--paper); }
.cta-box h2 { font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1; letter-spacing: -0.05em; margin-bottom: 14px; }
.cta-box p { color: var(--muted); margin-bottom: 26px; }
.cta-box.dark p { color: rgba(255,255,255,.72); }

.forms-section { padding-top: 24px; }
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.tab {
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 999px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 850;
}
.tab.active { background: var(--bg); color: var(--paper); border-color: var(--bg); }
.forms-wrapper {
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lead-form { display: none; padding: 34px; }
.lead-form.active { display: block; }
.form-intro { max-width: 720px; margin-bottom: 26px; }
.form-intro h3 { font-size: 1.7rem; letter-spacing: -0.035em; margin-bottom: 8px; }
.form-intro p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label {
  display: grid;
  gap: 8px;
  color: #4b403a;
  font-weight: 750;
}
label.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(35,27,24,.18);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fffdf9;
  color: var(--text);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { resize: vertical; min-height: 116px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(216,173,96,.16);
  background: white;
}
.form-submit { margin-top: 24px; }
.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.form-status.success { color: #28603b; }
.form-status.error { color: #a03425; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer strong { color: var(--text); font-size: 1.12rem; }
.site-footer p { margin-bottom: 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-weight: 800; color: var(--text); }

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.instagram-icon {
  width: 21px;
  height: 21px;
  color: var(--gold-dark);
}
.instagram-icon rect,
.instagram-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.instagram-icon circle:last-child {
  fill: currentColor;
  stroke: none;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { min-height: auto; background-position: center right; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 168px;
  }
  .hero-content { max-width: 100%; }
  .services-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .split-cta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section-pad { width: min(var(--max), calc(100% - 24px)); }
  .navbar { align-items: flex-start; }
  .brand small { display: none; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--white-line);
    background: rgba(255,255,255,.08);
    color: var(--paper);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 850;
  }
  .menu {
    position: absolute;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(21,17,15,.96);
    border: 1px solid var(--white-line);
    border-radius: 22px;
    padding: 14px;
    gap: 4px;
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.6rem); }
  .hero {
    padding-top: 44px;
    padding-bottom: 126px;
  }
  .hero-points span {
    width: 100%;
    border-radius: 20px;
    padding: 14px 16px;
  }
  .section { padding: 62px 0; }
  .services-grid, .steps, .form-grid { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; }
  .cta-box { padding: 28px; }
  .site-footer { display: block; }
  .footer-links { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
