:root {
  --bg: #0e0e0e;
  --surface: #171717;
  --surface-alt: #2b2b2b;
  --text: #ffffff;
  --muted: #c8c8c8;
  --gold: #c89b3c;
  --ember: #e25822;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top, rgba(200, 155, 60, 0.18), transparent 28%),
    linear-gradient(180deg, #121212 0%, #0e0e0e 38%, #090909 100%);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header,
.site-footer,
.hero,
.section,
.page-intro {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(14, 14, 14, 0.82);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(200, 155, 60, 0.45);
  box-shadow: 0 0 0 4px rgba(226, 88, 34, 0.08);
}

.brand-text,
.eyebrow,
.nav-link,
.nav-cta,
.button,
h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.brand-text {
  font-size: 1.6rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link,
.nav-cta {
  font-size: 1rem;
  color: var(--muted);
}

.nav-link.active,
.nav-link:hover,
.nav-cta.active,
.nav-cta:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(200, 155, 60, 0.4);
  background: linear-gradient(180deg, rgba(200, 155, 60, 0.14), rgba(200, 155, 60, 0.06));
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 0.75rem 1rem;
}

.hero,
.page-intro {
  display: grid;
  gap: 1.5rem;
  padding: 5rem 0 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  grid-template-columns: 1.2fr 0.8fr;
  min-height: calc(100dvh - 6rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--gold);
}

h1,
h2,
h3,
.panel-label,
.price-kicker,
.placeholder-title {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  max-width: 12ch;
}

h3 {
  font-size: 2rem;
}

p,
li,
label {
  line-height: 1.65;
  color: var(--muted);
}

.hero-text,
.page-intro p:last-child {
  max-width: 40rem;
  font-size: 1.05rem;
}

.hero-actions,
.callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #f0bf58);
  color: #111111;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel,
.card,
.price-card,
.embed-placeholder,
.consult-panel,
.contact-form {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-panel,
.consult-panel,
.embed-placeholder {
  padding: 2rem;
}

.panel-label,
.price-kicker,
.placeholder-title {
  font-size: 1rem;
  color: var(--ember);
}

.panel-quote {
  margin: 0.75rem 0 1rem;
  font-size: 1.4rem;
  color: var(--text);
}

.panel-points {
  margin: 0;
  padding-left: 1.15rem;
}

.section {
  padding: 2rem 0;
}

.section-dark,
.section-band {
  padding: 2rem;
}

.section-dark {
  background: rgba(22, 22, 22, 0.92);
}

.section-band {
  background: rgba(43, 43, 43, 0.82);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.story-grid,
.card-grid,
.pricing-grid,
.two-column {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card,
.price-card {
  padding: 1.5rem;
}

.featured {
  border-color: rgba(200, 155, 60, 0.4);
  transform: translateY(-0.35rem);
}

.text-link {
  color: var(--gold);
}

.stack {
  display: grid;
  gap: 1rem;
}

.integration-note {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.page-shell {
  padding-bottom: 3rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold);
}

.integration-link.is-placeholder {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.calendly-shell {
  min-height: 22rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.calendly-frame {
  width: 100%;
  min-height: 38rem;
  border: 0;
  background: #111111;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
}

@media (max-width: 960px) {
  .hero,
  .story-grid,
  .two-column,
  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 0.25rem;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta,
  .nav-link {
    padding: 0.4rem 0;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .section-dark,
  .section-band {
    padding: 1.25rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .button {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
