/* ================================
   RESET / BASE
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #0b0b11;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ================================
   LAYOUT
================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3 {
  margin: 0 0 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0 0 16px;
  opacity: 0.9;
}

ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* ================================
   HEADER
================================ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(11,11,17,0.8);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.nav a {
  margin-left: 20px;
  color: #ccc;
  text-decoration: none;
}

.nav-cta {
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff4d6d, #ff1f4a);
  color: #fff;
  border-radius: 6px;
}

/* ================================
   HERO
================================ */
.hero {
  padding: 120px 0 100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-lead {
  font-size: 20px;
  margin-bottom: 12px;
}

.hero-cta {
  margin-top: 30px;
}

.cta-primary {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff4d6d, #ff1f4a);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.cta-note {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

/* ================================
   IMAGES / PHOTO BLOCKS
================================ */
.pj-photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.pj-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.pj-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.5) 100%
  );
}

/* ================================
   GRIDS
================================ */
.pj-grid {
  display: grid;
  gap: 30px;
}

.pj-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* ================================
   LISTS / NOTES
================================ */
.section-note {
  margin-top: 20px;
  font-style: italic;
  opacity: 0.75;
}

.section-label {
  font-weight: 600;
  margin-top: 20px;
}

/* ================================
   FINAL CTA
================================ */
.final-cta {
  text-align: center;
}

.final-cta img {
  max-height: 70vh;
}

/* ================================
   FAQ
================================ */
.faq details {
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

/* ================================
   FOOTER
================================ */
.site-footer {
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .pj-grid.three {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }
}