:root {
  --ink: #f7f8ff;
  --text: #11131c;
  --muted: #626979;
  --line: rgba(17, 19, 28, 0.12);
  --night: #080913;
  --navy: #101b35;
  --cyan: #2bd7ff;
  --magenta: #ff2a93;
  --gold: #d7b36a;
  --paper: #f5f2eb;
  --white: #ffffff;
  --radius: 8px;
  --content: 1180px;
  --shadow: 0 22px 60px rgba(4, 9, 24, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

.hero {
  position: relative;
  min-height: 92vh;
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(4, 6, 18, 0.88) 0%, rgba(4, 6, 18, 0.62) 43%, rgba(4, 6, 18, 0.26) 100%),
    linear-gradient(180deg, rgba(8, 9, 19, 0.14) 0%, rgba(8, 9, 19, 0.82) 100%),
    url("assets/chmx/image1.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 215, 255, 0.8), rgba(255, 42, 147, 0.8), transparent);
}

.topbar,
.hero-content,
.band,
.showcase,
.cases,
.belief,
.footer {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px 0;
}

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

.brand img {
  width: 45px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  font-family: "Noto Serif SC", serif;
  color: rgba(247, 248, 255, 0.68);
  letter-spacing: 0.12em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(247, 248, 255, 0.16);
  background: rgba(8, 9, 19, 0.34);
  backdrop-filter: blur(18px);
}

.menu a {
  padding: 11px 14px;
  color: rgba(247, 248, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(247, 248, 255, 0.22);
  background: rgba(8, 9, 19, 0.46);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: calc(92vh - 122px);
  padding: 58px 0 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--magenta);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2,
blockquote {
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
}

h1 {
  max-width: 1060px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.8rem);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(247, 248, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-proof {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 10px 13px;
  border: 1px solid rgba(43, 215, 255, 0.44);
  color: var(--white);
  background: rgba(8, 9, 19, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  border-color: var(--magenta);
  color: var(--white);
  background: var(--magenta);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 44px 0 0;
  padding: 0;
  border: 1px solid rgba(247, 248, 255, 0.16);
  background: rgba(247, 248, 255, 0.16);
}

.hero-stats div {
  padding: 18px;
  background: rgba(8, 9, 19, 0.42);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(247, 248, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-spotlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin-top: 18px;
}

.hero-spotlights article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 10px;
  border: 1px solid rgba(247, 248, 255, 0.18);
  background: rgba(8, 9, 19, 0.58);
  backdrop-filter: blur(16px);
}

.hero-spotlights img {
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.hero-spotlights span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-spotlights h2 {
  margin-top: 8px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-spotlights p {
  margin: 8px 0 0;
  color: rgba(247, 248, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.band {
  padding: 94px 22px;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 780px;
}

.section-heading .eyebrow,
.showcase .eyebrow,
.belief .eyebrow,
.contact .eyebrow {
  color: #c31871;
}

.legacy-grid,
.service-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legacy-grid article,
.service-grid article,
.case-grid article,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(21, 27, 42, 0.06);
}

.legacy-grid article,
.service-grid article {
  padding: 26px;
}

.legacy-grid span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.legacy-grid h3,
.service-grid h3,
.contact-panel h3 {
  margin-top: 16px;
}

.license-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(195, 24, 113, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 242, 235, 0.74)),
    linear-gradient(90deg, rgba(43, 215, 255, 0.14), rgba(255, 42, 147, 0.12));
  box-shadow: 0 18px 45px rgba(21, 27, 42, 0.08);
}

.license-panel .eyebrow {
  margin-bottom: 12px;
}

.license-panel h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.license-panel p:last-child {
  margin: 0;
}

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

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  padding: 20px 22px 98px;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 22px;
}

.showcase-media {
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.services {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 19, 0.92), rgba(16, 27, 53, 0.94)),
    url("assets/chmx/image12.jpg") center / cover no-repeat;
  color: var(--ink);
}

.services .section-heading,
.services .service-grid {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.services h2,
.services h3 {
  color: var(--ink);
}

.services p,
.services li {
  color: rgba(247, 248, 255, 0.7);
}

.service-grid article {
  border-color: rgba(247, 248, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.cases {
  padding: 96px 22px;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 16px;
  background: var(--night);
  color: var(--ink);
}

.case-feature img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.case-feature div {
  display: grid;
  align-content: center;
  padding: 34px;
}

.case-feature p:not(.eyebrow) {
  color: rgba(247, 248, 255, 0.68);
}

.case-grid article {
  overflow: hidden;
}

.case-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-grid h3,
.case-grid p {
  margin-right: 22px;
  margin-left: 22px;
}

.case-grid h3 {
  margin-top: 22px;
}

.case-grid p {
  margin-bottom: 26px;
}

.venues {
  width: 100%;
  max-width: none;
  background: #11131c;
  color: var(--ink);
}

.venues .section-heading,
.venue-layout {
  width: min(100%, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.venues h2,
.venues h3 {
  color: var(--ink);
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 20px;
}

.venue-image {
  overflow: hidden;
  min-height: 560px;
}

.venue-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.venue-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.venue-list article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.venue-list span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.venue-list p {
  color: rgba(247, 248, 255, 0.68);
}

.belief {
  padding: 102px 22px;
  text-align: center;
}

.belief div {
  max-width: 980px;
  margin: 0 auto;
}

blockquote {
  color: var(--text);
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
}

.belief p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: start;
  padding-top: 40px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 63ch;
  margin-top: 24px;
}

.contact-panel {
  padding: 30px;
}

.contact-panel h3 {
  margin-top: 0;
}

.contact-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 18px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 22px 44px;
  border-top: 1px solid var(--line);
}

.footer .brand small,
.footer p {
  color: var(--muted);
}

.footer .brand strong {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding: 16px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 7;
  }

  .menu {
    position: fixed;
    inset: 0;
    z-index: 6;
    display: grid;
    place-content: center;
    gap: 12px;
    padding: 24px;
    background: rgba(8, 9, 19, 0.94);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  .menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    font-size: 1.35rem;
    text-align: center;
  }

  .hero-content {
    min-height: auto;
    padding: 98px 0 34px;
  }

  .hero-stats,
  .hero-spotlights,
  .legacy-grid,
  .license-panel,
  .service-grid,
  .case-grid,
  .showcase,
  .case-feature,
  .venue-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .showcase {
    padding-bottom: 68px;
  }

  .venue-image,
  .venue-image img {
    min-height: 360px;
  }

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

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.75rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

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

  .hero-spotlights article {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .hero-spotlights img {
    width: 92px;
    height: 92px;
  }

  .band,
  .cases,
  .belief {
    padding: 68px 16px;
  }

  .showcase {
    padding: 0 16px 68px;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 4.2rem);
  }

  .case-feature div,
  .contact-panel,
  .legacy-grid article,
  .service-grid article,
  .venue-list article {
    padding: 22px;
  }
}
