:root {
  --black: #080808;
  --soft-black: #111;
  --charcoal: #181818;
  --gray: #9b9b9b;
  --light: #f3f0e8;
  --white: #fff;
  --gold: #c89b3c;
  --gold-light: #e4c06c;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--light);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 2px solid var(--gold);
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 14px; letter-spacing: 2px; }
.brand-text small { color: var(--gold-light); letter-spacing: 2.5px; font-size: 9px; margin-top: 5px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--gold); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: white; margin: 5px; }

.hero {
  min-height: 100vh;
  padding: 150px 8vw 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(200,155,60,.22), transparent 26%),
    linear-gradient(110deg, rgba(0,0,0,.98) 25%, rgba(8,8,8,.88) 60%, rgba(20,20,20,.75)),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255,255,255,.025) 71px 72px);
}
.hero::after {
  content: "CYPHA";
  position: absolute;
  right: -30px;
  bottom: -130px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(240px, 32vw, 560px);
  color: rgba(255,255,255,.018);
  line-height: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 100% 5px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 18px;
}
.hero h1, h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: .92;
  letter-spacing: 1px;
  margin: 0;
}
.hero h1 { font-size: clamp(78px, 13vw, 180px); }
.hero h1 span { color: transparent; -webkit-text-stroke: 2px var(--gold-light); }
.hero-copy { max-width: 720px; color: #cac7c0; font-size: clamp(16px, 1.5vw, 20px); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 50px; padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; font-size: 12px;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #090909; }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { border-color: rgba(255,255,255,.45); }
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

.hero-stamp {
  position: absolute; right: 7vw; top: 45%;
  width: 150px; height: 150px; border: 1px solid var(--gold);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  transform: rotate(8deg);
  color: var(--gold-light); font-size: 9px; letter-spacing: 2px;
}
.hero-stamp strong { font-size: 17px; color: white; }

.statement {
  padding: 42px 8vw;
  text-align: center;
  background: var(--gold);
  color: #0b0b0b;
}
.statement p {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: 1px;
  margin: 0;
}

.section { padding: 110px 8vw; }
.section-heading { margin-bottom: 50px; }
.section-heading.centered { text-align: center; }
h2 { font-size: clamp(52px, 7vw, 92px); }
.about { background: var(--soft-black); }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: start; }
.about-copy p { font-size: 18px; color: #c8c6c0; margin: 0 0 25px; }
.values-card { border: 1px solid var(--line); padding: 32px; background: rgba(255,255,255,.02); }
.values-card h3 { margin-top: 0; font-size: 25px; }
.values-card ul { padding: 0; margin: 0; list-style: none; }
.values-card li { padding: 17px 0; border-top: 1px solid var(--line); font-weight: 600; }
.values-card li span { color: var(--gold-light); margin-right: 14px; font-family: "Bebas Neue"; font-size: 22px; }

.services { background: #0b0b0b; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255,255,255,.035), transparent);
  transition: transform .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(200,155,60,.65); }
.card-number { color: var(--gold); font-family: "Bebas Neue"; font-size: 30px; }
.service-card h3 { font-size: 24px; margin: 60px 0 14px; }
.service-card p { color: var(--gray); font-size: 15px; }

.music { background: var(--light); color: #111; }
.music-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.music-art {
  aspect-ratio: 1/1; background: #101010; position: relative; overflow: hidden;
  box-shadow: 24px 24px 0 var(--gold);
}
.vinyl {
  position: absolute; width: 78%; height: 78%; border-radius: 50%;
  top: 11%; left: 11%;
  background: repeating-radial-gradient(circle, #191919 0 8px, #0b0b0b 9px 13px);
}
.vinyl::after {
  content: ""; position: absolute; width: 25%; height: 25%; top: 37.5%; left: 37.5%;
  border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 8px #111;
}
.mic {
  position: absolute; width: 20%; height: 48%; top: 23%; left: 42%;
  border: 4px solid white; border-radius: 45% 45% 35% 35%;
  transform: rotate(-20deg); opacity: .85;
}
.mic::after {
  content: ""; position: absolute; width: 4px; height: 45%; background: white;
  left: 50%; bottom: -42%; transform: translateX(-50%);
}
.art-label {
  position: absolute; left: 7%; bottom: 5%; z-index: 3;
  font-family: "Bebas Neue"; font-size: clamp(45px, 6vw, 90px); line-height: .8;
  color: white;
}
.music-copy .eyebrow { color: #8b671e; }
.music-copy > p:not(.eyebrow) { color: #4c4c4c; font-size: 17px; }
.track-list { margin: 32px 0; border-top: 1px solid #bbb; }
.track-list div {
  display: grid; grid-template-columns: 45px 1fr auto; gap: 10px;
  padding: 16px 0; border-bottom: 1px solid #bbb; align-items: center;
}
.track-list span { color: #84611d; font-family: "Bebas Neue"; font-size: 20px; }
.track-list em { font-style: normal; color: #666; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.text-link { font-weight: 800; color: #6f4d0b; }

.vision {
  background:
    linear-gradient(rgba(5,5,5,.78), rgba(5,5,5,.9)),
    radial-gradient(circle at center, rgba(200,155,60,.18), transparent 45%);
}
.vision-panel { max-width: 980px; margin: auto; text-align: center; }
.vision-panel > p:not(.eyebrow) { max-width: 760px; margin: 25px auto 45px; color: #b9b6af; font-size: 18px; }
.vision-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.vision-stats div { padding: 30px 15px; border-right: 1px solid var(--line); }
.vision-stats div:last-child { border-right: 0; }
.vision-stats strong { display: block; color: var(--gold-light); font-family: "Bebas Neue"; font-size: 55px; line-height: 1; }
.vision-stats span { color: #aaa; text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: var(--soft-black); }
.contact-copy > p:not(.eyebrow) { color: #aaa; max-width: 620px; }
.contact-details { margin-top: 35px; }
.contact-details p { display: flex; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--line); padding: 14px 0; margin: 0; }
.contact-details span { min-width: 80px; color: var(--gold-light); text-transform: uppercase; font-size: 11px; letter-spacing: 1.5px; }
.contact-details a:hover { color: var(--gold-light); }
.contact-form { display: grid; gap: 15px; }
.contact-form label { display: grid; gap: 7px; color: #c6c2bb; text-transform: uppercase; font-size: 11px; letter-spacing: 1.5px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; color: white; background: #0b0b0b; border: 1px solid #353535;
  padding: 14px; outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-note { color: #777; font-size: 12px; margin: 0; }

footer {
  display: flex; justify-content: space-between; gap: 30px; align-items: center;
  padding: 35px 8vw; border-top: 1px solid var(--line); color: #777; font-size: 12px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: white; letter-spacing: 1.5px; }
.footer-brand span { color: var(--gold-light); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 81px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; padding: 16px 5vw 25px;
    background: #0b0b0b; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; }
  .nav-cta { border: 0; }
  .hero-stamp { display: none; }
  .about-grid, .music-layout, .contact { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .music-art { max-width: 560px; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 5vw; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text strong { font-size: 11px; }
  .hero { min-height: 92vh; padding: 130px 6vw 70px; }
  .hero h1 span { -webkit-text-stroke-width: 1px; }
  .section { padding: 80px 6vw; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .service-card h3 { margin-top: 35px; }
  .track-list div { grid-template-columns: 35px 1fr; }
  .track-list em { grid-column: 2; }
  .vision-stats { grid-template-columns: 1fr; }
  .vision-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  footer { flex-direction: column; align-items: flex-start; }
}
