/* ============================================
   LUNA — Portfolio Site Stylesheet
   Aesthetic: Warm luxury editorial beauty
   ============================================ */

:root {
  --ln-cream:      #FAF8F5;
  --ln-cream-deep: #F2EEE8;
  --ln-espresso:   #2C2420;
  --ln-espresso-light: #4A3F38;
  --ln-rose:       #C9A5A0;
  --ln-rose-light: #D9C5C1;
  --ln-gold:       #D4B896;
  --ln-gold-light: #E6D5B8;
  --ln-white:      #FFFFFF;
  --ln-text:       #3D3530;
  --ln-text-muted: #7A6E67;
  --ln-border:     rgba(44, 36, 32, 0.08);
  --ln-shadow:     0 4px 24px rgba(44, 36, 32, 0.08);
  --ln-shadow-lg:  0 12px 48px rgba(44, 36, 32, 0.12);
  --ln-radius:     12px;
  --ln-radius-lg:  20px;
  --ln-transition:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ln-cream);
  color: var(--ln-text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ln-rose); color: var(--ln-white); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ln-cream); }
::-webkit-scrollbar-thumb { background: var(--ln-rose-light); border-radius: 3px; }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.ln-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--ln-gold);
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================
   NAV
   ============================================ */
.luna-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  transition: background var(--ln-transition), box-shadow var(--ln-transition);
}

.luna-nav.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ln-border);
}

.ln-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ln-espresso);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.ln-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ln-links a {
  font-size: 0.875rem;
  color: var(--ln-text-muted);
  text-decoration: none;
  transition: color var(--ln-transition);
  letter-spacing: 0.01em;
}

.ln-links a:hover { color: var(--ln-espresso); }

.ln-cta-btn {
  background: var(--ln-espresso);
  color: var(--ln-cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 500;
  transition: background var(--ln-transition), transform var(--ln-transition) !important;
}

.ln-cta-btn:hover {
  background: var(--ln-espresso-light);
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.luna-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.luna-hero__bg {
  position: absolute;
  inset: 0;
}

.luna-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.72);
}

.luna-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 32, 0.55) 0%,
    rgba(44, 36, 32, 0.2) 60%,
    rgba(201, 165, 160, 0.15) 100%
  );
}

.luna-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 680px;
}

.luna-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ln-gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.luna-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ln-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.luna-headline em {
  font-style: italic;
  color: var(--ln-rose-light);
}

.luna-sub {
  font-size: 1.05rem;
  color: rgba(250, 248, 245, 0.85);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.luna-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ln-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--ln-transition);
  cursor: pointer;
  border: none;
}

.ln-btn--primary {
  background: var(--ln-gold);
  color: var(--ln-espresso);
  padding: 0.9rem 2.25rem;
}
.ln-btn--primary:hover {
  background: var(--ln-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 184, 150, 0.4);
}

.ln-btn--ghost {
  background: transparent;
  color: var(--ln-white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.85rem 2.1rem;
}
.ln-btn--ghost:hover {
  border-color: var(--ln-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.ln-btn--sm {
  background: var(--ln-cream-deep);
  color: var(--ln-text);
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
}
.ln-btn--sm:hover {
  background: var(--ln-rose-light);
  color: var(--ln-espresso);
}

.ln-btn--full { width: 100%; text-align: center; }

.luna-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.luna-hero__scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
}

.ln-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================
   SECTION SHARED
   ============================================ */
.luna-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.luna-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ln-espresso);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ============================================
   SERVICES
   ============================================ */
.luna-services {
  padding: 7rem 5vw;
  background: var(--ln-cream);
}

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

.ln-service-card {
  background: var(--ln-white);
  border-radius: var(--ln-radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--ln-border);
  position: relative;
  transition: transform var(--ln-transition), box-shadow var(--ln-transition);
}

.ln-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ln-shadow-lg);
}

.ln-service-card--featured {
  border-color: var(--ln-gold);
  background: linear-gradient(160deg, #fffdf9, var(--ln-white));
}

.ln-popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ln-gold);
  color: var(--ln-espresso);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.ln-service-icon {
  color: var(--ln-rose);
  margin-bottom: 1.25rem;
}

