/* content-page.css — page-specific styles for editorial/content pages
   (/about-alexs/, /pick-up-delivery/). Loads AFTER services.css + service-detail.css,
   so hero, trust bar, section scaffolding, feature grid, authority band, schedule,
   FAQ, gallery, detail split, and CTA all come from there. This file adds only the
   new section types: story, timeline, and steps. Tokens/reset/buttons → base.css;
   chrome → header.css / footer.css. */

/* ── Story / founder section ─────────────────────────────────── */
.story-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
}
.story-copy .story-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 1rem;
}
.story-copy p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
}
.story-copy p:last-child { margin-bottom: 0; }
.story-copy strong { color: var(--navy-deep); font-weight: 600; }
.story-figure {
  margin: 0;
}
.story-figure img {
  width: 100%;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
  display: block;
}
.story-figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted-light);
  text-align: center;
  font-style: italic;
}
.story-pullquote {
  max-width: 820px;
  margin: 2.6rem auto 0;
  padding: 1.2rem 0 1.2rem 1.8rem;
  border-left: 4px solid var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--navy-deep);
}
.story-pullquote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Timeline ────────────────────────────────────────────────── */
.timeline-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 0;
}
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.timeline-item {
  position: relative;
  padding: 0 0 1.8rem 2.2rem;
  border-left: 2px solid #d9c9a6;
}
.timeline-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.timeline-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--slate);
}

/* ── Steps (how it works) ────────────────────────────────────── */
.steps-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step-item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.step-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.45rem;
}
.step-item p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
.step-item p a { color: var(--navy); font-weight: 600; }

/* ── Neighborhood link cloud (region landing pages) ──────────── */
.area-links-section {
  background: var(--white);
  padding: var(--section-py) 0;
}
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}
.area-links a {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.area-links a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  text-decoration: none;
}

/* ── Brand directory (brands page) ───────────────────────────── */
.brand-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.brand-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.55rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.brand-group h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}
.brand-group .brand-group-sub {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.brand-chips span,
.brand-chips a {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-dark);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.brand-chips a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  text-decoration: none;
}

/* ── Brand heritage prose (brand landing pages) ──────────────── */
.heritage-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 0;
}
.heritage-prose {
  max-width: 760px;
  margin: 0;
}
.heritage-prose p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 1rem;
}
.heritage-prose p:last-child { margin-bottom: 0; }
.heritage-prose strong { color: var(--navy-deep); font-weight: 600; }
.heritage-prose a { color: var(--navy); font-weight: 600; }

/* ── Region cards (service-areas hub) ────────────────────────── */
.region-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.region-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.region-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.region-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}
.region-card-meta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-accent, #c9a96e);
  margin-bottom: 0.6rem;
}
.region-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}
.region-card-more {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.15s;
}
.region-card:hover .region-card-more { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .story-figure { order: -1; max-width: 480px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-groups { grid-template-columns: 1fr; }
  .region-cards { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .story-pullquote { padding-left: 1.2rem; margin-top: 1.8rem; }
}
