/*
Theme Name: goldthread
Theme URI: https://goldthreadllc.com
Author: Julie Averill
Author URI: https://goldthreadllc.com
Description: Gold Thread LLC — Julie Averill speaker, author, and advisor site
Version: 1.7
*/

/* ============================================================
   GLOBAL RESET & VARIABLES
   ============================================================ */
:root {
  --navy: #0f1b2d;
  --navy-mid: #1a2a42;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f5edd6;
  --cream: #faf7f2;
  --warm-white: #fff;
  --charcoal: #2c2c2c;
  --mid-gray: #6b6b6b;
  --light-gray: #e8e4df;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   NAV
   ============================================================ */
.gt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 27, 45, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.gt-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gt-nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.gt-nav-logo span { color: var(--gold); }
.gt-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.gt-nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  text-decoration: none;
}
.gt-nav-links a:hover,
.gt-nav-links .current-menu-item a { color: var(--gold-light); }
.gt-nav-links .menu-book-julie a,
.gt-nav-links .nav-cta a {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-weight: 600 !important;
}
.gt-nav-links .menu-book-julie a:hover,
.gt-nav-links .nav-cta a:hover { background: var(--gold-light) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.gt-footer {
  background: #08111e;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.gt-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.gt-footer-logo {
  font-family: var(--font-display);
  font-size: 0.97rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.gt-footer-logo span { color: var(--gold); }
.gt-footer-links { display: flex; gap: 1.75rem; list-style: none; }
.gt-footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.gt-footer-links a:hover { color: var(--gold); }
.gt-footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.section { padding: 5.5rem 2rem; }
.container { max-width: 1180px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.body-text {
  font-size: 0.97rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin: 2rem 0;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 3px;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.45);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 600px) {
  .gt-nav-links { display: none; }
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* Ensure images inside cards/sections don't blow up */
.card-thumb img,
.press-thumb img,
.story-image img,
.personal-photo img,
.advisory-photo img,
.speaking-photo img,
.book-cover-col img,
.praise-photo,
.foreword-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.praise-photo,
.foreword-photo {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.foreword-photo {
  width: 80px !important;
  height: 80px !important;
}

/* Footer submenu */
.footer-links { position: relative; }
.footer-links li { position: relative; }
.footer-submenu {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #08111e;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px;
  padding: 0.4rem 0;
  list-style: none;
  white-space: nowrap;
  z-index: 10;
  margin-bottom: 0.4rem;
}
.footer-submenu li a {
  display: block;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-submenu li a:hover { color: var(--gold); }
.footer-links li:hover .footer-submenu { display: block; }

/* ============================================================
   CAPABILITY LIST — bordered gold-rule list for document findings
   ============================================================ */
.capability-list {
  list-style: none;
  padding: 1rem 1.4rem;
  background: var(--warm-white);
  border-left: 2px solid var(--gold);
  margin: 1.25rem 0 1.5rem;
  max-width: 780px;
}
.capability-list li {
  padding: 0.5rem 0 0.5rem 1.2rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  line-height: 1.6;
}
.capability-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.capability-list li strong { color: var(--navy); font-weight: 600; }
