/* ── About Page ────────────────────────────────────────── */

.about-hero {
  background: var(--navy); padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,97,10,.15) 0%, transparent 55%);
  pointer-events: none;
}
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}
.about-full-logo {
  max-width: 440px; width: 100%;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.4));
}

/* ── Story ─────────────────────────────────────────────── */
.about-story { padding: 5rem 0; background: var(--parchment); }
.story-block p { font-size: 1.03rem; line-height: 1.85; color: var(--ink-soft); }

.story-sep {
  text-align: center; padding: 2.5rem 0; position: relative;
}
.story-sep::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.story-sep span {
  position: relative; background: var(--parchment); padding: 0 1rem;
  font-size: 1.1rem; color: var(--orange);
}

.author-card {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.75rem;
}
.author-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  color: #fff; font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-navy);
}
.author-card p { font-size: .97rem; color: var(--ink-soft); line-height: 1.8; }

/* ── Beliefs ───────────────────────────────────────────── */
.beliefs-section { background: var(--parchment-2); padding: 5rem 0; }
.section-head { margin-bottom: 3rem; }

.beliefs-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.belief-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.belief-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.belief-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.belief-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .65rem; line-height: 1.4; font-style: italic; }
.belief-body  { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ── Tech ──────────────────────────────────────────────── */
.tech-section { padding: 5rem 0; background: var(--white); }
.tech-list { margin-top: 2.5rem; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.tech-item {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 1.75rem; border-bottom: 1px solid var(--border);
  background: var(--white); transition: background .15s;
}
.tech-item:last-child { border-bottom: none; }
.tech-item:hover { background: var(--parchment); }
.tech-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1.3; }
.tech-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.tech-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── CTA ───────────────────────────────────────────────── */
.about-cta-section { background: var(--navy); padding: 5rem 0; position: relative; overflow: hidden; }
.about-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,97,10,.18) 0%, transparent 65%);
  pointer-events: none;
}
.about-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
.cta-icon-sm { width: 60px; height: 60px; filter: drop-shadow(0 4px 12px rgba(232,97,10,.5)); }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-logo  { display: flex; justify-content: center; }
  .about-full-logo  { max-width: 320px; }
  .beliefs-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .author-card { flex-direction: column; }
}
