/* ==========================================================================
   Destiny Productions — dark theme landing page
   ========================================================================== */

:root {
  --bg: #0a0908;
  --bg-alt: #121110;
  --bg-card: #161412;
  --line: rgba(212, 175, 55, 0.16);
  --gold-1: #a3781f;
  --gold-2: #d4af37;
  --gold-3: #f3d879;
  --gold-grad: linear-gradient(120deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 65%, var(--gold-2) 100%);
  --white: #f4f2ee;
  --gray: #a39c8f;
  --gray-dim: #6f6a61;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

.container.narrow { max-width: 760px; }
.center { text-align: center; }

.one, .one-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover { color: var(--gold-3); }

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

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--white);
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1c1912 0%, #0a0908 60%);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.06) 35%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 28px;
}

.hero-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(52px, 11vw, 128px);
  letter-spacing: 6px;
  margin: 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.hero-logo .one {
  font-size: 1.12em;
  vertical-align: -0.05em;
}

.pulse-line {
  display: block;
  width: min(560px, 80vw);
  height: 18px;
  margin: 18px auto 0;
}

.pulse-line svg {
  width: 100%;
  height: 100%;
}

.pulse-line polyline {
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.hero-sub {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 2.6vw, 24px);
  letter-spacing: 10px;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  margin-top: 14px;
}

.tagline {
  margin: 30px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--gray);
  letter-spacing: 0.5px;
}

.scroll-cue {
  display: inline-flex;
  margin-top: 70px;
  width: 26px;
  height: 42px;
  border: 1px solid var(--gold-1);
  border-radius: 20px;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold-3);
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 130px 0;
  position: relative;
}

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

.kicker {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 14px;
}

.kicker.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 0 0 36px;
  color: var(--white);
}

.section-title.center { text-align: center; }

.lead {
  font-size: 17px;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 22px;
}

.lead.center { max-width: 620px; margin-left: auto; margin-right: auto; }

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-2);
  border-left: 2px solid var(--gold-1);
  padding-left: 26px;
  margin: 48px 0 0;
}

/* ---------- SERVICES ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 44px 38px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: var(--gold-1);
  transform: translateY(-4px);
}

.card-index {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-1);
  display: block;
  margin-bottom: 18px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--white);
}

.card p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.check-list li {
  font-size: 14px;
  color: var(--white);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  position: relative;
  padding-left: 20px;
}

.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
}

.card-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-3);
  font-size: 16px;
  margin: 0;
}

/* ---------- EVENTS ---------- */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 20px;
}

.events-heading {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-2);
  margin: 0 0 26px;
  letter-spacing: 0.5px;
}

.event-item {
  border: 1px solid var(--line);
  padding: 24px 26px;
  margin-bottom: 18px;
  background: var(--bg-card);
}

.event-item.upcoming { display: flex; align-items: center; gap: 18px; }

.event-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold-2);
  padding: 6px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-artist {
  margin: 0;
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
}

.event-item.past .event-artist {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold-3);
}

.event-dates {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-dates li {
  font-size: 14px;
  color: var(--gray);
  padding: 8px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
}

.event-dates li span {
  color: var(--gold-2);
  min-width: 66px;
  font-weight: 500;
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--gold-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-2);
  background: var(--bg-card);
}

.team-member h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 6px;
  color: var(--white);
}

.team-member p {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0;
}

/* ---------- CONTACT ---------- */
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 46px 0 40px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-2);
}

.contact-item:hover {
  color: var(--gold-3);
  border-color: var(--gold-1);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-icon svg { width: 19px; height: 19px; }

.social-icon:hover {
  border-color: var(--gold-2);
  color: var(--gold-3);
  transform: translateY(-3px);
}

.social-icon.disabled {
  opacity: 0.35;
  cursor: default;
}

.social-icon.disabled:hover {
  transform: none;
  border-color: var(--line);
  color: var(--gold-2);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1.5px;
  color: var(--white);
}

.footer-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gray);
  margin-left: 4px;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-dim);
  margin: 0;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; gap: 46px; }
  .team-grid { grid-template-columns: 1fr; gap: 46px; }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 240px;
    background: rgba(10, 9, 8, 0.98);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav-links.open { transform: translateX(0); }

  .section { padding: 90px 0; }

  .hero-logo { letter-spacing: 3px; }
}
