/* ==========================================================================
   About — Creative Scope
   Bespoke About page styles. Prefix: .ab-
   Uses design tokens from styles.css (--bg, --fg, --accent, --border, --font-*).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.ab-hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ab-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ab-hero-crumb a {
  color: var(--fg-muted);
  text-decoration: none;
}
.ab-hero-crumb a:hover { color: var(--fg); }
.ab-hero-crumb .crumb-sep { margin: 0 8px; color: var(--fg-muted); }

.ab-hero-head {
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 32px;
  max-width: 16ch;
}
.ab-hero-lede {
  max-width: 62ch;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0 0 40px;
}
.ab-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.ab-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  list-style: none;
  padding: 0;
  margin: 0;
}
.ab-hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background: var(--bg);
  font-size: 12px;
}
.ab-meta-k {
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}
.ab-meta-v { color: var(--fg); font-size: 14px; }

@media (max-width: 820px) {
  .ab-hero-meta { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   Story
   -------------------------------------------------------------------------- */
.ab-story {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}
.ab-story-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.ab-story-side {
  position: sticky;
  top: 100px;
}
.ab-story-h2 {
  margin: 16px 0 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ab-story-year { color: var(--fg-muted); font-size: 12px; }

.ab-story-body p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0 0 20px;
  max-width: 62ch;
}
.ab-story-body p:last-child { margin-bottom: 0; }

.ab-story-quote {
  margin: 32px 0;
  padding: 28px 28px 24px;
  border-left: 2px solid var(--accent);
  background: var(--bg-2);
  border-radius: 0 4px 4px 0;
}
.ab-story-quote p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--fg);
  margin: 0 0 12px;
  max-width: none;
}
.ab-story-quote footer {
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .ab-story-inner { grid-template-columns: 1fr; }
  .ab-story-side { position: static; }
}

/* --------------------------------------------------------------------------
   Values
   -------------------------------------------------------------------------- */
.ab-values {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}
.ab-values-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.ab-values-h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.ab-values-lede {
  color: var(--fg-soft);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  margin: 0;
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ab-value-card {
  padding: 32px 28px 36px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}
.ab-value-card:hover { background: var(--bg-2); }
.ab-value-n {
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.ab-value-t {
  font-size: 20px;
  font-weight: 500;
  margin: 4px 0 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.ab-value-b {
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 980px) {
  .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .ab-values-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Team teaser block
   -------------------------------------------------------------------------- */
.ab-team-teaser {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}
.ab-team-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
  min-height: clamp(420px, 50vw, 580px);
}
.ab-team-teaser-fig {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  min-height: inherit;
}
.ab-team-teaser-fig img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0;
}
.ab-team-teaser-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.18) 70%, rgba(0,0,0,0) 100%);
}
.ab-team-teaser-copy {
  align-self: center;
  display: flex; flex-direction: column;
  gap: 22px;
  padding: clamp(16px, 3vw, 40px) 0;
}
.ab-team-teaser-h2 { margin: 12px 0 0; }
.ab-team-teaser-lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 52ch;
  margin: 0 0 8px;
}
@media (max-width: 900px) {
  .ab-team-teaser-grid { grid-template-columns: 1fr; min-height: 0; }
  .ab-team-teaser-fig { aspect-ratio: 4 / 3; }
  .ab-team-teaser-shade { background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%); }
}

/* --------------------------------------------------------------------------
   Team (legacy — kept for backwards compat)
   -------------------------------------------------------------------------- */
.ab-team {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}
.ab-team-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.ab-team-h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.ab-team-lede {
  color: var(--fg-soft);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  margin: 0;
}