.ln-service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ln-espresso);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.ln-service-desc {
  font-size: 0.875rem;
  color: var(--ln-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.ln-service-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ln-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ln-espresso);
}

.ln-duration {
  font-size: 0.8rem;
  color: var(--ln-text-muted);
}

.ln-services-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ln-text-muted);
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.luna-gallery {
  padding: 7rem 5vw;
  background: var(--ln-cream-deep);
}

.ln-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: minmax(200px, auto) minmax(200px, auto);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ln-gallery-item {
  border-radius: var(--ln-radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.ln-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ln-gallery-item:hover img { transform: scale(1.03); }

.ln-gallery-item--tall {
  grid-row: span 2;
  min-height: 420px;
}

.ln-gallery-item--wide {
  grid-column: span 2;
}

.ln-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.7), transparent);
  color: var(--ln-white);
  font-size: 0.78rem;
  padding: 1.5rem 1.25rem 1rem;
  letter-spacing: 0.02em;
}

.ln-gallery-quote {
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ln-espresso);
  padding: 2rem;
}

.ln-gallery-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ln-rose-light);
  text-align: center;
  line-height: 1.4;
  max-width: 380px;
}

/* ============================================
   ABOUT
   ============================================ */
.luna-about {
  padding: 7rem 5vw;
  background: var(--ln-cream);
}

.luna-about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.luna-about__img-wrap {
  position: relative;
}

.luna-about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--ln-radius-lg);
  display: block;
}

/* Decorative gold corner accent */
.luna-about__img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--ln-gold);
  border-right: 2px solid var(--ln-gold);
  border-radius: 0 0 var(--ln-radius) 0;
  pointer-events: none;
}

.luna-about__text p {
  font-size: 1rem;
  color: var(--ln-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.ln-about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.ln-badge {
  background: var(--ln-cream-deep);
  color: var(--ln-text-muted);
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  border: 1px solid var(--ln-border);
}

/* ============================================
   CONTACT
   ============================================ */
.luna-contact {
  padding: 7rem 5vw;
  background: var(--ln-espresso);
}

.luna-contact .luna-eyebrow { color: var(--ln-gold); }
.luna-contact .luna-section-title { color: var(--ln-cream); }

.ln-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.ln-contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ln-cream);
  margin-bottom: 1rem;
}

.ln-contact-info p {
  font-size: 0.9rem;
  color: var(--ln-rose-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.ln-studio-note {
  font-size: 0.82rem !important;
  color: rgba(201,165,160,0.6) !important;
  margin-top: -0.25rem;
}

.ln-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.5rem 0;
}

.ln-contact-details a {
  font-size: 0.875rem;
  color: var(--ln-gold-light);
  text-decoration: none;
  transition: color var(--ln-transition);
}
.ln-contact-details a:hover { color: var(--ln-gold); }

.ln-social {
  display: flex;
  gap: 1.5rem;
}

.ln-social a {
  font-size: 0.85rem;
  color: rgba(250,248,245,0.5);
  text-decoration: none;
  transition: color var(--ln-transition);
}
.ln-social a:hover { color: var(--ln-cream); }

/* Booking Form */
.ln-booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ln-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.ln-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ln-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ln-form-group:last-of-type { margin-bottom: 1.5rem; }

.ln-form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,248,245,0.5);
  font-weight: 500;
}

.ln-form-group input,
.ln-form-group select,
.ln-form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--ln-radius);
  color: var(--ln-cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  transition: border-color var(--ln-transition), background var(--ln-transition);
  outline: none;
  -webkit-appearance: none;
}

.ln-form-group input::placeholder,
.ln-form-group textarea::placeholder {
  color: rgba(250,248,245,0.3);
}

.ln-form-group input:focus,
.ln-form-group select:focus,
.ln-form-group textarea:focus {
  border-color: var(--ln-gold);
  background: rgba(255,255,255,0.1);
}

.ln-form-group select option {
  background: var(--ln-espresso);
  color: var(--ln-cream);
}

