/* About page — page-specific styles. All colors sourced from theme.css variables. */

.about-page {
  background: var(--bg);
  min-height: 100vh;
}

/* --- Hero --- */
.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.about-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--fg);
  margin-top: 24px;
}

.about-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 760px;
  margin: 24px auto 40px;
  line-height: 1.7;
}

/* --- Story --- */
.about-story {
  padding: 80px 48px;
  background: var(--bg2);
  position: relative;
}
.about-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.2;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.about-card:hover { border-color: rgba(245,158,11,0.3); }
.about-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.about-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.about-card-link {
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
.about-card-link:hover { text-decoration: underline; }

/* --- Team --- */
.about-team-section {
  padding: 100px 48px;
}
.about-team {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-team-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  color: var(--fg);
  font-style: italic;
  margin: 12px auto 24px;
}
.about-team-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.about-team-body a {
  color: var(--accent);
  text-decoration: none;
}
.about-team-body a:hover { text-decoration: underline; }

/* --- Address / KvK --- */
.about-company-section {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}
.about-company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.about-company-block h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}
.about-company-block p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}
.about-company-block a {
  color: var(--accent);
  text-decoration: none;
}
.about-company-block a:hover { text-decoration: underline; }

/* --- Footer CTA --- */
.about-cta-section {
  padding: 80px 48px 100px;
  text-align: center;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #0a0e1a;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.about-cta:hover { opacity: 0.9; }

/* --- Mobile --- */
@media (max-width: 768px) {
  .about-hero { padding: 60px 24px; }
  .about-story { padding: 60px 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-team-section { padding: 60px 24px; }
  .about-company-section { padding: 40px 24px; }
  .about-company { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .about-cta-section { padding: 60px 24px 80px; }
}