.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.ab-team-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.ab-team-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--border) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.ab-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.ab-team-card:hover .ab-team-photo img { transform: scale(1.03); }
.ab-team-meta { display: flex; flex-direction: column; gap: 4px; }
.ab-team-name {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.ab-team-role {
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin: 0;
}
.ab-team-bio {
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 0;
}

.ab-team-hiring {
  background: var(--accent);
  color: var(--accent-ink, #0E0E10);
  padding: 28px;
  border: 1px solid var(--accent);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}
.ab-team-hiring:hover { transform: translateY(-2px); }
.ab-team-hiring-inner { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.ab-team-hiring-kicker {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ab-team-hiring-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.ab-team-hiring-body {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.ab-team-hiring-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: auto;
}

@media (max-width: 1100px) { .ab-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .ab-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .ab-team-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.ab-stats {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.ab-stats-head { margin-bottom: 48px; }
.ab-stats-h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ab-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 28px;
  background: var(--bg);
}
.ab-stat-k {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.ab-stat-l {
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.ab-stat-s {
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 820px) { .ab-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ab-stats-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Studio
   -------------------------------------------------------------------------- */
.ab-studio {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}
.ab-studio-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.ab-studio-h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.ab-studio-lede {
  color: var(--fg-soft);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  margin: 0;
}

.ab-studio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
.ab-studio-photo { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ab-studio-photo-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(214,255,61,0.12), transparent 60%),
    linear-gradient(215deg, var(--bg-2), var(--border));
  position: relative;
}
.ab-studio-photo-1 .ab-studio-photo-frame { aspect-ratio: 3 / 4; }
.ab-studio-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ab-studio-photo figcaption {
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
}
@media (max-width: 820px) {
  .ab-studio-grid { grid-template-columns: 1fr 1fr; }
  .ab-studio-photo-1 { grid-column: 1 / -1; }
}

.ab-studio-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.ab-studio-meta > div {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.ab-studio-meta > div:last-child { border-right: none; }
.ab-studio-k {
  display: block;
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ab-studio-v {
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--fg);
}
.ab-studio-hours { color: var(--fg-muted); font-size: 11px; }

.ab-studio-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-studio-list li {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.4;
}
.ab-studio-list li span.mono {
  display: inline-block;
  min-width: 68px;
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 8px;
}

.ab-studio-map {
  position: relative;
  min-height: 180px;
  background:
    radial-gradient(circle at 60% 40%, rgba(214,255,61,0.14), transparent 50%),
    repeating-linear-gradient(0deg, var(--bg-2) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, var(--bg-2) 0 1px, transparent 1px 28px),
    var(--bg);
}
.ab-studio-map-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  padding: 16px;
}
.ab-studio-map-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  font-size: 12px;
}
.ab-studio-map-pin::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214,255,61,0.25);
}
.ab-studio-map-grid { color: var(--fg-muted); font-size: 10px; letter-spacing: 0.06em; }

@media (max-width: 820px) {
  .ab-studio-meta { grid-template-columns: 1fr; }
  .ab-studio-meta > div { border-right: none; border-bottom: 1px solid var(--border); }
  .ab-studio-meta > div:last-child { border-bottom: none; }
}

.ab-studio-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ab-studio-cta-note {
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Clients
   -------------------------------------------------------------------------- */
.ab-clients {
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}
.ab-clients-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.ab-clients-h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.ab-clients-lede {
  color: var(--fg-soft);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  margin: 0;
}
.ab-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.ab-client {
  background: var(--bg);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  min-height: 90px;
}
.ab-client:hover { background: var(--bg-2); }
.ab-client-name {
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.ab-clients-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ab-clients-foot .mono {
  color: var(--fg-muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ab-client-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(214,255,61,0.18);
  animation: ab-pulse 2.4s ease-in-out infinite;
}
@keyframes ab-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(214,255,61,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(214,255,61,0.04); }
}
@media (max-width: 820px) { .ab-clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .ab-clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   FAQ — shares wd-faq-* from other pages; only light overrides here.
   -------------------------------------------------------------------------- */
.ab-faq { padding: clamp(72px, 10vw, 140px) 0; }

/* ============= MOBILE FIXES — additional (≤760px) ============= */
@media (max-width: 760px) {
  .ab-stats-grid,
  .ab-values-grid { grid-template-columns: 1fr !important; }
  .ab-hero-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .ab-story-grid { grid-template-columns: 1fr !important; }
  .ab-team-teaser-grid { grid-template-columns: 1fr !important; }
}
