/* LindaGhaffari.com — V1 Production CSS */
:root {
  --founder-navy: #0B1320;
  --valet-navy: #07111F;
  --deep-founder-shadow: #050A12;
  --founder-brass: #C7A267;
  --highlight-gold: #D9BD82;
  --executive-ivory: #F7F4EE;
  --heritage-charcoal: #232A34;
  --legacy-bronze: #9A7B4F;
  --ink: #22252A;
  --mist: rgba(247,244,238,0.70);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', SFMono-Regular, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--founder-navy);
  color: var(--executive-ivory);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { line-height: 1.7; }

/* ── NAV ── */
.lg-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, border-bottom 0.3s;
}
.lg-header.scrolled {
  background: rgba(11,19,32,0.97);
  border-bottom: 1px solid rgba(199,162,103,0.15);
  backdrop-filter: blur(8px);
}
.lg-logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--executive-ivory);
}
.lg-logo img { height: 32px; }
.lg-logo-wordmark { height: 22px; }
.lg-nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.lg-nav-links a {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(247,244,238,0.75); transition: color 0.2s;
}
.lg-nav-links a:hover, .lg-nav-links a.active { color: var(--founder-brass); }
.lg-nav-cta {
  display: inline-flex; align-items: center; height: 40px; padding: 0 20px;
  background: var(--founder-brass); color: var(--founder-navy) !important;
  font-size: 11px !important; letter-spacing: 0.14em !important;
  font-weight: 700 !important; text-transform: uppercase;
  transition: background 0.2s;
}
.lg-nav-cta:hover { background: var(--highlight-gold); color: var(--founder-navy) !important; }

.lg-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.lg-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--executive-ivory); }

.lg-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--founder-navy);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.lg-mobile-menu.open { display: flex; }
.lg-mobile-menu a { font-family: var(--font-display); font-size: 28px; color: var(--executive-ivory); }
.lg-mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--executive-ivory); font-size: 28px; cursor: pointer;
}

/* ── SECTIONS ── */
.lg-section { position: relative; overflow: hidden; }
.lg-section.dark { background: var(--founder-navy); color: var(--executive-ivory); }
.lg-section.ivory { background: var(--executive-ivory); color: var(--ink); }
.lg-section.deep { background: var(--deep-founder-shadow); color: var(--executive-ivory); }

.lg-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
}

.lg-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.lg-overlay.dark-left {
  background: linear-gradient(to right,
    rgba(11,19,32,0.97) 0%, rgba(11,19,32,0.92) 44%,
    rgba(11,19,32,0.50) 68%, rgba(11,19,32,0.12) 100%);
}
.lg-overlay.dark-full { background: rgba(11,19,32,0.80); }
.lg-overlay.ivory-left {
  background: linear-gradient(to right,
    rgba(247,244,238,0.99) 0%, rgba(247,244,238,0.97) 44%,
    rgba(247,244,238,0.55) 68%, rgba(247,244,238,0.10) 100%);
}
.lg-overlay.dark-mid {
  background: linear-gradient(to right,
    rgba(11,19,32,0.92) 0%, rgba(11,19,32,0.82) 50%,
    rgba(11,19,32,0.60) 80%, rgba(11,19,32,0.20) 100%);
}

.lg-inner {
  position: relative; z-index: 2;
  width: min(1180px, calc(100vw - 96px));
  margin-inline: auto;
}

/* ── HERO ── */
.lg-hero { min-height: 100vh; display: flex; align-items: center; padding-top: 72px; }
.lg-hero-content { padding: 100px 0; max-width: 660px; }

/* ── PADDING ── */
.lg-pad { padding: 100px 0; }
.lg-pad-sm { padding: 72px 0; }
.lg-pad-lg { padding: 128px 0; }
.lg-pad-xl { padding: 160px 0; }

/* ── TYPOGRAPHY ── */
.lg-eyebrow {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--founder-brass); font-weight: 500; margin-bottom: 24px;
}
.lg-section.ivory .lg-eyebrow { color: var(--legacy-bronze); }

