/* =============================================
   LOST LINEAGE RESEARCH SERVICES
   Color Palette (from logo):
   --forest:   #2C4A2E  (deep dark green)
   --leaf:     #4A6741  (mid green)
   --bark:     #7A5C3E  (warm brown)
   --tan:      #B8965A  (gold/tan)
   --parchment:#F5F0E8  (warm cream bg)
   --linen:    #EDE5D8  (slightly deeper cream)
   --ink:      #2A2520  (near-black for text)
   ============================================= */

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

:root {
  --forest:    #2C4A2E;
  --leaf:      #4A6741;
  --bark:      #7A5C3E;
  --tan:       #B8965A;
  --parchment: #F5F0E8;
  --linen:     #EDE5D8;
  --ink:       #2A2520;
  --ink-light: #5C504A;
  --white:     #FDFAF5;
  --radius:    4px;
  --shadow:    0 2px 16px rgba(42,37,32,0.10);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: var(--forest);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 600; margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bark); margin-bottom: 0.5em; }

p { margin-bottom: 1em; color: var(--ink-light); }
em, i { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

a { color: var(--leaf); text-decoration: none; }
a:hover { color: var(--forest); }

ul { list-style: none; }
ol { padding-left: 1.4em; }
ol li { margin-bottom: 0.6em; }

/* =============================================
   LAYOUT
   ============================================= */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* =============================================
   NAV
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--linen);
  box-shadow: 0 1px 8px rgba(42,37,32,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img { height: 52px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }

.nav-links .nav-cta {
  background: var(--forest);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--leaf); color: var(--white); }

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

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: var(--white) !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--leaf); transform: translateY(-1px); }
.btn-primary.btn-large { font-size: 0.9rem; padding: 1rem 2.4rem; }
.btn-primary.btn-sm { font-size: 0.78rem; padding: 0.6rem 1.2rem; }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--forest) !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid var(--forest);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--forest); color: var(--white) !important; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--forest) !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--forest);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--forest); color: var(--white) !important; }
.btn-outline.btn-sm { font-size: 0.78rem; padding: 0.5rem 1.1rem; }

.link-arrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tan);
}
.link-arrow:hover { color: var(--bark); }

/* =============================================
   HERO
   ============================================= */

.hero {
  background: var(--parchment);
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text { flex: 1 1 55%; }

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.8rem;
}

.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { color: var(--bark); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero-badges span {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--leaf);
  background: rgba(74,103,65,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-left: 3px solid var(--tan);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.hero-card--offset { margin-left: 1.5rem; }

.card-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.6rem;
}

.card-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.card-meta {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--ink-light);
}

/* =============================================
   WHAT I DO
   ============================================= */

.what-i-do { background: var(--white); }

.what-i-do h2 { text-align: center; margin-bottom: 2.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-tile {
  background: var(--parchment);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.tile-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.service-tile h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--forest); }
.service-tile p { font-size: 0.95rem; color: var(--ink-light); margin: 0; }

/* =============================================
   PROCESS STRIP
   ============================================= */

.process-strip {
  background: var(--forest);
  color: var(--white);
  padding: 4rem 0;
}
.process-strip h2 { color: var(--white); text-align: center; margin-bottom: 2.5rem; }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--tan);
  margin-bottom: 0.4rem;
}
.step h4 { color: var(--white); letter-spacing: 0.05em; font-size: 0.8rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0; }

.step-arrow {
  font-size: 1.4rem;
  color: var(--tan);
  padding-top: 2.2rem;
  flex: 0 0 auto;
}

/* =============================================
   PRICING SNAP
   ============================================= */

.pricing-snap { background: var(--parchment); }
.pricing-snap h2 { text-align: center; }
.section-sub { text-align: center; color: var(--ink-light); margin-bottom: 2.5rem; font-size: 1rem; }

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-card--featured {
  background: var(--forest);
  border-color: var(--forest);
}
.price-card--featured * { color: var(--white) !important; }
.price-card--featured .price-label { color: var(--tan) !important; }
.price-card--featured ul li::before { color: var(--tan) !important; }

.price-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
}
.price-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
}
.price-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.price-card ul { margin-bottom: 1rem; flex: 1; }
.price-card ul li {
  font-size: 0.88rem;
  color: var(--ink-light);
  padding: 0.2rem 0 0.2rem 1.1rem;
  position: relative;
}
.price-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-size: 1.2rem;
  line-height: 1.1;
}

.pricing-note {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-light);
  margin: 0;
}
.pricing-note a { color: var(--tan); text-decoration: underline; }

/* =============================================
   STORIES PREVIEW
   ============================================= */

