/* ============================================
   KRAFTWORKS — About Page Styles
   ============================================ */

/* ── Hero ───────────────────────────────────── */
.about-hero {
  background: var(--forest-deep);
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 6vw, 6rem) 4rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(79,97,40,.3) 0%, transparent 55%);
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero__text h1 {
  color: var(--off-white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
}
.about-hero__text h1 em { color: var(--gold); font-style: italic; font-weight: 300; }
.about-hero__text p {
  color: rgba(247,243,236,.55);
  max-width: 460px;
  margin: 1.25rem 0 2rem;
}
.about-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.about-hero__visual { display: flex; align-items: center; justify-content: center; }
.about-hero__visual svg { width: 100%; max-width: 320px; animation: rotateSlow 60s linear infinite; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Story ──────────────────────────────────── */
.about-story { background: var(--off-white); }
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-story__left h2 { margin-bottom: 1.25rem; }
.about-story__left h2 em { color: var(--gold); font-style: italic; }
.about-story__left p { font-size: 0.95rem; }

.about-story__quote {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.about-story__quote-mark {
  width: 40px; height: auto;
  margin-bottom: 1.5rem;
}
.about-story__quote blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
}
.about-story__attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-story__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}
.about-story__attribution strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.about-story__attribution span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── USPs ───────────────────────────────────── */
.usps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.usp-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--cream-dark);
  transition: border-color var(--transition), transform var(--transition);
}
.usp-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.usp-card__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.usp-card__icon svg { width: 100%; height: 100%; }
.usp-card h4 { margin-bottom: 0.6rem; }
.usp-card p  { font-size: 0.88rem; }

/* ── Stats Ribbon ───────────────────────────── */
.about-stats {
  background: var(--forest);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 6rem);
}
.about-stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.about-stat { text-align: center; }
.about-stat span {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat p {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,243,236,.45);
}

/* ── Clients Grid ───────────────────────────── */
.about-clients {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.about-client {
  background: var(--off-white);
  padding: 1.75rem 1.5rem;
  transition: background var(--transition);
}
.about-client:hover { background: var(--white); }
.about-client span {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.about-client p { font-size: 0.8rem; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .about-hero__inner  { grid-template-columns: 1fr; }
  .about-hero__visual { display: none; }
  .about-story__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .usps__grid         { grid-template-columns: repeat(2, 1fr); }
  .about-clients      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .usps__grid    { grid-template-columns: 1fr; }
  .about-clients { grid-template-columns: 1fr; }
  .about-stats__inner { gap: 1.5rem; }
}
