/* === Landing Page — Art Nouveau Aesthetic === */

/* --- Nav --- */

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  border-bottom: 2px solid var(--gold-dark);
}

.landing-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.landing-brand {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.landing-nav-actions {
  display: flex;
  gap: 0.75rem;
}

/* --- Hero --- */

.landing-hero {
  background: var(--bg);
  background-image: url('/img/assets/parchment.png');
  background-size: cover;
  background-position: center;
  padding: 6rem 15% 4rem;
  text-align: center;
}

.landing-hero-logo {
  width: 60%;
  max-width: 360px;
  margin: 0 auto 2rem;
  display: block;
}

.landing-hero-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.landing-hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.landing-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.landing-hero-actions .btn-large {
  width: auto;
  padding: 0.85rem 2rem;
}

.landing-hero-image {
  max-width: 700px;
  margin: 0 auto;
}

/* --- Placeholder Screenshots --- */

.landing-placeholder {
  background: var(--bg-warm);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.landing-placeholder-inner {
  padding: 2.5rem 2rem;
  text-align: center;
}

.landing-placeholder-img {
  width: 120px;
  max-width: 40%;
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.landing-placeholder-sm .landing-placeholder-img {
  width: 80px;
}

.landing-placeholder p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.landing-placeholder-sm {
  margin-top: 1.5rem;
}

.landing-placeholder-sm .landing-placeholder-inner {
  padding: 1.5rem 1rem;
}

/* --- Section Divider --- */

.landing-divider {
  text-align: center;
  padding: 1.5rem 0;
  background: var(--bg);
}

.landing-flourish {
  width: 60px;
  opacity: 0.4;
}

/* --- Sections --- */

.landing-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.landing-section h2 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2rem;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}

.landing-section-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.landing-section-alt {
  background: var(--bg-warm);
  max-width: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.landing-section-alt > h2,
.landing-section-alt > .landing-features {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.landing-section-alt > h2 {
  margin-bottom: 2.5rem;
}

/* --- How It Works Steps --- */

.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.landing-step {
  text-align: center;
}

.landing-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.landing-step h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.landing-step > p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Features Grid --- */

.landing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.landing-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.landing-feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.landing-feature h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.landing-feature p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Footer --- */

.landing-footer {
  background: var(--bg-nav);
  padding: 1.5rem;
}

.landing-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-brand-sm {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* --- Back Link --- */

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--gold);
}

/* --- Responsive --- */

@media (max-width: 800px) {
  .landing-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .landing-hero-title {
    font-size: 1.8rem;
  }

  .landing-hero-subtitle {
    font-size: 1.15rem;
  }
}

@media (max-width: 500px) {
  .landing-hero {
    padding: 4rem 18% 2.5rem;
  }

  .landing-hero-logo {
    width: 140px;
  }

  .landing-hero-title {
    font-size: 1.5rem;
  }

  .landing-section {
    padding: 2.5rem 1rem 3rem;
  }

  .landing-features {
    grid-template-columns: 1fr;
  }

  .landing-feature {
    padding: 1.5rem 1rem;
  }

  .landing-nav-inner {
    padding: 0.5rem 1rem;
  }

  .landing-brand {
    font-size: 1.1rem;
  }
}
