/* LindaGhaffari.com — local test build · fonts: Fraunces (display) + Inter (body), free Canela/Neue-Haas look-alikes */
: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;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", SFMono-Regular, Consolas, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--founder-navy); color: var(--executive-ivory); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
img { display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- NAV ---------- */
.lg-nav { position: absolute; top: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 26px clamp(24px,5vw,72px); }
.lg-nav__logo { height: 34px; }
.lg-nav__links { display: flex; align-items: center; gap: clamp(18px,2vw,34px); }
.lg-nav__links a { color: var(--executive-ivory); text-decoration: none; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.lg-nav__links a:hover { color: var(--founder-brass); }
.lg-nav__cta { border: 1px solid var(--founder-brass); color: var(--founder-navy) !important; background: var(--founder-brass); padding: 11px 20px; font-weight: 700; }

/* ---------- SECTION SHELL ---------- */
.lg-section { position: relative; overflow: hidden; background: var(--founder-navy); color: var(--executive-ivory); }
.lg-section.ivory { background: var(--executive-ivory); color: var(--ink); }
.lg-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* left-fade scrim so copy stays legible over the image */
.lg-section.has-img::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--founder-navy) 0%, rgba(11,19,32,.72) 40%, rgba(11,19,32,.18) 72%, rgba(11,19,32,0) 100%); }
.lg-content { position: relative; z-index: 2; width: min(1180px, calc(100vw - 64px)); margin-inline: auto; }
.lg-overlay { position: absolute; z-index: 1; pointer-events: none; }

/* ---------- TYPE ---------- */
.lg-eyebrow { font-family: var(--font-body); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--founder-brass); font-weight: 700; margin-bottom: 22px; }
.lg-h1 { font-family: var(--font-display); font-size: clamp(48px,6.4vw,98px); line-height: .96; letter-spacing: -.025em; font-weight: 400; margin: 0; }
.lg-h1 em { font-style: italic; color: var(--highlight-gold); }
.lg-h2 { font-family: var(--font-display); font-size: clamp(36px,4.6vw,66px); line-height: 1.02; letter-spacing: -.02em; font-weight: 400; margin: 0; }
.lg-body-large { font-family: var(--font-body); font-size: 21px; line-height: 1.55; color: rgba(247,244,238,.86); }
.ivory .lg-body-large { color: rgba(34,37,42,.78); }
.lg-body { font-size: 16px; line-height: 1.65; }

/* ---------- HERO ---------- */
.lg-hero { min-height: 900px; display: flex; align-items: center; }
.lg-hero .lg-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lg-copy-left { max-width: 600px; }
.lg-hero .lg-body-large { margin: 28px 0 36px; }
.lg-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.lg-btn { display: inline-flex; align-items: center; height: 54px; padding: 0 26px; border: 1px solid var(--founder-brass); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; text-decoration: none; }
.lg-btn.primary { background: var(--founder-brass); color: var(--founder-navy); }
.lg-btn.secondary { background: transparent; color: var(--executive-ivory); }
.ivory .lg-btn.secondary { color: var(--ink); border-color: var(--ink); }
/* portrait placeholder frame (real photo drops in here) */
.lg-portrait-frame { justify-self: end; width: min(420px, 38vw); aspect-ratio: 4/5; position: relative; border: 1px solid rgba(199,162,103,.4); background: linear-gradient(160deg, #141d2c, #0a111c); display: flex; align-items: center; justify-content: center; }
.lg-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.lg-portrait-frame .ph { text-align: center; opacity: .55; }
.lg-portrait-frame .ph img { width: 96px; height: auto; margin: 0 auto 14px; opacity: .8; }
.lg-portrait-frame .ph span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--founder-brass); }

/* ---------- INDUSTRIES STRIP ---------- */
.lg-industries { background: var(--executive-ivory); color: var(--ink); padding: 30px 0; border-bottom: 1px solid rgba(34,37,42,.1); }
.lg-industries .lg-content { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.lg-industries .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--legacy-bronze); font-weight: 700; }
.lg-industries .items { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; letter-spacing: .04em; color: rgba(34,37,42,.7); }

/* ---------- STANDARD SECTION ---------- */
.lg-pad { padding: clamp(96px,12vw,160px) 0; }
.lg-split .lg-content { display: grid; grid-template-columns: minmax(0,.52fr) minmax(0,.48fr); gap: 56px; align-items: center; }
.lg-split .copy { max-width: 620px; }
.lg-split .copy .lg-body-large { margin-top: 26px; }

/* ---------- GROW ---------- */
.lg-grow .flywheel { justify-self: center; width: min(460px, 40vw); }

