/* PhotoAIrt — landing SEO */
.landing-page {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.landing-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 108px max(24px, 5vw) 72px;
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.82) 38%,
      rgba(0, 0, 0, 0.42) 62%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    url('/images/og-default.jpg') 72% center / cover no-repeat;
  z-index: 0;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(540px, 92vw);
  padding: 32px 36px;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.landing-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}

.landing-hero .lead {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.landing-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 28px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.2s;
}

.landing-btn:hover { opacity: 0.88; }

.landing-btn-primary {
  background: #e8d5b0;
  color: #000;
  border: 1px solid #e8d5b0;
}

.landing-btn-secondary {
  background: transparent;
  color: #e8d5b0;
  border: 1px solid rgba(232,213,176,0.55);
}

.landing-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
}

.landing-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 32px;
  text-align: center;
  margin-bottom: 28px;
  color: #e8d5b0;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.landing-step {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.03);
}

.landing-step strong {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8d5b0;
  margin-bottom: 10px;
}

.landing-step p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

.landing-uses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.landing-use {
  text-align: center;
  padding: 18px 12px;
}

.landing-use h3 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8d5b0;
  margin-bottom: 8px;
}

.landing-use p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.landing-faq details {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.02);
}

.landing-faq summary {
  cursor: pointer;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}

.landing-faq p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

.landing-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.landing-footer-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.landing-footer-nav a:hover { color: #e8d5b0; }

/* Gallery hub (cards injected by landing-init.js) */
.landing-section .gallery-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.landing-section .gallery-hub-card {
  display: block;
  padding: 22px 18px;
  border-radius: 16px;
  border: 1px solid rgba(232, 213, 176, 0.28);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.landing-section .gallery-hub-card:hover {
  border-color: #e8d5b0;
  background: rgba(255, 255, 255, 0.05);
}

.landing-section .gallery-hub-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: #e8d5b0;
  margin: 0 0 8px;
  text-align: left;
  text-decoration: none;
}

.landing-section .gallery-hub-card p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .landing-hero {
    justify-content: center;
    text-align: center;
    padding-top: 96px;
  }

  .landing-hero-bg {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.88)),
      url('/images/og-default.jpg') center 30% / cover no-repeat;
  }

  .landing-hero-inner {
    max-width: 640px;
    text-align: center;
  }

  .landing-cta {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .landing-hero {
    min-height: 62vh;
    padding-top: 88px;
  }

  .landing-hero-inner {
    padding: 24px 20px;
  }
}