.ln-form-group textarea { resize: vertical; min-height: 80px; }

.ln-booking-form .ln-btn--primary {
  background: var(--ln-gold);
  color: var(--ln-espresso);
  width: 100%;
  padding: 1rem;
  border-radius: var(--ln-radius);
  font-size: 0.9rem;
}
.ln-booking-form .ln-btn--primary:hover {
  background: var(--ln-gold-light);
}

.ln-form-note {
  font-size: 0.75rem;
  color: rgba(250,248,245,0.35);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.luna-footer {
  background: var(--ln-espresso);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 5vw;
}

.luna-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.ln-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ln-cream);
  letter-spacing: -0.01em;
}

.luna-footer__brand p {
  font-size: 0.82rem;
  color: rgba(250,248,245,0.4);
}

.luna-footer__links {
  display: flex;
  gap: 2rem;
}

.luna-footer__links a {
  font-size: 0.82rem;
  color: rgba(250,248,245,0.5);
  text-decoration: none;
  transition: color var(--ln-transition);
}
.luna-footer__links a:hover { color: var(--ln-cream); }

.luna-footer__copy {
  font-size: 0.75rem;
  color: rgba(250,248,245,0.25);
}

.luna-footer__copy a {
  color: var(--ln-gold);
  text-decoration: none;
}
.luna-footer__copy a:hover { color: var(--ln-gold-light); }

/* ============================================
   STATS BAR
   ============================================ */
.luna-stats {
  background: var(--ln-espresso);
  padding: 3rem 5vw;
}

.ln-stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.ln-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 3rem;
}

.ln-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--ln-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ln-stat__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(201, 165, 160, 0.7);
  font-weight: 400;
}

.ln-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.luna-testimonials {
  padding: 7rem 5vw;
  background: var(--ln-cream);
}

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

.ln-testimonial {
  background: var(--ln-white);
  border-radius: var(--ln-radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--ln-border);
  transition: transform var(--ln-transition), box-shadow var(--ln-transition);
}

.ln-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--ln-shadow-lg);
}

.ln-testimonial__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  color: var(--ln-gold);
}

.ln-testimonial__quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ln-text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.ln-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ln-testimonial__author strong {
  font-size: 0.875rem;
  color: var(--ln-espresso);
  font-weight: 500;
}

.ln-testimonial__author span {
  font-size: 0.78rem;
  color: var(--ln-text-muted);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal-init { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.revealed { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .luna-nav { padding: 1rem 1.5rem; }

  /* Mobile toggle */
  .ln-nav-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ln-espresso);
    z-index: 200;
    padding: 0.25rem;
    transition: transform 0.3s ease;
  }
  .ln-nav-toggle[aria-expanded="true"] { transform: rotate(90deg); }

  /* Dropdown nav */
  .ln-links {
    position: fixed;
    inset: 0;
    background: var(--ln-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
  }
  .ln-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .ln-links a {
    font-size: 1.25rem;
    color: var(--ln-text);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .ln-links .ln-cta-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: var(--ln-espresso);
    color: var(--ln-cream) !important;
    padding: 0.75rem 2rem;
  }

  .luna-hero__content { padding: 0 7vw; }

  .ln-services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .ln-gallery-grid { grid-template-columns: 1fr 1fr; }
  .ln-gallery-item--tall { grid-row: span 1; min-height: 260px; }
  .ln-gallery-item--wide { grid-column: span 2; }

  .luna-about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .luna-about__img-wrap { max-width: 400px; margin: 0 auto; }

  .ln-contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .luna-hero__actions { flex-direction: column; }
  .luna-hero__scroll { display: none; }

  .ln-gallery-grid { grid-template-columns: 1fr; }
  .ln-gallery-item--wide { grid-column: span 1; }

  .ln-form-row { grid-template-columns: 1fr; }

  .ln-stats-inner { flex-wrap: wrap; gap: 1.5rem; }
  .ln-stat-divider { display: none; }
  .ln-stat { padding: 0 1.5rem; }

  .ln-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
}