/* 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; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
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; }
/* hamburger toggle — hidden on desktop */
.lg-nav__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 20; }
.lg-nav__toggle span { display: block; width: 24px; height: 2px; background: var(--executive-ivory); transition: transform .2s, opacity .2s; }
.lg-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lg-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lg-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .lg-nav__toggle { display: flex; }
  .lg-nav__links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--founder-navy); padding: 100px 40px 40px; gap: 28px; z-index: 15; }
  .lg-nav.is-open .lg-nav__links { display: flex; }
  .lg-nav__links a { font-size: 18px; }
  .lg-nav__cta { width: fit-content; }
}

/* ---------- 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 - 128px)); 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(340px, 32vw); 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--featured { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 24px; padding: 48px; }
.lg-article__pull { border-left: 1px solid rgba(247,244,238,.12); padding-left: 40px; font-family: var(--font-display); font-style: italic; font-size: 22px; color: rgba(247,244,238,.65); line-height: 1.35; }
.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); }

/* ---------- OPEN LETTER ---------- */
.lg-section.lg-letter { background: var(--executive-ivory); color: var(--ink); }
.lg-letter-card {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFEF9;
  border: 1px solid rgba(199,162,103,.25);
  box-shadow: 0 4px 32px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  padding: 56px 64px 64px;
  position: relative;
}
.lg-letter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--founder-brass), var(--highlight-gold), var(--founder-brass));
}
.lg-letter-head { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
.lg-letter-logo { height: 52px; margin-bottom: 16px; }
.lg-letter-rule { width: 100%; height: 1px; background: rgba(199,162,103,.35); }
.lg-letter-body p {
  font-family: 'Caveat', 'Kalam', Georgia, cursive;
  font-size: 20px;
  line-height: 1.7;
  color: #2A2418;
  margin: 0 0 18px;
}
.lg-letter-salutation { font-size: 22px !important; font-weight: 600; color: var(--founder-navy) !important; }
.lg-letter-closing { margin-top: 32px !important; color: #2A2418 !important; }
.lg-letter-seal { width: 52px; margin: 20px 0 8px; opacity: 0.6; }
.lg-letter-sig {
  font-family: 'Caveat', Georgia, cursive !important;
  font-size: 28px !important;
  font-weight: 700;
  color: var(--founder-navy) !important;
  margin: 0 0 4px !important;
}
.lg-letter-title {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--legacy-bronze) !important;
  margin: 0 !important;
}

/* ---------- 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(300px, 66vw); }
  .lg-cards, .lg-articles { grid-template-columns: 1fr; }
  .lg-article--featured { grid-template-columns: 1fr; gap: 24px; padding: 40px 32px; }
  .lg-article__pull { border-left: 0; border-top: 1px solid rgba(247,244,238,.12); padding-left: 0; padding-top: 24px; }
  .lg-footer .lg-content { grid-template-columns: 1fr; }
  .lg-footer__nav { text-align: left; }
}

/* ---------- PHONE (<=600px) ---------- */
@media (max-width: 600px) {
  /* content gutter — comfortable breathing room from screen edges */
  .lg-content { width: calc(100vw - 56px); }

  /* hero no longer forced to a full desktop screen height */
  .lg-hero { min-height: auto; padding: 132px 0 72px; }
  .lg-hero .lg-content { gap: 32px; }
  .lg-phero { min-height: auto; padding: 116px 0 56px; }

  /* display type scaled down so it reads well and never overflows */
  .lg-h1 { font-size: clamp(34px, 10vw, 46px); }
  .lg-h2 { font-size: clamp(28px, 8vw, 38px); }
  .lg-body-large { font-size: 18px; }
  .lg-founder .quote { font-size: clamp(24px, 7vw, 32px); }

  /* portrait sits under the copy — smaller, centered, tasteful */
  .lg-portrait-frame { justify-self: center; width: 100%; max-width: 320px; }

  /* section padding trimmed for phones */
  .lg-pad { padding: 72px 0; }

  /* open letter: was 64px side padding inside a ~320px column */
  .lg-letter-card { padding: 36px 24px 44px; }
  .lg-letter-body p { font-size: 18px; }

  /* CTA buttons go full width, easy tap targets */
  .lg-cta-row { flex-direction: column; align-items: stretch; }
  .lg-cta-row .lg-btn { justify-content: center; }

  /* single-column grids on phones */
  .lg-timeline { grid-template-columns: 1fr; }
  .lg-contact { grid-template-columns: 1fr; }

  /* contact email can be long — keep it inside the viewport */
  .lg-contact a.email { font-size: 19px; word-break: break-word; }

  /* nav CTA slightly smaller so the logo + button fit one row */
  .lg-nav { padding: 20px clamp(16px, 5vw, 24px); gap: 10px; }
  .lg-nav__cta { padding: 10px 16px; }
  /* wordmark is 520x52 (renders 340px wide) — shrink so logo + CTA fit one row and don't overflow */
  .lg-nav__logo { height: 22px; max-width: 62vw; width: auto; }
}

/* global horizontal-overflow guard (belt & suspenders) */
html, body { overflow-x: hidden; }

/* ---------- MOBILE HAMBURGER NAV (Linda GO 2026-07-01) ---------- */
/* desktop: no hamburger */
.lg-nav__toggle { display: none; }

@media (max-width: 900px) {
  .lg-nav { flex-wrap: wrap; }

  /* hamburger button — brass outline, 44px tap target */
  .lg-nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 11px; margin: 0; box-sizing: border-box;
    background: transparent; border: 1px solid rgba(199,161,90,.55); border-radius: 6px;
    cursor: pointer;
  }
  .lg-nav__toggle span { display: block; width: 100%; height: 2px; background: var(--founder-brass); transition: transform .2s ease, opacity .2s ease; }
  .lg-nav.is-open .lg-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .lg-nav.is-open .lg-nav__toggle span:nth-child(2) { opacity: 0; }
  .lg-nav.is-open .lg-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* nav links collapse into a dropdown panel, hidden until opened */
  .lg-nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--founder-navy); border-top: 1px solid rgba(247,244,238,.14);
    box-shadow: 0 18px 40px rgba(0,0,0,.42);
    padding: 6px clamp(16px,5vw,24px) 20px; box-sizing: border-box;
  }
  .lg-nav.is-open .lg-nav__links { display: flex; }

  /* override desktop-hide so EVERY link shows inside the open panel */
  .lg-nav.is-open .lg-nav__links a { display: block; opacity: 1; font-size: 15px; letter-spacing: .1em; padding: 15px 2px; border-bottom: 1px solid rgba(247,244,238,.08); }
  .lg-nav.is-open .lg-nav__links a.lg-nav__cta { border-bottom: 0; margin-top: 12px; text-align: center; padding: 14px 20px; }
}
