/* ============================================================
   InLight Coaching Services — Main Stylesheet
   Dark Navy + Gold + Lantern Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0d1b35;
  --navy-mid:    #122040;
  --navy-light:  #1a2d52;
  --navy-card:   #162444;
  --gold:        #c9a84c;
  --gold-light:  #e2c47a;
  --gold-dim:    rgba(201,168,76,0.25);
  --gold-border: rgba(201,168,76,0.35);
  --white:       #ffffff;
  --off-white:   #f0ead8;
  --muted:       rgba(240,234,216,0.65);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --transition:  0.3s ease;
  --radius:      4px;
  --max-w:       1140px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 160px; /* offset for fixed nav with 150px logo */
}

/* Scroll to top on page load */
body { scroll-margin-top: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.3rem; }

p { color: var(--muted); margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.gold { color: var(--gold); }
.serif { font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

blockquote {
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--off-white);
  margin: 0;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

.section-center { text-align: center; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-2.reverse { direction: rtl; }
.grid-2.reverse > * { direction: ltr; }

/* ── Divider ── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.gold-divider.left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(240,234,216,0.4);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.3rem 0;
  background: rgba(13,27,53,0.98);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold) !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 160px; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,53,0.98);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--off-white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--off-white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -160px;
  padding-top: 160px;
}

/* ── Lantern Photo Hero ── */
.hero-lantern {
  justify-content: center;
}

.hero-lantern-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/lantern-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,53,0.78) 0%,
    rgba(13,27,53,0.65) 40%,
    rgba(13,27,53,0.82) 100%
  );
}

.hero-lantern-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

/* ── Split Hero (two-column: text left, image right) ── */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 160px;
  background: var(--navy);
  margin-top: -160px;
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}

.hero-split-content h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-split-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

.hero-split-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-content {
    padding: 5rem 2rem 3rem;
  }
  .hero-split-image {
    min-height: 380px;
  }
}

/* ── Section Lantern Background ── */
.section-lantern-bg {
  position: relative;
  overflow: hidden;
}

.section-lantern-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/lantern-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.32;
}

.section-lantern-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,53,0.92) 0%,
    rgba(13,27,53,0.80) 50%,
    rgba(13,27,53,0.92) 100%
  );
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -160px;
  padding-top: calc(160px + 3rem);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/lantern-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.22;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,53,0.88) 0%,
    rgba(13,27,53,0.75) 50%,
    rgba(13,27,53,0.88) 100%
  );
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 2; }

/* ── Lantern Decorative SVG ── */
.lantern-icon {
  display: inline-block;
  opacity: 0.15;
  position: absolute;
}

/* ── Cards ── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── Steps / Approach Tabs ── */
.approach-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0;
}

.tab-btn {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Service Cards ── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1px;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-img {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.service-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Foundation / Pricing ── */
.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-amount {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 0.25rem 0 0.75rem;
}

.price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-includes {
  margin: 1.5rem 0;
  text-align: left;
}

.price-includes li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold-border);
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.price-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── Insight Guide ── */
.guide-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.guide-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-border);
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guide-list li .guide-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Contact ── */
.contact-box {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Calendly embed ── */
.calendly-inline-widget {
  min-height: 700px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── Footer ── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.prayer-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  transition: all var(--transition);
}
.prayer-line-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Lantern SVG Background Decoration ── */
.lantern-bg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 600px;
  opacity: 0.04;
  pointer-events: none;
}

/* ── Section Separators ── */
.sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin: 0;
}

/* ── Highlight Box ── */
.highlight-box {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.highlight-box p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--off-white);
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-2, .service-block, .guide-feature {
    grid-template-columns: 1fr;
  }
  .grid-2.reverse, .service-block.reverse { direction: ltr; }
  .service-img { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn { text-align: center; }
  .approach-tabs { flex-wrap: wrap; }
  .pricing-card { padding: 2rem 1.5rem; }
}
