/* Delta149 Development Group — shared site styles */

:root {
  --bg: #08080a;
  --bg-elevated: #0f0f12;
  --bg-card: #141417;
  --border: #26262c;
  --border-bright: #3a3a42;

  --silver: #eef0f3;
  --silver-dim: #b7b9c1;
  --text-muted: #8b8d96;

  --red: #d21f1f;
  --red-bright: #ff3b3b;
  --olive: #7c8f45;
  --olive-light: #a8bb6e;

  --font-display: "Rajdhani", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--silver);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--silver-dim); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-bright);
  display: inline-block;
}

.eyebrow.olive { color: var(--olive-light); }
.eyebrow.olive::before { background: var(--olive-light); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #9c1616 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(210, 31, 31, 0.4), 0 8px 24px -8px rgba(210, 31, 31, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 59, 59, 0.6), 0 12px 28px -8px rgba(255, 59, 59, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--silver);
  border-color: var(--border-bright);
}

.btn-ghost:hover {
  border-color: var(--silver);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  line-height: 1.1;
}

.brand-word span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--olive-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--silver);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--red-bright);
}

.nav-cta {
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--silver);
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(210, 31, 31, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(124, 143, 69, 0.12), transparent 60%);
}

.hero-logo {
  max-width: 340px;
  margin: 0 auto 32px;
}

.hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero .lede {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  color: var(--silver-dim);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 90px 0 70px;
  text-align: left;
  background:
    radial-gradient(ellipse 60% 60% at 90% 0%, rgba(210, 31, 31, 0.14), transparent 60%);
  border-bottom: 1px solid var(--border);
}

.page-hero .lede {
  max-width: 680px;
  font-size: 1.1rem;
}

.page-hero-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
}

/* ---------- Sections ---------- */

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

/* ---------- Cards / grid ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.venture-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.venture-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.7);
}

.venture-card.red:hover { border-color: var(--red); }
.venture-card.olive:hover { border-color: var(--olive); }

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--red-bright);
}

.venture-card.olive .card-icon { color: var(--olive-light); }

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.card-link {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.venture-card.red .card-link { color: var(--red-bright); }
.venture-card.olive .card-link { color: var(--olive-light); }

.value-card {
  text-align: left;
}

.value-card .card-icon {
  color: var(--silver-dim);
}

/* ---------- CTA band ---------- */

.cta-band {
  padding: 80px 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(210, 31, 31, 0.06), transparent),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.cta-band h2 { margin-bottom: 0.4em; }
.cta-band p { max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { max-width: 320px; font-size: 0.92rem; }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  text-decoration: none;
  color: var(--silver-dim);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--silver); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--silver-dim); }

/* ---------- Misc content blocks ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-check li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--silver-dim);
}

.list-check li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--red-bright);
}

.quote-block {
  border-left: 3px solid var(--olive);
  padding: 4px 0 4px 24px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--silver);
  font-weight: 600;
  margin: 0 0 1em;
}

.eq-graphic {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
  margin-bottom: 8px;
}

.eq-graphic span {
  display: block;
  width: 8px;
  background: linear-gradient(180deg, var(--olive-light), var(--olive));
  animation: eq-bounce 1.4s ease-in-out infinite;
}

.eq-graphic span:nth-child(1) { height: 30%; animation-delay: 0s; }
.eq-graphic span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.eq-graphic span:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.eq-graphic span:nth-child(4) { height: 90%; animation-delay: 0.45s; }
.eq-graphic span:nth-child(5) { height: 55%; animation-delay: 0.6s; }
.eq-graphic span:nth-child(6) { height: 75%; animation-delay: 0.75s; }
.eq-graphic span:nth-child(7) { height: 35%; animation-delay: 0.9s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .eq-graphic span { animation: none; }
  html { scroll-behavior: auto; }
}

.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.upcoming-release {
  display: flex;
  gap: 24px;
  align-items: center;
}

.upcoming-cover {
  width: 96px;
  height: 96px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.upcoming-release h3 {
  margin-bottom: 4px;
}

@media (max-width: 560px) {
  .upcoming-release {
    flex-direction: column;
    align-items: flex-start;
  }
}

.release-card .tag,
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-light);
  border: 1px solid var(--olive);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.release-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: start;
}

.cover-art,
.artist-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
}

.artist-photo {
  max-width: 420px;
}

.release-details h3 {
  margin-bottom: 4px;
}

.release-artist {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 14px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.platform-link:hover {
  border-color: var(--olive-light);
  color: var(--olive-light);
  transform: translateY(-2px);
}

.platform-link[aria-disabled="true"] {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
  transform: none;
}

.platform-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .release-feature {
    grid-template-columns: 1fr;
  }

  .cover-art {
    max-width: 280px;
    margin: 0 auto;
  }
}

.contact-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--silver);
}

.contact-method:last-child { border-bottom: none; }

.contact-method .label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 120px;
  flex-shrink: 0;
}

/* ---------- Contact form ---------- */

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--olive-light);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
}

.contact-form button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-status[data-state="success"] { color: var(--olive-light); }
.form-status[data-state="error"] { color: var(--red-bright); }

/* ---------- 404 ---------- */

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 12px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .nav {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}