.stories-preview { background: var(--white); }

.stories-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.story-card {
  background: var(--parchment);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
}

.story-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.6rem;
}
.story-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.story-card p { font-size: 0.92rem; margin-bottom: 1rem; }
.story-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tan);
}
.story-link:hover { color: var(--bark); }

/* =============================================
   CONSULTATION CTA
   ============================================= */

.consult-cta {
  background: var(--linen);
  padding: 5rem 0;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-leaf { font-size: 2rem; margin-bottom: 1rem; }
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { font-size: 1.05rem; margin-bottom: 0.8rem; }
.cta-note {
  font-style: italic;
  color: var(--ink-light);
  font-size: 0.95rem;
  margin-bottom: 1.8rem !important;
}
.cta-inner .btn-primary { margin-top: 0.5rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  background: var(--parchment);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--linen);
}
.page-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.6rem;
}
.page-sub { font-size: 1.05rem; max-width: 640px; margin-top: 0.8rem; }

/* =============================================
   SERVICES DETAIL
   ============================================= */

.services-detail { background: var(--white); }
.services-detail .container { display: flex; flex-direction: column; gap: 0; }

.service-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--linen);
}
.service-block--alt { background: var(--parchment); padding: 3.5rem 1.5rem; margin: 0 -1.5rem; }

.service-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.svc-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 0.4rem;
}
.svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--bark);
  margin-top: 0.3rem;
}
.svc-icon-lg { font-size: 3rem; }

.service-block-body p { max-width: 680px; font-size: 1rem; }
.svc-includes { margin: 1.5rem 0; }
.svc-includes ul li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-light);
}
.svc-includes ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 700;
  font-size: 0.85rem;
}
.svc-note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 1.2rem !important;
}

/* FULL PRICING TABLE */
.full-pricing { background: var(--parchment); }
.full-pricing h2 { margin-bottom: 1.5rem; }

.pricing-table { border: 1px solid var(--linen); border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.pt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--linen);
  font-size: 0.95rem;
}
.pt-row:last-child { border-bottom: none; }
.pt-header {
  background: var(--forest);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pt-row:nth-child(even):not(.pt-header) { background: var(--white); }
.pt-highlight {
  background: rgba(74,103,65,0.08) !important;
  font-weight: 600;
  color: var(--leaf) !important;
}
.pt-row div:last-child {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bark);
  white-space: nowrap;
  padding-left: 1.5rem;
}
.pt-header div:last-child { color: var(--white); }
.pt-highlight div:last-child { color: var(--leaf); }

/* =============================================
   PORTFOLIO
   ============================================= */

.portfolio-section { background: var(--white); }
.portfolio-section--alt { background: var(--parchment); }
.portfolio-section-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.5rem;
}

.report-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portfolio-section--alt .report-card { background: var(--white); }

.report-header {
  background: var(--forest);
  padding: 1.8rem 2rem;
  color: var(--white);
}
.report-type {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  display: block;
  margin-bottom: 0.5rem;
}
.report-header h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.3rem; }
.report-scope {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.report-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}
.report-body--timeline { display: block; padding: 2rem; }
.report-col h4 { margin-bottom: 0.8rem; }
.report-col p { font-size: 0.95rem; }

.record-list { margin: 0.5rem 0 1.2rem; }
.record-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--ink-light);
  border-bottom: 1px solid var(--linen);
}
.rec-icon { font-size: 1rem; flex-shrink: 0; }

/* Tree diagram */
.tree-diagram { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
.tree-gen { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tree-connector { font-size: 1.4rem; color: var(--tan); padding-left: 0.5rem; }
.tree-person {
  background: var(--parchment);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
}
.tree-person strong { color: var(--forest); font-size: 0.9rem; }
.tree-person span { color: var(--ink-light); }
.tree-person--ancestor { border-left: 3px solid var(--tan); }
.tree-person--mid { border-left: 3px solid var(--bark); }
.tree-person--client { border-left: 3px solid var(--leaf); }

/* Document mockup */
.doc-mockup {
  background: #fefefe;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  overflow: hidden;
}
.doc-mockup-header {
  background: #2A2520;
  color: #fff;
  padding: 1rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.doc-mockup-body { padding: 1rem 1.2rem; }
.doc-field {
  display: flex;
  gap: 0.8rem;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid #eee;
  color: var(--ink-light);
}
.doc-field span { font-weight: 600; color: var(--ink); min-width: 100px; flex-shrink: 0; }
.doc-field--note { font-style: italic; color: var(--bark); border-bottom: none; }
.doc-mockup-footer {
  background: var(--linen);
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  color: var(--ink-light);
  letter-spacing: 0.03em;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--linen);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tan);
  flex: 0 0 60px;
  padding-top: 0.1rem;
}
.tl-content strong { color: var(--forest); font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; display: block; margin-bottom: 0.3rem; }
.tl-content p { font-size: 0.92rem; margin: 0; }

.report-footer {
  background: var(--parchment);
  border-top: 1px solid var(--linen);
  padding: 1.2rem 2rem;
}
.report-result {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.7;
}
.report-result strong { color: var(--forest); }

/* =============================================
   STORIES FULL PAGE
   ============================================= */

.stories-full { background: var(--white); padding: 4rem 0; }
.stories-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }

