
:root {
  --black: #0b0c0f;
  --ink: #121318;
  --muted: #676b74;
  --line: #dde0e5;
  --surface: #f5f6f8;
  --surface-2: #fbfbfc;
  --white: #ffffff;
  --radius: 28px;
  --ease: cubic-bezier(.2,.75,.25,1);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg,#f5f6f8 0%,#ffffff 30%,#f7f7f8 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 78px;
  padding: 0 clamp(18px,5vw,72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(120deg,rgba(255,255,255,.96),rgba(243,244,246,.92));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(210,213,219,.7);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 22px;
  letter-spacing: -.045em;
  font-weight: 640;
}
.brand strong { font-weight: 800; }
.brand-mark { width: 36px; height: 36px; display: inline-grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.site-header nav { display: flex; gap: clamp(20px,2.8vw,40px); font-size: 13px; color: #4c4f56; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--ink); transition: right .3s var(--ease); }
.site-header nav a:hover::after { right: 0; }
.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 760;
  color: white;
  background: linear-gradient(120deg,#101114,#2a2d33 50%,#070708);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transition: .25s var(--ease);
}
.header-cta:hover { transform: translateY(-2px); }
.hero-section { padding: 42px clamp(18px,5vw,72px) 24px; }
.hero-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: clamp(28px,4vw,56px);
  align-items: center;
  padding: clamp(18px,2.5vw,30px);
  border: 1px solid rgba(215,218,224,.96);
  border-radius: 34px;
  background: linear-gradient(145deg,rgba(255,255,255,.96),rgba(245,246,248,.94));
  box-shadow: 0 28px 72px rgba(7,8,10,.10), inset 0 1px rgba(255,255,255,.95);
}
.hero-media-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(160deg,#ffffff,#eceef2);
  box-shadow: 0 18px 38px rgba(0,0,0,.10);
}
.hero-media-card picture { display: block; width: 100%; height: 100%; }
.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}
.hero-copy { padding-right: min(3vw, 16px); }
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 11px;
  font-weight: 790;
  color: #7f838b;
}
.eyebrow.dark { color: #767b84; }
.hero-copy h1 {
  margin: 14px 0 8px;
  font-size: clamp(48px,5vw,76px);
  line-height: .98;
  letter-spacing: -.065em;
}
.hero-subhead {
  margin: 0;
  max-width: 800px;
  font-size: 20px;
  line-height: 1.5;
  color: #24272d;
  letter-spacing: -.02em;
}
.hero-body {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.primary-button,
.secondary-button {
  min-height: 52px;
  padding: 0 19px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 760;
  transition: .25s var(--ease);
}
.primary-button {
  background: linear-gradient(120deg,#101114,#2a2d33 50%,#070708);
  color: white;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}
.secondary-button {
  border: 1px solid #d7dae0;
  background: rgba(255,255,255,.82);
  color: #21242a;
}
.primary-button:hover,
.secondary-button:hover { transform: translateY(-2px); }


.social-panel {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e0e3e8;
}
.social-panel h2 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -.035em;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.social-card {
  position: relative;
  width: 100%;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  min-height: 84px;
  padding: 14px 16px;
  border: 1px solid #dde0e5;
  border-radius: 18px;
  background: linear-gradient(145deg,#ffffff,#f6f7f9);
  box-shadow: inset 0 1px rgba(255,255,255,.92);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  transition: .25s var(--ease);
}
.social-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(0,0,0,.08); }
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  background: linear-gradient(120deg,#141518,#33363d 55%,#0c0d0f);
}
.social-card b { display: block; font-size: 14px; margin-bottom: 4px; }
.social-card small { color: var(--muted); font-size: 12px; line-height: 1.5; }

.content-section { padding: 76px clamp(18px,5vw,72px) 0; }
.section-heading { max-width: 1320px; margin: 0 auto 26px; }
.section-heading h2 { margin: 12px 0 0; font-size: clamp(38px,4vw,60px); line-height: 1.02; letter-spacing: -.06em; }
.card-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.info-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid #dfe2e7;
  border-radius: 24px;
  background: linear-gradient(145deg,#ffffff,#f6f7f9);
  box-shadow: inset 0 1px rgba(255,255,255,.92);
}
.card-kicker {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #111216;
  color: white;
  font-size: 11px;
  font-weight: 780;
}
.info-card h3 { margin: 18px 0 10px; font-size: 23px; letter-spacing: -.035em; }
.info-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.about-band {
  max-width: 1320px;
  margin: 74px auto 92px;
  padding: 42px clamp(22px,4vw,48px);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr auto;
  gap: 34px;
  align-items: center;
  color: white;
  background: linear-gradient(120deg,#090a0c,#22252b 56%,#090a0c);
}
.about-band h2 { margin: 10px 0 0; font-size: clamp(34px,3.7vw,52px); line-height: 1.03; letter-spacing: -.055em; }
.about-band > p { margin: 0; color: #bcc0c8; font-size: 14px; line-height: 1.8; }
.contact-trigger {
  white-space: nowrap;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  transition: .25s var(--ease);
}
.contact-trigger:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.46); }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}
.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,7,9,.72);
  backdrop-filter: blur(10px);
  animation: modalFade .22s ease both;
}
.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(219,222,228,.94);
  border-radius: 28px;
  background: linear-gradient(145deg,#ffffff,#f5f6f8);
  box-shadow: 0 36px 100px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.98);
  animation: modalRise .3s var(--ease) both;
}
.contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid #d9dce2;
  border-radius: 13px;
  background: rgba(255,255,255,.85);
  color: #555962;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.contact-dialog h2 {
  margin: 12px 0 10px;
  font-size: clamp(38px,5vw,54px);
  line-height: 1;
  letter-spacing: -.06em;
}
.contact-dialog > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 15px;
}
.contact-field { display: block; }
.contact-field > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  color: #3e4249;
  font-size: 12px;
  font-weight: 760;
}
.contact-field > span em { color: #93979f; font-size: 10px; font-style: normal; font-weight: 600; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #d8dbe1;
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  outline: none;
  transition: .2s ease;
}
.contact-field input,
.contact-field select { height: 49px; padding: 0 14px; }
.contact-field textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: #7c818a; box-shadow: 0 0 0 4px rgba(82,86,95,.09); background: #fff; }
.contact-message { margin-top: 15px; }
.contact-submit {
  width: 100%;
  height: 52px;
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg,#101114,#2a2d33 50%,#070708);
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 14px 28px rgba(0,0,0,.17);
  cursor: pointer;
}
.contact-submit:disabled { opacity: .64; cursor: wait; }
.contact-error {
  margin: 14px 0 0;
  padding: 11px 13px;
  border: 1px solid #efcaca;
  border-radius: 10px;
  background: #fff2f2;
  color: #892828;
  font-size: 12px;
}
.contact-success {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-success > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #111216;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 18px 34px rgba(0,0,0,.16);
}
.contact-success h3 { margin: 18px 0 8px; font-size: 34px; letter-spacing: -.05em; }
.contact-success p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.contact-success button {
  margin-top: 20px;
  padding: 11px 16px;
  border: 1px solid #d4d7dd;
  border-radius: 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 740;
  cursor: pointer;
}
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }

