/* ── ABOUT PAGE ── */

.about-hero {
  background: var(--steel-blue);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    linear-gradient(rgba(214,224,240,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,224,240,0.03) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.about-hero .container { position: relative; }

.story-section { background: var(--white); }

.story-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.story-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.story-logo-block {
  background: var(--steel-blue);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.story-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin: 0 auto 1rem;
}

.story-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.story-tagline-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--light-steel-blue);
  line-height: 1.6;
}

.story-stat-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-stat {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gold);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--steel-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.story-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--steel-blue);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.story-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.story-block p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-block p:last-of-type { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.value-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.value-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--steel-blue);
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}

.value-item p {
  font-size: 0.875rem !important;
  color: var(--text-mid);
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.story-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }
  .story-logo-block { margin-bottom: 0; }
}

@media (max-width: 600px) {
  .story-sidebar { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .story-cta-row .btn { width: 100%; justify-content: center; }
}
