/* ==========================================================================
   Cloud 476 – pages.css
   Delade komponenter för inre sidor (Om Pia, Konsulting, Kontakt, Podcast).
   Förutsätter base.css. Laddas på alla is_page().
   ========================================================================== */

/* ── PAGE HERO (navy header-band) ── */
.page-hero {
  background: var(--navy);
  padding: 80px 52px 72px;
}
.page-hero-inner { max-width: 760px; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.page-eyebrow-line { width: 28px; height: 2px; background: var(--rose); border-radius: 2px; }
.page-eyebrow span {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rose);
}
.page-hero h1 {
  font-size: 48px; font-weight: 800; line-height: 1.05;
  letter-spacing: -.025em; color: #fff; margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--lilac); }
.page-lead { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 580px; }

/* ── SEKTIONER ── */
.page-section { padding: 72px 52px; background: var(--cream); }
.page-section.alt { background: var(--cream2); }
.page-section.tight { padding: 56px 52px; }
.page-wrap { max-width: 1100px; margin: 0 auto; }

/* ── SPLIT (bild + text), t.ex. Om Pia ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.split-content { padding: 72px 52px; display: flex; flex-direction: column; justify-content: center; }
.split-content.cream { background: var(--cream2); }
.split-content h2 {
  font-size: 30px; font-weight: 800; color: var(--navy);
  letter-spacing: -.015em; line-height: 1.15; margin-bottom: 18px;
}
.split-content h2 em { font-style: normal; color: var(--rose); }

/* ── PROSE (läsbar text) ── */
.prose { max-width: 640px; }
.prose p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.prose p strong { color: var(--navy); }
.prose .lead-p { font-size: 18px; line-height: 1.7; color: var(--navy); font-weight: 500; }

/* ── FAKTA-RAD (siffror/meriter) ── */
.fact-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; }
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); }
.fact-lbl { font-size: 12px; color: var(--muted); max-width: 160px; }

/* ── KONTAKT ── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.contact-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; display: flex; flex-direction: column; gap: 10px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--cream2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.contact-card strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; color: var(--navy); }
.contact-card span { font-size: 13px; color: var(--muted); }
.contact-card .cc-value { font-size: 14px; color: var(--rose); font-weight: 700; }

/* ── PODCAST FEATURE ── */
.pod-feature {
  background: var(--navy); border-radius: 20px; padding: 44px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.pod-photo { width: 120px; height: 120px; border-radius: 18px; overflow: hidden; border: 2px solid var(--rose); flex-shrink: 0; }
.pod-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.pod-feature h2 { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.pod-feature p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; margin-bottom: 20px; max-width: 540px; }

/* ── CTA-BAND ── */
.cta-band {
  background: var(--plum); padding: 64px 52px; text-align: center;
}
.cta-band h2 { color: #fff; font-size: 32px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }

/* ── RESPONSIVT ── */
@media (max-width: 980px) {
  .page-hero { padding: 56px 24px 48px; }
  .page-hero h1 { font-size: 34px; }
  .page-section, .page-section.tight { padding: 48px 24px; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 360px; }
  .split-content { padding: 48px 24px; }
  .pod-feature { grid-template-columns: 1fr; padding: 32px; text-align: center; }
  .pod-photo { margin: 0 auto; }
  .cta-band { padding: 48px 24px; }
}