.lg-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 0.96; letter-spacing: -0.03em; font-weight: 400; margin-bottom: 32px;
}
.lg-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.02; letter-spacing: -0.03em; font-weight: 400; margin-bottom: 24px;
}
.lg-h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400; letter-spacing: -0.02em; margin-bottom: 12px;
}
.lg-body {
  font-size: 17px; line-height: 1.75;
  color: var(--mist); max-width: 600px;
}
.lg-section.ivory .lg-body { color: rgba(34,37,42,0.78); }
.lg-body-large {
  font-size: 21px; line-height: 1.60; color: var(--mist); max-width: 620px;
}
.lg-section.ivory .lg-body-large { color: rgba(34,37,42,0.78); }

.lg-rule { width: 48px; height: 1px; background: var(--founder-brass); margin: 28px 0; }
.lg-section.ivory .lg-rule { background: var(--legacy-bronze); }

/* ── BUTTONS ── */
.lg-btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.lg-btn {
  display: inline-flex; align-items: center; height: 52px; padding: 0 28px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; transition: all 0.2s; white-space: nowrap;
}
.lg-btn.primary { background: var(--founder-brass); color: var(--founder-navy); border: 1px solid var(--founder-brass); }
.lg-btn.primary:hover { background: var(--highlight-gold); border-color: var(--highlight-gold); }
.lg-btn.secondary { background: transparent; color: var(--executive-ivory); border: 1px solid rgba(199,162,103,0.5); }
.lg-btn.secondary:hover { border-color: var(--founder-brass); color: var(--founder-brass); }
.lg-btn.ink { background: transparent; color: var(--ink); border: 1px solid rgba(34,37,42,0.4); }
.lg-btn.ink:hover { border-color: var(--ink); background: rgba(34,37,42,0.06); }

/* ── LAYOUTS ── */
.lg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.lg-two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.lg-center { text-align: center; max-width: 680px; margin-inline: auto; }

/* ── VIDEO PLACEHOLDER ── */
.lg-video-placeholder {
  width: 100%; aspect-ratio: 16/9; max-width: 540px;
  background: rgba(11,19,32,0.55); border: 1px solid rgba(199,162,103,0.22);
  border-radius: 4px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.lg-video-placeholder .play-ring {
  width: 68px; height: 68px; border: 1.5px solid var(--founder-brass);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.lg-video-placeholder .play-ring svg { width: 22px; fill: var(--founder-brass); margin-left: 4px; }
.lg-video-placeholder span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(199,162,103,0.55);
}

/* ── SERVICE CARDS ── */
.lg-service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; }
.lg-service-card { padding: 36px 32px; border: 1px solid rgba(199,162,103,0.14); }
.lg-section.ivory .lg-service-card { border-color: rgba(34,37,42,0.10); }
.lg-service-card-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--founder-brass); letter-spacing: 0.14em; margin-bottom: 16px;
}
.lg-service-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 12px;
}
.lg-service-card p { font-size: 14px; line-height: 1.72; color: var(--mist); }
.lg-section.ivory .lg-service-card p { color: rgba(34,37,42,0.68); }

/* ── ARTICLE CARDS ── */
.lg-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.lg-article-card { border-top: 1px solid rgba(199,162,103,0.22); padding-top: 24px; }
.lg-section.ivory .lg-article-card { border-top-color: rgba(34,37,42,0.14); }
.lg-article-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--founder-brass); margin-bottom: 12px;
}
.lg-article-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  line-height: 1.25; margin-bottom: 12px;
}
.lg-article-card p { font-size: 14px; line-height: 1.65; color: var(--mist); }
.lg-section.ivory .lg-article-card p { color: rgba(34,37,42,0.68); }
.lg-read-more {
  display: inline-block; margin-top: 16px; font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--founder-brass); transition: color 0.2s;
}
.lg-read-more:hover { color: var(--highlight-gold); }

/* ── SPEAKING TOPICS ── */
.lg-topic-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.lg-topic-item { display: flex; align-items: flex-start; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(199,162,103,0.14); }
.lg-topic-num { font-family: var(--font-mono); font-size: 11px; color: var(--founder-brass); letter-spacing: 0.1em; padding-top: 4px; flex-shrink: 0; }
.lg-topic-item h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1.2; margin-bottom: 8px; }
.lg-topic-item p { font-size: 14px; color: var(--mist); line-height: 1.65; }

