/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

.page-hero { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); }
.page-hero h1 { max-width: 880px; margin-top: 18px; }
.page-hero .lead { margin-top: 24px; max-width: 620px; }

/* Story split */
.story { padding: clamp(48px, 6vw, 80px) 0; border-top: 1px solid var(--line); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(135deg, #E5E7EE 0 2px, transparent 2px 18px),
    var(--cream-2);
  border: 1px solid var(--line);
  position: relative;
  display: flex; align-items: flex-end; padding: 20px;
}
.story-img .tag {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
}
.story-img-real {
  aspect-ratio: 5 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.story-img-real img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Values */
.values { background: var(--paper); padding: clamp(56px, 7vw, 96px) 0; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.value {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--cream);
}
.value .num { font-family: var(--font-mono); font-size: 12px; color: var(--magenta); }
.value h3 { margin-top: 12px; font-size: 20px; }
.value p { margin-top: 12px; font-size: 14.5px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

/* Location */
.location {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--ink-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.location::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(circle, rgba(229,40,141,.18), transparent 65%);
  filter: blur(60px);
}
.location .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.location h2 { color: var(--paper); }
.location p { color: var(--slate-300); }
.location .addr { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.location .addr .row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.location .addr .row span:first-child {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-400); font-weight: 500;
}
.location .addr .row span:last-child { font-size: 16px; color: var(--paper); font-weight: 500; }
.map-ph {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  background: var(--ink-800);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 40px 40px;
}
.map-ph .pin {
  width: 18px; height: 18px;
  background: var(--magenta);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 8px rgba(229,40,141,.2), 0 0 0 18px rgba(229,40,141,.08);
}
.map-ph .label {
  position: absolute;
  margin-top: 60px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.6);
}
@media (max-width: 900px) { .location .grid { grid-template-columns: 1fr; } }

/* Bottom CTA */
.bottom-cta { padding: clamp(56px, 7vw, 80px) 0; text-align: center; }
.bottom-cta h2 { max-width: 640px; margin: 0 auto; }
.bottom-cta p { margin: 18px auto 32px; max-width: 480px; }
.bottom-cta .btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