footer {
  min-height: 124px;
  padding: 32px clamp(18px,5vw,72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid #e0e3e8;
  background: #f6f7f9;
}
.footer-brand { color: #70747d; }
.footer-brand strong { color: #111216; }
footer p { margin: 0; color: #7b7f88; font-size: 12px; }
footer > a:not(.brand) { font-size: 13px; font-weight: 760; }
footer small { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid #e0e3e8; color: #8e929a; font-size: 11px; }
.scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.scroll-reveal.visible { opacity: 1; transform: none; }
.reveal-on-load { animation: fadeUp .85s .12s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-media-card { max-width: 580px; width: 100%; margin: 0 auto; min-height: 460px; }
  .hero-copy { padding-right: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .about-band { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding: 0 14px;
  }
  .brand { font-size: 18px; }
  .brand-mark { width: 30px; height: 30px; }
  .header-cta { font-size: 11px; padding: 12px 14px; }
  .hero-section { padding: 22px 14px 18px; }
  .hero-shell { gap: 22px; padding: 16px; border-radius: 24px; }
  .hero-media-card { min-height: 360px; border-radius: 20px; }
  .hero-copy h1 { font-size: clamp(40px, 13vw, 54px); }
  .hero-subhead { font-size: 17px; }
  .hero-body { font-size: 14px; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-modal { padding: 10px; }
  .contact-dialog { max-height: calc(100vh - 20px); padding: 27px 18px 20px; border-radius: 22px; }
  .contact-close { top: 11px; right: 11px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 13px; }
  .content-section { padding: 62px 14px 0; }
  .about-band { margin: 58px 14px 74px; padding: 28px 20px; border-radius: 22px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer small { grid-column: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .scroll-reveal { opacity: 1; transform: none; }
}
