/* ===========================
   DANCE STATE OF MIND
   Stylesheet
   =========================== */

:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #141414;
  --ink: #f5f3ee;
  --ink-dim: #c8c4bb;
  --ink-mute: #8a857c;
  --gold: #c9a44c;
  --gold-bright: #e0bf6a;
  --gold-dim: rgba(201,164,76,0.15);
  --line: rgba(245,243,238,0.1);
  --shadow: 0 30px 80px rgba(0,0,0,0.6);
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--gold-bright); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ===========================
   TYPOGRAPHY
   =========================== */

.h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-dim);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.col-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-dim);
  margin-bottom: 1.4rem;
}
.col-text p:last-of-type { margin-bottom: 0; }

.section-sub {
  color: var(--ink-dim);
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  text-wrap: balance;
}

p { color: var(--ink-dim); }

/* ===========================
   REVEAL ANIMATION
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #0b0b0b;
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: #0b0b0b;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(245,243,238,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 100%;
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-bright);
}

.btn-lg { padding: 18px 48px; font-size: 0.9rem; }

/* ===========================
   BADGES
   =========================== */

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 2rem;
}
.badges li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(201,164,76,0.35);
  border-radius: 2px;
}

/* ===========================
   NAV
   =========================== */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(8,8,8,0);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.96);
  padding: 13px 0;
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,164,76,0.4);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-dim);
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  padding: 24px var(--pad) 28px;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid var(--line);
}
.nav-mobile ul { list-style: none; }
.nav-mobile ul li { border-bottom: 1px solid var(--line); }
.nav-mobile ul a {
  display: block;
  padding: 14px 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.nav-mobile.open { display: block; }

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-dim);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===========================
   STATS BAR
   =========================== */

.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.two-col-rev .col-image { order: 2; }
.two-col-rev .col-text { order: 1; }

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,164,76,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}
.image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

/* ===========================
   CHALLENGE SECTION
   =========================== */

.section-challenge {
  background: var(--bg-2);
  text-align: center;
}

.challenge-inner { max-width: 900px; margin: 0 auto; }

.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 3rem auto 0;
  max-width: 680px;
  text-align: left;
  background: rgba(201,164,76,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.pull-quote cite {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ===========================
   BIG 3 / PILLARS
   =========================== */

.section-big3 {
  background: var(--bg-3);
}

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

.pillar {
  background: var(--bg-2);
  padding: clamp(2rem, 3vw, 3rem);
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.pillar:hover {
  border-top-color: var(--gold);
  background: var(--bg-3);
}

.pillar-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pillar-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-dim);
}

/* ===========================
   PHOTO STRIP
   =========================== */

.photo-strip {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strip-row {
  display: flex;
  gap: 4px;
  height: 300px;
}

.strip-img {
  flex-shrink: 0;
  background-size: cover;
  filter: brightness(0.82) saturate(0.9);
  transition: filter 0.4s ease;
}
.strip-img:hover { filter: brightness(0.95) saturate(1); }

.s-sm  { flex: 0.85; }
.s-md  { flex: 1.2;  }
.s-lg  { flex: 1.5;  }
.s-xl  { flex: 2.0;  }

@media (max-width: 900px) {
  .strip-row { height: 220px; }
  .s-xl { flex: 1.5; }
}

@media (max-width: 540px) {
  .strip-row { height: 180px; flex-wrap: wrap; }
  .strip-row .strip-img { flex: 1 1 45%; }
}

/* ===========================
   RESULTS
   =========================== */

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.results-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.result-icon {
  font-size: 1rem;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
  line-height: 1.6;
}

.results-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.results-list p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   QUOTE BREAK
   =========================== */

.section-quote-break {
  background: var(--gold);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.quote-break-inner { max-width: 820px; margin: 0 auto; }

.quote-break-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  color: #0b0b0b;
  margin-bottom: 1.2rem;
}

.quote-attr {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11,11,11,0.6);
}

/* ===========================
   TESTIMONIALS
   =========================== */

.section-testimonials { background: var(--bg-2); }

.testimonials-group-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5px;
}

.testimonial {
  background: var(--bg-3);
  padding: 2rem 2.2rem;
  border-top: 1px solid var(--line);
  transition: background 0.3s;
}
.testimonial:hover { background: var(--bg); }

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-dim);
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ===========================
   CLIENTS
   =========================== */

.section-clients { background: var(--bg-3); }

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.client-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all 0.25s;
}
.client-tag:hover {
  color: var(--gold);
  border-color: rgba(201,164,76,0.35);
}

/* ===========================
   PACKAGES
   =========================== */

.section-work { background: var(--bg); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}

.package {
  background: var(--bg-2);
  padding: clamp(2rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 2px solid var(--line);
  transition: border-color 0.3s;
}
.package:hover { border-top-color: rgba(201,164,76,0.4); }
.package-featured {
  border-top-color: var(--gold);
  background: var(--bg-3);
}

.package-badge {
  position: absolute;
  top: 0; right: 1.5rem;
  transform: translateY(-50%);
  background: var(--gold);
  color: #0b0b0b;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.package-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.75rem;
}

.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.package-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 4px;
}

.package-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.package-features li {
  font-size: 0.92rem;
  color: var(--ink-dim);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.package-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===========================
   FINAL CTA
   =========================== */

.section-cta {
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner { max-width: 720px; margin: 0 auto; }

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--bg);
  padding: 4rem 0 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

.footer-brand .logo-text {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--ink-mute);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.5rem var(--pad);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--ink-mute);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .two-col { grid-template-columns: 1fr; }
  .two-col-rev .col-image { order: 0; }
  .two-col-rev .col-text { order: 0; }
  .image-frame img { height: 380px; }

  .pillars-grid { grid-template-columns: 1fr; gap: 1.5px; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 400px; }

  .packages-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-links { text-align: left; }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 280px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
