/* ============================================================
   Guiding Lives Worldwide — Main Stylesheet
   ============================================================ */

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

:root {
  --sage:      #7A9E8A;
  --sage-lt:   #A8C4B0;
  --sage-dk:   #4A6E58;
  --cream:     #F7F3EE;
  --warm-off:  #EDE7DC;
  --stone:     #C8B89A;
  --ink:       #1E1A16;
  --ink-soft:  #3A3530;
  --mist:      #8A9E92;
  --gold:      #B8975A;
  --white:     #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  /* Reset any WP theme defaults */
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide default WP admin bar spacing when logged in */
.admin-bar .glw-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .glw-nav { top: 46px; }
}

/* ── NAV ── */
.glw-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(247,243,238,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,184,154,0.3);
  transition: box-shadow 0.3s;
}
.glw-nav.scrolled { box-shadow: 0 2px 24px rgba(30,26,22,0.08); }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--sage-dk);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1.2;
}
.nav-brand span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px;
  background: var(--sage);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--sage-dk); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sage-dk) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ── HERO ── */
.glw-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.glw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(168,196,176,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,184,154,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(122,158,138,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-art svg {
  position: absolute;
  opacity: 0.07;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 5vw 6vw 8vw;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--sage-dk); }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sage-dk);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); color: var(--white); }

.btn-ghost {
  color: var(--sage-dk);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--sage-lt);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { color: var(--sage); border-color: var(--sage); }

.hero-quote-block {
  margin-top: 3rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--sage-lt);
  max-width: 420px;
}
.hero-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.hero-attribution {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 6vw 6vw 6vw 2vw;
}

.photo-frame {
  position: relative;
  width: min(340px, 90%);
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 100%; height: 100%;
  border: 1.5px solid var(--sage-lt);
  border-radius: 2px;
  z-index: 0;
}
.photo-frame::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -12px;
  width: 70%; height: 60%;
  background: var(--warm-off);
  z-index: -1;
  border-radius: 2px;
}

.photo-portrait {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #C8D8C0 0%, #A8C4B0 40%, #7A9E8A 100%);
}

.credential-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border: 1px solid rgba(200,184,154,0.4);
  box-shadow: 0 8px 32px rgba(30,26,22,0.10);
  padding: 1rem 1.4rem;
  border-radius: 3px;
  z-index: 3;
  min-width: 190px;
}
.credential-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.credential-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── DIVIDER ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5vw;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--stone);
  opacity: 0.4;
}
.divider-leaf { color: var(--sage-lt); font-size: 1.1rem; }

/* ── ABOUT ── */
.about-strip {
  background: var(--white);
  padding: 6rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.section-headline em { font-style: italic; color: var(--sage-dk); }

.section-body {
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.specialty-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.specialty-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  height: 480px;
}
.about-img-main {
  width: 75%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  position: absolute;
  right: 0;
  background: linear-gradient(160deg, #B8D0C0 0%, #8AAA98 100%);
  background-size: cover;
  background-position: center;
}
.about-img-accent {
  width: 48%;
  height: 55%;
  position: absolute;
  left: 0; bottom: 0;
  border-radius: 3px;
  background: linear-gradient(140deg, #C8D8C0 0%, #A0B8A8 100%);
  border: 4px solid var(--white);
}
.about-stat {
  position: absolute;
  top: 2rem; left: 0;
  background: var(--sage-dk);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(74,110,88,0.3);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}
.about-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 0.3rem;
}

/* ── SERVICES ── */
.services-section {
  padding: 6rem 8vw;
  background: var(--cream);
}
.services-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}
.services-header p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-top: 0.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(200,184,154,0.25);
  padding: 2.4rem 2rem;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-lt), var(--sage-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30,26,22,0.08);
  border-color: rgba(122,158,138,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--warm-off);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.2rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.service-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--sage-dk);
  padding: 5rem 8vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(168,196,176,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 0% 50%, rgba(30,26,22,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-text { position: relative; }
.cta-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-lt);
  margin-bottom: 0.8rem;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
}
.cta-headline em { font-style: italic; color: var(--sage-lt); }

.btn-light {
  background: var(--white);
  color: var(--sage-dk);
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  flex-shrink: 0;
}
.btn-light:hover { background: var(--cream); transform: translateY(-1px); color: var(--sage-dk); }

/* ── LOCATION STRIP ── */
.location-strip {
  background: var(--warm-off);
  padding: 2.5rem 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.location-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.location-badge svg { color: var(--sage); }
.location-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--stone);
}

/* ── FOOTER ── */
.glw-footer {
  background: var(--ink);
  color: var(--stone);
  padding: 4rem 8vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  max-width: 280px;
}
.footer-heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-lt);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage-lt); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,184,154,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
  font-style: normal;
}
.social-link:hover { border-color: var(--sage-lt); color: var(--sage-lt); }

.footer-bottom {
  border-top: 1px solid rgba(200,184,154,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--mist);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .glw-hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-strip { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  /* Mobile nav open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(247,243,238,0.98);
    padding: 1.5rem 5vw 2rem;
    border-bottom: 1px solid rgba(200,184,154,0.3);
    gap: 1.2rem;
    backdrop-filter: blur(10px);
  }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
}

/* ── WP CONTENT AREA (for inner pages) ── */
.glw-content {
  padding: 8rem 8vw 6rem;
  max-width: 800px;
  margin: 0 auto;
}
.glw-content h1, .glw-content h2, .glw-content h3 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
}
.glw-content p { margin-bottom: 1.2rem; font-weight: 300; color: var(--ink-soft); }
.glw-content a { color: var(--sage-dk); }
