/* Sentinel Fortune Records – gold on deep navy theme */

:root {
  --bg: #020611;
  --bg-alt: #050b18;
  --panel: #070d1f;
  --panel-soft: #080e22;
  --border-soft: rgba(255, 255, 255, 0.06);
  --text-main: #f5f7ff;
  --text-muted: #b4bdd7;
  --gold: #f2c76a;
  --gold-soft: #cfad54;
  --accent: #4ea6ff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top left, #101733 0, #020611 55%, #000000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 17, 0.92), rgba(2, 6, 17, 0.75));
  border-bottom: 1px solid var(--border-soft);
}

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

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.7), 0 16px 35px rgba(0,0,0,0.85);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.nav a:hover {
  color: var(--text-main);
  border-color: rgba(242, 199, 106, 0.55);
  background: rgba(7, 13, 31, 0.9);
}

.hero {
  padding: 64px 6vw 40px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}

.hero-copy {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0c0a00;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.ghost {
  border-color: rgba(242, 199, 106, 0.5);
  color: var(--gold);
  background: rgba(5, 11, 24, 0.9);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(120, 204, 109, 0.6);
  color: #9ce695;
  font-size: 0.75rem;
  background: rgba(1, 35, 12, 0.9);
}

/* Panels */

.panel-grid {
  padding: 0 6vw 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.panel {
  background: radial-gradient(circle at top left, var(--panel) 0, var(--panel-soft) 55%);
  border-radius: var(--radius-lg);
  padding: 18px 20px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.panel h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Sections */

.section {
  padding: 26px 6vw 12px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 14px;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Video feature */

.video-feature {
  padding-top: 30px;
}

.video-shell {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 18px;
  align-items: flex-start;
}

.video-shell video {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.9);
}

.video-meta h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.video-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.card {
  background: radial-gradient(circle at top left, var(--panel) 0, var(--panel-soft) 55%);
  border-radius: var(--radius-md);
  padding: 14px 16px 16px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.card .tag {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Audio board */

.audio-board {
  padding-top: 20px;
}

.audio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.audio-item {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 10px;
  align-items: center;
  background: radial-gradient(circle at top left, var(--panel) 0, var(--panel-soft) 55%);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
}

.audio-info h3 {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.audio-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

audio {
  width: 100%;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  gap: 20px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.contact-layout ul {
  padding-left: 18px;
  color: var(--text-muted);
}

.contact-form {
  background: radial-gradient(circle at top left, var(--panel) 0, var(--panel-soft) 55%);
  padding: 16px 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 8px 9px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 17, 0.95);
  color: var(--text-main);
  font-size: 0.85rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(242, 199, 106, 0.7);
  box-shadow: 0 0 0 1px rgba(242, 199, 106, 0.4);
}

.form-note {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Footer */

.site-footer {
  padding: 18px 6vw 24px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 900px) {
  .video-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  .audio-item {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero {
    padding-top: 40px;
  }
}