/* ---------- OFFER CARDS ---------- */
.lg-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(199,162,103,.25); border: 1px solid rgba(199,162,103,.25); margin-top: 56px; }
.lg-card { background: rgba(11,19,32,.92); padding: 40px 32px; }
.lg-card .num { font-family: var(--font-mono); font-size: 12px; color: var(--founder-brass); letter-spacing: .14em; }
.lg-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 16px 0 14px; }
.lg-card p { font-size: 15px; line-height: 1.55; color: rgba(247,244,238,.72); margin: 0; }

/* ---------- INSIGHTS ---------- */
.lg-chips { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 50px; }
.lg-chip { border: 1px solid rgba(247,244,238,.25); padding: 9px 16px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(247,244,238,.8); }
.ivory .lg-chip { border-color: rgba(34,37,42,.2); color: rgba(34,37,42,.7); }
.lg-articles { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lg-article { background: rgba(11,19,32,.5); border: 1px solid rgba(247,244,238,.1); padding: 30px 26px; }
.lg-article .cat { font-family: var(--font-mono); font-size: 11px; color: var(--founder-brass); letter-spacing: .1em; text-transform: uppercase; }
.lg-article h3 { font-family: var(--font-display); font-weight: 400; font-size: 23px; line-height: 1.12; margin: 14px 0; }
.lg-article p { font-size: 14px; line-height: 1.55; color: rgba(247,244,238,.66); margin: 0; }

/* ---------- FOUNDER NOTE ---------- */
.lg-founder .lg-content { max-width: 860px; text-align: center; }
.lg-founder .quote { font-family: var(--font-display); font-size: clamp(28px,3.4vw,46px); line-height: 1.22; letter-spacing: -.01em; }
.lg-founder .sig { margin-top: 36px; font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--highlight-gold); }
.lg-founder .role { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--founder-brass); margin-top: 8px; }

/* ---------- FOOTER ---------- */
.lg-footer { background: var(--deep-founder-shadow); padding: 80px 0 48px; }
.lg-footer .lg-content { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.lg-footer__nav { display: flex; flex-direction: column; gap: 12px; text-align: right; }
.lg-footer__nav a { color: rgba(247,244,238,.7); text-decoration: none; font-size: 13px; }
.lg-footer .copyright { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(247,244,238,.08); font-size: 12px; color: rgba(247,244,238,.4); }

/* ---------- INSIDE-PAGE HERO ---------- */
.lg-phero { min-height: 600px; display: flex; align-items: center; padding: 120px 0 60px; }
.lg-phero .lg-content { max-width: 1180px; }
.lg-phero .copy { max-width: 760px; }
.lg-phero .lg-body-large { margin-top: 26px; }
.lg-breadcrumb { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--founder-brass); margin-bottom: 22px; }

/* ---------- JOURNEY TIMELINE ---------- */
.lg-timeline { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; margin-top: 64px; position: relative; }
.lg-timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 1px; background: rgba(199,162,103,.35); }
.lg-tl { position: relative; padding-top: 30px; }
.lg-tl::before { content: ""; position: absolute; top: 2px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--founder-brass); }
.lg-tl .yr { font-family: var(--font-mono); font-size: 12px; color: var(--founder-brass); letter-spacing: .1em; }
.lg-tl .lab { font-family: var(--font-display); font-size: 18px; line-height: 1.15; margin-top: 8px; }

/* ---------- BRISTOL QUOTE CARDS ---------- */
.lg-quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.lg-quote { background: var(--executive-ivory); color: var(--ink); padding: 38px 32px; border-top: 3px solid var(--founder-brass); }
.lg-quote p { font-family: var(--font-display); font-size: 22px; line-height: 1.25; margin: 0 0 16px; }
.lg-quote span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--legacy-bronze); }

/* ---------- CONTACT ---------- */
.lg-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; align-items: start; }
.lg-contact .lead { font-family: var(--font-display); font-size: 30px; line-height: 1.2; }
.lg-contact a.email { color: var(--founder-brass); font-size: 22px; text-decoration: none; }
.lg-contact ul { list-style: none; padding: 0; margin: 18px 0 0; }
.lg-contact li { padding: 10px 0; border-bottom: 1px solid rgba(247,244,238,.12); font-size: 15px; color: rgba(247,244,238,.8); }

@media (max-width: 900px) {
  .lg-timeline { grid-template-columns: 1fr 1fr; }
  .lg-quotes { grid-template-columns: 1fr; }
  .lg-contact { grid-template-columns: 1fr; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .lg-nav__links a:not(.lg-nav__cta) { display: none; }
  .lg-hero .lg-content, .lg-split .lg-content { grid-template-columns: 1fr; gap: 40px; }
  .lg-portrait-frame { justify-self: start; width: min(360px, 80vw); }
  .lg-cards, .lg-articles { grid-template-columns: 1fr; }
  .lg-footer .lg-content { grid-template-columns: 1fr; }
  .lg-footer__nav { text-align: left; }
}
