/* ==========================================================================
   Macerou Entertainment — shared stylesheet
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --bg-panel: #161513;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f3ef;
  --text-muted: #b3aea5;
  --text-faint: #7c766c;
  --gold: #c9a24a;
  --gold-light: #e8cd88;
  --gold-dark: #8a6c2f;
  --font-body: "Montserrat", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --container: 1180px;
  --header-h: 79px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow-center {
  justify-content: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: #14110a;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 50px;
  width: auto;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--text);
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

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

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

.main-nav a.is-active {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--text);
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.35) 40%, rgba(6,6,6,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
  color: var(--text);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floaty 2.6s ease-in-out infinite;
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  transform: rotate(45deg);
  margin-top: -4px;
}

@keyframes floaty {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Page header (interior pages) ---------- */

.page-header {
  position: relative;
  padding: 110px 0;
  text-align: center;
  background: radial-gradient(ellipse at top, #1a1712 0%, var(--bg) 65%);
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  font-size: clamp(38px, 6vw, 60px);
  color: var(--text);
}

.page-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}

/* ---------- Sections ---------- */

section {
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--text);
}

/* ---------- Three-column feature grid ---------- */

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

.feature {
  text-align: center;
  padding: 0 10px;
}

.feature-index {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 18px;
  display: block;
}

.feature h3 {
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

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

/* ---------- Split / CTA band ---------- */

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-cta-panel {
  padding: 90px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.split-cta-panel:first-child {
  border-right: 1px solid var(--line);
  background: var(--bg-alt);
}

.split-cta-panel h3 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 12px;
}

.split-cta-panel p {
  max-width: 380px;
  margin: 0 auto 28px;
}

/* ---------- Stats row ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--gold-light);
  display: block;
}

.stat .label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
}

/* ---------- Two column content ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.two-col img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col.reverse .col-media {
  order: 2;
}

.check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 15px;
}

.check-list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- Category / roster grid ---------- */

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

.category-card {
  border: 1px solid var(--line);
  padding: 40px 26px;
  text-align: center;
  background: var(--bg-panel);
  transition: border-color .25s ease, transform .25s ease;
}

.category-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.category-card h4 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 13.5px;
  margin: 0;
}

/* ---------- Tag group (compact category list) ---------- */

.tag-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 20px 0;
}

.tag-group + .tag-group {
  border-top: 1px solid var(--line);
}

.tag-group-label {
  flex: 0 0 auto;
  min-width: 140px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  transition: border-color .2s ease, color .2s ease;
}

.tag:hover {
  border-color: var(--gold-dark);
  color: var(--gold-light);
}

/* ---------- Testimonial-style quote ---------- */

.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  color: var(--text);
  margin: 0 0 22px;
  line-height: 1.4;
}

.quote-block cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Forms ---------- */

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 56px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  margin-bottom: 22px;
}

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

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 9px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 2px;
  outline: none;
  transition: border-color .2s ease;
}

.field select option {
  background: #111;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 2px;
}

.field .choice {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-muted);
  margin-bottom: 0;
  cursor: pointer;
}

.choice input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex: none;
}

.form-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 18px;
}

.form-status {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-light);
  display: none;
}

.form-status.is-visible {
  display: block;
}

/* ---------- Contact strip ---------- */

.contact-strip {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.contact-strip .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.contact-strip .value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-light);
}

/* ---------- Footer ---------- */

.site-footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col.reverse .col-media {
    order: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .split-cta {
    grid-template-columns: 1fr;
  }

  .split-cta-panel:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    top: 0;
    background: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid var(--line);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 15px;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 34px 24px;
  }

  section {
    padding: 74px 0;
  }

  .page-header {
    padding: 70px 0;
  }

  .contact-strip {
    gap: 30px;
  }

  .tag-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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