/* ============================================================================
   ABOUT — page styles.
   Base block (reset + shared header) is the same one every exported page
   carries; everything under "ABOUT" is written for this page.
   ============================================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--surface-page); }
body { font-family: var(--font-body); }
a { color: var(--text-accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* Shared site header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-subtle); }
.site-header .bar { max-width: 1160px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-header .logo { display: flex; align-items: center; gap: 10px; }
.site-header .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--text-primary); }
.site-header .nav-desktop { display: flex; align-items: center; gap: 28px; }
.site-header .nav-desktop a { font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: var(--text-secondary); transition: color 0.2s ease; }
.site-header .nav-desktop a:hover { color: var(--blue-600); }
.site-header .nav-burger { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--border-subtle); background: var(--white); border-radius: 10px; cursor: pointer; color: var(--text-primary); }
@media (max-width: 720px) { .site-header .nav-desktop { display: none !important; } .site-header .nav-burger { display: inline-flex !important; } }

/* ============================================================================
   ABOUT
   ============================================================================ */
.about-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ---- Hero: copy left, portrait right ------------------------------------ */
.about-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding: 64px 0 20px; }
.about-hero.is-solo { grid-template-columns: 1fr; max-width: 760px; text-align: center; }
.about-hero.is-solo .about-hero-cta { justify-content: center; }
.about-hero h1 { margin: 0 0 18px; color: var(--text-primary); }
.about-hero .lede { color: var(--text-secondary); margin: 0 0 28px; }
.about-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* The portrait sits on its own flat colour, so it is framed rather than
   blended: a soft blue field behind it keeps it in the palette. */
.about-portrait { position: relative; }
.about-portrait-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--surface-alt); }
.about-portrait-frame img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.about-portrait::after { content: ""; position: absolute; inset: auto -18px -18px auto; width: 62%; height: 62%; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--blue-600), var(--blue-300)); opacity: 0.14; z-index: -1; }
.about-portrait-tag { position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-full); background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); box-shadow: var(--shadow-sm); font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--text-primary); }
.about-portrait-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

/* ---- Stat bar (same treatment as Home) ---------------------------------- */
.about-stats { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); padding: 40px 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 44px 0 8px; }
.about-stats > div { text-align: center; border-left: 1px solid var(--border-subtle); }
.about-stats > div:first-child { border-left: 0; }
.about-stat-num { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: var(--tracking-tight); color: var(--text-primary); line-height: 1; }

/* ---- Section scaffolding ------------------------------------------------ */
.about-section { padding: 64px 0; }
.about-section-head { max-width: 720px; margin: 0 0 36px; }
.about-section-head .text-eyebrow { color: var(--text-accent); margin-bottom: 12px; }
.about-section-head h2 { color: var(--text-primary); margin: 0 0 14px; }
.about-section-head p { color: var(--text-secondary); margin: 0; }

/* ---- Story: two columns of prose ---------------------------------------- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-story p { color: var(--text-secondary); margin: 0 0 18px; }
.about-story p:last-child { margin-bottom: 0; }
.about-story strong { color: var(--text-primary); font-weight: var(--weight-semibold); }

/* ---- Principles --------------------------------------------------------- */
.about-principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-principle { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-xs); transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out); }
.about-principle:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-principle .num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--radius-full); background: var(--accent-soft); border: 1px solid var(--accent-soft-border); color: var(--text-accent); font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.about-principle h3 { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: 19px; letter-spacing: var(--tracking-tight); color: var(--text-primary); margin: 0 0 8px; }
.about-principle p { color: var(--text-secondary); margin: 0; }

/* ---- Client rows -------------------------------------------------------- */
.about-clients { display: flex; flex-direction: column; gap: 0; background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); overflow: hidden; }
.about-client { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 22px 28px; border-top: 1px solid var(--border-subtle); }
.about-client:first-child { border-top: 0; }
.about-client-who { display: flex; align-items: center; gap: 14px; }
.about-client-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink-100) center/cover; flex: none; }
.about-client-name { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: 16.5px; color: var(--text-primary); }
.about-client-role { color: var(--text-secondary); margin-top: 2px; }
.about-client-result { text-align: right; }
.about-client-num { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: var(--tracking-tight); color: var(--text-accent); line-height: 1.1; }
.about-client-label { color: var(--text-secondary); margin-top: 4px; max-width: 260px; }

/* ---- Closing CTA -------------------------------------------------------- */
.about-cta { background: var(--surface-dark); border-radius: var(--radius-xl); padding: 56px 40px; text-align: center; margin-bottom: 72px; }
.about-cta h2 { color: var(--white); margin: 0 auto 12px; max-width: 620px; }
.about-cta p { color: rgba(255,255,255,0.66); margin: 0 auto 28px; max-width: 560px; }
.about-cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.about-cta .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.28); box-shadow: none; }
.about-cta .btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 940px) {
  .about-hero { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 420px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .about-stats > div:nth-child(odd) { border-left: 0; }
  .about-story { grid-template-columns: 1fr; gap: 0; }
  .about-principles { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .about-wrap { padding: 0 20px; }
  .about-section { padding: 48px 0; }
  .about-stats { padding: 32px 20px; }
  .about-stat-num { font-size: 34px; }
  .about-client { grid-template-columns: 1fr; gap: 14px; }
  .about-client-result { text-align: left; }
  .about-cta { padding: 44px 24px; }
}