/* ============================================
   ProSite Pro — Theme CSS
   Palette: Navy #1B2033 · Cream #F5F0EB · Gold #C9A84C
   Fonts: Playfair Display (serif) · DM Sans (body)
   ============================================ */

:root {
  --navy: #1B2033;
  --navy-deep: #141826;
  --cream: #F5F0EB;
  --cream-dark: #EDE6DC;
  --gold: #C9A84C;
  --gold-light: #D4B86A;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --white: #FFFFFF;
  --off-white: #F9F6F2;
  --text-dark: #1B2033;
  --text-muted: #6B7280;
  --text-light: rgba(255, 255, 255, 0.75);
  --radius: 12px;
  --radius-sm: 8px;
}

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

em {
  font-style: italic;
  color: var(--gold);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   SECTION LABEL (small caps tag above headings)
   ============================================ */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-label.gold {
  color: var(--gold);
}

/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-logo-pro {
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  padding: 160px 32px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-left {
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Stat badges (right side of hero) */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.stat-badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 20px 32px;
  text-align: center;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.stat-badge .stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-badge .stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   NICHES
   ============================================ */
.niches {
  background: var(--cream);
  padding: 112px 32px;
}

.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.niches h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 60px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.niche-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.niche-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 32, 51, 0.1);
}

.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.niche-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.niche-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream-dark);
  padding: 112px 32px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   PACKAGES / PRICING
   ============================================ */
.packages {
  background: var(--navy);
  padding: 112px 32px;
}

.packages-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.packages .section-label {
  color: var(--gold);
}

.packages h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 60px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.package-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  position: relative;
  transition: transform 0.2s;
}

.package-card:hover {
  transform: translateY(-3px);
}

.package-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.package-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.package-card.featured .package-tier {
  color: rgba(27, 32, 51, 0.65);
}

.package-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1;
}

.package-card.featured .package-price {
  color: var(--navy-deep);
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.package-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-card.featured li {
  border-bottom-color: rgba(27, 32, 51, 0.12);
  color: var(--navy-deep);
}

.package-card li:last-child {
  border-bottom: none;
}

.package-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.package-card.featured li::before {
  color: var(--navy-deep);
}

.pkg-btn {
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
}

.pkg-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.pkg-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pkg-btn-gold {
  background: var(--navy-deep);
  color: var(--gold);
  border: 1.5px solid transparent;
}

.pkg-btn-gold:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.retainer-note {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--cream);
  padding: 112px 32px;
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.process h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  padding: 8px;
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CLOSING / CTA
   ============================================ */
.closing {
  background: var(--navy);
  padding: 112px 32px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 24px;
}

.closing > .closing-inner > p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 56px;
}

.contact-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: inline-block;
  text-align: center;
  min-width: 320px;
}

.contact-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.contact-location {
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  padding: 56px 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 24px 80px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .stat-badge {
    min-width: 120px;
    padding: 16px 20px;
  }

  .stat-badge .stat-num {
    font-size: 1.8rem;
  }

  .niche-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .niches,
  .testimonials,
  .packages,
  .process,
  .closing {
    padding: 80px 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .niche-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-block {
    min-width: 0;
    width: 100%;
    padding: 32px 24px;
  }

  .hero-right {
    flex-direction: column;
    gap: 12px;
  }

  .stat-badge {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
  }
}
