/* About page styles — depends on nocturne-home.css */

/* ==========================================================================
   ABOUT PAGE — page-specific styles (everything else comes from home-v4.css)
   ========================================================================== */

/* ---- Compact hero ---- */
.ne-abouthero {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}
.ne-abouthero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px 24px 78px;
}
.ne-abouthero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.06;
  max-width: 18ch;
  margin-top: 14px;
}
.ne-abouthero p {
  margin-top: 20px;
  max-width: 54ch;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ---- Story / mission ---- */
.ne-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.ne-story__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 45px -28px rgba(22, 19, 15, 0.4);
}
.ne-story__media img { width: 100%; height: 100%; object-fit: cover; }
.ne-story__text p { margin-top: 18px; color: var(--ink-soft); }
.ne-story__text p:first-of-type {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
}

/* ---- Our approach: numbered principles ---- */
.ne-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ne-principle {
  background: var(--paper);
  padding: 44px 40px;
}
.ne-principle__num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.ne-principle h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  margin-top: 10px;
}
.ne-principle p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 44ch;
}

/* ---- Quiet statement band ---- */
.ne-statement {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 24px;
}
.ne-statement__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ne-statement blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.3;
}
.ne-statement cite {
  display: block;
  margin-top: 26px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
}

/* ---- What we publish / for composers panels ---- */
.ne-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ne-panel {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}
.ne-panel h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.15;
}
.ne-panel p { margin-top: 12px; font-size: 15px; color: var(--ink-soft); }
.ne-panel ul {
  list-style: none;
  margin-top: 16px;
}
.ne-panel li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.ne-panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---- Closing CTA band ---- */
.ne-aboutcta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.ne-aboutcta p { margin-top: 14px; color: var(--ink-soft); }
.ne-aboutcta__btns {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .ne-story { grid-template-columns: 1fr; gap: 36px; }
  .ne-panels { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .ne-abouthero__inner { padding: 56px 24px 52px; }
  .ne-principles { grid-template-columns: 1fr; }
  .ne-principle { padding: 32px 26px; }
  .ne-statement { padding: 68px 24px; }
}

/* In-text links must be visible as links */
.ne-panel p a, .ne-story p a {
  color: var(--accent);
  border-bottom: 1px solid rgba(142, 47, 42, 0.4);
}
.ne-panel p a:hover, .ne-story p a:hover { border-bottom-color: var(--accent); }
