/* ============================================
   PHOTO SESSIONS PAGE — Luminark Studios
   ============================================ */

.nav-active { color: var(--gold) !important; }

/* ============================================
   DETAIL SECTION
   ============================================ */

.detail-section {
  background: var(--dark);
  padding: 7rem 2rem;
}

.detail-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.detail-text .section-label {
  margin-bottom: 0.75rem;
}

.detail-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.detail-text p {
  font-size: 0.97rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem;
}

.detail-pull {
  font-size: 1.05rem;
  color: var(--light);
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0 2rem;
  line-height: 1.65;
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.process-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.process-step-body strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--light);
  display: block;
  margin-bottom: 0.3rem;
}

.process-step-body p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 768px) {
  .detail-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================
   PRICING
   ============================================ */

.pricing-section {
  background: var(--stone);
  padding: 6rem 2rem;
}

.pricing-section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-section-intro .section-label {
  margin-bottom: 0.75rem;
}

.pricing-section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.pricing-note-text {
  font-size: 0.9rem;
  color: rgba(41,54,58,0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1.5px solid rgba(41,54,58,0.1);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
  background: var(--dark);
  border-color: var(--gold);
  border-width: 2px;
}

.price-card-tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.price-card:not(.featured) .price-card-tier { color: var(--dark); }
.price-card.featured .price-card-tier { color: var(--light); }

.price-card-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.price-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.price-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.price-card:not(.featured) .price-card-features li { color: rgba(41,54,58,0.65); }
.price-card.featured .price-card-features li { color: rgba(245,240,232,0.7); }

.price-card-features li i {
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.price-card-note {
  font-size: 0.78rem;
  font-style: italic;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(41,54,58,0.08);
}

.price-card.featured .price-card-note {
  border-top-color: rgba(255,255,255,0.08);
}

.price-card:not(.featured) .price-card-note { color: rgba(41,54,58,0.45); }
.price-card.featured .price-card-note { color: rgba(201,162,39,0.6); }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ============================================
   ADD-ONS
   ============================================ */

.addons-section {
  background: var(--dark);
  padding: 6rem 2rem;
}

.addons-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.addons-intro .section-label { margin-bottom: 0.75rem; }

.addons-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.addons-intro p {
  font-size: 0.97rem;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto 4rem;
}

.addon-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}

.addon-card:hover {
  background: rgba(201,162,39,0.07);
  border-color: rgba(201,162,39,0.4);
}

.addon-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.addon-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Fine print */
.fine-print-block {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 10px;
  padding: 2rem 2.5rem;
}

.fine-print-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.fine-print-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fine-print-block li {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
  font-weight: 300;
  padding-left: 1rem;
  border-left: 2px solid rgba(201,162,39,0.2);
}

.fine-print-block li strong {
  color: rgba(245,240,232,0.85);
  font-weight: 500;
}

/* Travel note */
.travel-note {
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.75rem;
  max-width: 760px;
  margin: 2rem auto 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.travel-note i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.travel-note p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

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

.os-cta {
  background: var(--gold);
  padding: 7rem 2rem;
  text-align: center;
}

.os-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.os-cta p {
  font-size: 1.1rem;
  color: rgba(41,54,58,0.75);
  margin-bottom: 2.5rem;
}

.btn-cta-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  padding: 1.1rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-cta-dark:hover {
  background: var(--dark2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}