.stories-main { display: flex; flex-direction: column; gap: 0; }

.story-full { padding: 2.5rem 0; }
.sf-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.5rem;
  display: block;
}
.story-full h2 { margin-bottom: 0.3rem; }
.sf-date { font-family: 'Jost', sans-serif; font-size: 0.78rem; color: var(--ink-light); margin-bottom: 1.2rem; }
.story-full p { font-size: 1rem; }

.sf-quote {
  border-left: 3px solid var(--tan);
  padding: 0.8rem 1.2rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
  background: var(--parchment);
}

.sf-tip {
  background: rgba(74,103,65,0.07);
  border-left: 3px solid var(--leaf);
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--ink-light);
}
.sf-tip strong { color: var(--leaf); }

.sf-list { padding-left: 1.4em; }
.sf-list li { margin-bottom: 0.8rem; font-size: 0.97rem; }

.story-divider { height: 1px; background: var(--linen); margin: 0.5rem 0; }

/* SIDEBAR */
.stories-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--parchment);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.sidebar-widget h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.sidebar-widget--cta { background: var(--forest); border-color: var(--forest); }
.sidebar-widget--cta h3, .sidebar-widget--cta p { color: var(--white); }

.tag-list li { padding: 0.3rem 0; border-bottom: 1px solid var(--linen); }
.tag-list li:last-child { border-bottom: none; }
.tag-list a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-light);
}
.tag-list a:hover { color: var(--forest); }

.resource-list li { padding: 0.35rem 0; border-bottom: 1px solid var(--linen); }
.resource-list li:last-child { border-bottom: none; }
.resource-list a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: var(--leaf);
}
.resource-list a:hover { color: var(--forest); }

/* =============================================
   CONTACT
   ============================================= */

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-info h2 { margin-bottom: 1.5rem; }
.expect-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.expect-item { display: flex; gap: 1rem; align-items: flex-start; }
.expect-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.expect-item strong { display: block; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--forest); letter-spacing: 0.02em; margin-bottom: 0.2rem; }
.expect-item p { font-size: 0.9rem; margin: 0; }

.contact-reassurance h3 { margin-bottom: 0.8rem; }
.contact-reassurance p { font-size: 0.97rem; }

.contact-form-card {
  background: var(--parchment);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 0.4rem; }
.form-sub { font-size: 0.9rem; color: var(--ink-light); margin-bottom: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.field-group label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.field-group input,
.field-group select,
.field-group textarea {
  font-family: 'EB Garamond', serif;
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--leaf); }
.field-group textarea { resize: vertical; }
.field-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%234A6741'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; }

.form-privacy {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--ink-light);
  text-align: center;
  margin: 0;
}

.form-success { text-align: center; padding: 2rem 0; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.8rem; }
.form-success p { font-size: 0.97rem; }
.form-success a { color: var(--tan); text-decoration: underline; }

/* FAQ */
.faq-section { background: var(--parchment); }
.faq-section h2 { margin-bottom: 2rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.faq-item h4 { color: var(--forest); font-family: 'EB Garamond', serif; text-transform: none; letter-spacing: 0; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.93rem; }

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 60px; width: auto; margin-bottom: 0.8rem; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.55); margin: 0; }

.footer-links h4, .footer-contact h4 { color: rgba(255,255,255,0.9); font-size: 0.72rem; }
.footer-links ul li { padding: 0.25rem 0; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--tan); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 1rem; color: rgba(255,255,255,0.6); }

.footer-base {
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.footer-base p {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .hero { flex-direction: column; gap: 2.5rem; padding: 3.5rem 1.5rem; }
  .hero-visual { flex: 0 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
  .report-body { grid-template-columns: 1fr; }
  .stories-layout { grid-template-columns: 1fr; }
  .stories-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { gap: 1rem; }
  .step-arrow { display: none; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--linen);
    padding: 1rem 1.5rem;
    gap: 1rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-card--offset { margin-left: 0; }
  section { padding: 3rem 0; }
}