/* ── PROCESS STEPS ── */
.lg-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.lg-step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(199,162,103,0.12); }
.lg-step-num { font-family: var(--font-mono); font-size: 11px; color: var(--founder-brass); padding-top: 4px; flex-shrink: 0; width: 32px; }
.lg-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.lg-step p { font-size: 14px; color: var(--mist); line-height: 1.65; }
.lg-section.ivory .lg-step { border-bottom-color: rgba(34,37,42,0.10); }
.lg-section.ivory .lg-step p { color: rgba(34,37,42,0.68); }

/* ── OPEN LETTER ── */
.lg-letter {
  max-width: 680px; font-family: var(--font-display); font-size: 19px;
  color: var(--ink);
}
.lg-letter p { margin-bottom: 13px; line-height: 1.55; }
.lg-letter .signature { margin-top: 22px; font-size: 30px; letter-spacing: -0.01em; color: var(--ink); }

/* ── CONTACT FORM ── */
.lg-form { display: flex; flex-direction: column; gap: 20px; }
.lg-form-group label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--founder-brass); margin-bottom: 8px;
}
.lg-form-group input,
.lg-form-group textarea,
.lg-form-group select {
  width: 100%; background: rgba(11,19,32,0.7);
  border: 1px solid rgba(199,162,103,0.22); border-radius: 2px;
  padding: 14px 18px; color: var(--executive-ivory);
  font-size: 15px; font-family: var(--font-body); transition: border-color 0.2s;
}
.lg-form-group input:focus,
.lg-form-group textarea:focus { outline: none; border-color: var(--founder-brass); }
.lg-form-group input::placeholder,
.lg-form-group textarea::placeholder { color: rgba(247,244,238,0.28); }
.lg-form-group textarea { resize: vertical; }

/* ── FOOTER ── */
.lg-footer {
  background: var(--deep-founder-shadow);
  border-top: 1px solid rgba(199,162,103,0.10);
  padding: 64px 0 32px;
}
.lg-footer-inner {
  width: min(1180px, calc(100vw - 96px)); margin-inline: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(199,162,103,0.08);
}
.lg-footer-brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--executive-ivory); margin-bottom: 12px; }
.lg-footer-tagline { font-size: 13px; color: var(--mist); line-height: 1.65; max-width: 300px; }
.lg-footer-col h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--founder-brass); margin-bottom: 20px; }
.lg-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lg-footer-col ul a { font-size: 14px; color: var(--mist); transition: color 0.2s; }
.lg-footer-col ul a:hover { color: var(--executive-ivory); }
.lg-footer-bottom {
  width: min(1180px, calc(100vw - 96px)); margin-inline: auto;
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
}
.lg-footer-copy { font-size: 12px; color: rgba(247,244,238,0.30); }
.lg-footer-legal { display: flex; gap: 20px; }
.lg-footer-legal a { font-size: 12px; color: rgba(247,244,238,0.30); }

/* ── SHARED JS HEADER SCROLL ── */
.lg-header.at-top { background: transparent; border-bottom: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .lg-header { padding: 0 24px; }
  .lg-nav-links { display: none; }
  .lg-nav-toggle { display: flex; }
  .lg-inner { width: calc(100vw - 48px); }
  .lg-footer-inner { width: calc(100vw - 48px); grid-template-columns: 1fr; gap: 40px; }
  .lg-footer-bottom { width: calc(100vw - 48px); flex-direction: column; gap: 12px; text-align: center; }
  .lg-two-col, .lg-two-col-wide { grid-template-columns: 1fr; gap: 48px; }
  .lg-service-cards { grid-template-columns: 1fr; }
  .lg-article-grid { grid-template-columns: 1fr 1fr; }
  .lg-hero-content { padding: 80px 0; }
  .lg-pad { padding: 72px 0; }
  .lg-pad-lg { padding: 80px 0; }
  .lg-pad-xl { padding: 96px 0; }
  .lg-video-placeholder { max-width: 100%; }
}

@media (max-width: 600px) {
  .lg-article-grid { grid-template-columns: 1fr; }
}
